/protocols/smpp/pom.xml

http://mobicents.googlecode.com/ · XML · 362 lines · 336 code · 26 blank · 0 comment · 0 complexity · d90ff01fc1131c6d7be2c920b5d8bf15 MD5 · raw file

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.mobicents</groupId>
  5. <artifactId>mobicents-parent</artifactId>
  6. <version>2.20-SNAPSHOT</version>
  7. </parent>
  8. <groupId>org.mobicents.protocols.smpp</groupId>
  9. <artifactId>smpp-impl</artifactId>
  10. <packaging>jar</packaging>
  11. <version>1.1.2-SNAPSHOT</version>
  12. <name>smppapi</name>
  13. <description>Java Implementation of the Short Message Peer to Peer API. Extension of SMPP API Project</description>
  14. <url>http://www.mobicents.org/</url>
  15. <organization>
  16. <name>Mobicents</name>
  17. <url>http://mobicents.org</url>
  18. </organization>
  19. <scm>
  20. <connection>
  21. scm:svn:https://mobicents.googlecode.com/svn/trunk/protocols/smpp/
  22. </connection>
  23. <developerConnection>
  24. scm:svn:https://mobicents.googlecode.com/svn/trunk/protocols/smpp/
  25. </developerConnection>
  26. <url>
  27. http://mobicents.googlecode.com/svn/trunk/protocols/smpp/
  28. </url>
  29. </scm>
  30. <issueManagement>
  31. <system>Google Code</system>
  32. <url>http://code.google.com/p/mobicents/issues/list</url>
  33. </issueManagement>
  34. <mailingLists>
  35. <mailingList>
  36. <name>mobicents-public</name>
  37. <archive>http://groups.google.com/group/mobicents-public/topics</archive>
  38. </mailingList>
  39. </mailingLists>
  40. <developers>
  41. <developer>
  42. <id>orank</id>
  43. <name>Oran Kelly</name>
  44. <email>https://sourceforge.net/sendmessage.php?touser=211584</email>
  45. <url>https://sourceforge.net/users/orank/</url>
  46. <timezone>Europe/Dublin</timezone>
  47. <roles>
  48. <role>admin</role>
  49. <role>developer</role>
  50. </roles>
  51. </developer>
  52. <developer>
  53. <id>amit.bhayani</id>
  54. <name>Amit Bhayani</name>
  55. <email>amit.bhayani@gmail.com</email>
  56. <organization>JBoss/Red Hat</organization>
  57. <organizationUrl>http://www.redhat.com/</organizationUrl>
  58. <roles>
  59. <role>developer</role>
  60. </roles>
  61. <timezone>+5.5</timezone>
  62. </developer>
  63. </developers>
  64. <properties>
  65. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  66. </properties>
  67. <build>
  68. <resources>
  69. <resource>
  70. <directory>src/main/resources</directory>
  71. <filtering>true</filtering>
  72. </resource>
  73. </resources>
  74. <plugins>
  75. <plugin>
  76. <artifactId>maven-compiler-plugin</artifactId>
  77. <version>2.0.2</version>
  78. <configuration>
  79. <source>1.5</source>
  80. <target>1.5</target>
  81. </configuration>
  82. </plugin>
  83. <plugin>
  84. <artifactId>maven-resources-plugin</artifactId>
  85. <version>2.3</version>
  86. </plugin>
  87. <plugin>
  88. <artifactId>maven-surefire-plugin</artifactId>
  89. <version>2.4.3</version>
  90. </plugin>
  91. <plugin>
  92. <artifactId>maven-surefire-report-plugin</artifactId>
  93. <version>2.4.3</version>
  94. </plugin>
  95. <plugin>
  96. <artifactId>maven-clean-plugin</artifactId>
  97. <version>2.3</version>
  98. </plugin>
  99. <plugin>
  100. <artifactId>maven-jar-plugin</artifactId>
  101. <version>2.2</version>
  102. <configuration>
  103. <archive>
  104. <manifest>
  105. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  106. </manifest>
  107. <manifestEntries>
  108. <Specification-Title>SMPP</Specification-Title>
  109. <Specification-Version>5.0</Specification-Version>
  110. <Specification-Vendor>http://www.smsforum.net/</Specification-Vendor>
  111. </manifestEntries>
  112. </archive>
  113. </configuration>
  114. </plugin>
  115. <plugin>
  116. <artifactId>maven-install-plugin</artifactId>
  117. <version>2.3</version>
  118. </plugin>
  119. <plugin>
  120. <artifactId>maven-dependency-plugin</artifactId>
  121. <version>2.1</version>
  122. </plugin>
  123. <plugin>
  124. <artifactId>maven-site-plugin</artifactId>
  125. <version>2.0</version>
  126. <configuration>
  127. <templateDirectory>src/site</templateDirectory>
  128. <template>smppapi-site.vm</template>
  129. </configuration>
  130. </plugin>
  131. <plugin>
  132. <artifactId>maven-project-info-reports-plugin</artifactId>
  133. <version>2.1.1</version>
  134. </plugin>
  135. <plugin>
  136. <artifactId>maven-eclipse-plugin</artifactId>
  137. <version>2.7</version>
  138. </plugin>
  139. <plugin>
  140. <artifactId>maven-antrun-plugin</artifactId>
  141. <version>1.3</version>
  142. </plugin>
  143. <plugin>
  144. <artifactId>maven-javadoc-plugin</artifactId>
  145. <version>2.5</version>
  146. <configuration>
  147. <links>
  148. <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
  149. </links>
  150. </configuration>
  151. </plugin>
  152. <plugin>
  153. <artifactId>maven-release-plugin</artifactId>
  154. <version>2.0-beta-9</version>
  155. <configuration>
  156. <releaseProfiles>release</releaseProfiles>
  157. </configuration>
  158. </plugin>
  159. <plugin>
  160. <artifactId>maven-assembly-plugin</artifactId>
  161. <version>2.2-beta-4</version>
  162. <configuration>
  163. <appendAssemblyId>false</appendAssemblyId>
  164. <descriptors>
  165. <descriptor>src/main/assembly/smppapi.xml</descriptor>
  166. </descriptors>
  167. </configuration>
  168. </plugin>
  169. <plugin>
  170. <artifactId>maven-eclipse-plugin</artifactId>
  171. <groupId>org.mobicents.tools</groupId>
  172. <inherited>false</inherited>
  173. <executions />
  174. <configuration>
  175. <classpathExcludes>
  176. <exclude>xml-apis:xml-apis</exclude>
  177. <exclude>jtidy:jtidy</exclude>
  178. </classpathExcludes>
  179. <resolveTransitiveDependencies>
  180. true
  181. </resolveTransitiveDependencies>
  182. <eclipseProjectName>
  183. mobicents-protocols-smpp
  184. </eclipseProjectName>
  185. </configuration>
  186. </plugin>
  187. </plugins>
  188. </build>
  189. <reporting>
  190. <plugins>
  191. <plugin>
  192. <artifactId>maven-checkstyle-plugin</artifactId>
  193. <version>2.2</version>
  194. <configuration>
  195. <configLocation>${basedir}/src/test/resources/checkstyle.xml</configLocation>
  196. </configuration>
  197. </plugin>
  198. <plugin>
  199. <artifactId>maven-surefire-report-plugin</artifactId>
  200. <version>2.4.3</version>
  201. </plugin>
  202. <plugin>
  203. <artifactId>maven-javadoc-plugin</artifactId>
  204. <version>2.5</version>
  205. </plugin>
  206. <plugin>
  207. <groupId>org.codehaus.mojo</groupId>
  208. <artifactId>cobertura-maven-plugin</artifactId>
  209. <version>2.2</version>
  210. <configuration>
  211. <instrumentation>
  212. <excludes>
  213. <exclude>com/pbm/**/*Exception.class</exclude>
  214. </excludes>
  215. </instrumentation>
  216. </configuration>
  217. </plugin>
  218. </plugins>
  219. </reporting>
  220. <dependencies>
  221. <dependency>
  222. <groupId>org.slf4j</groupId>
  223. <artifactId>slf4j-api</artifactId>
  224. <version>1.5.2</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.slf4j</groupId>
  228. <artifactId>slf4j-log4j12</artifactId>
  229. <version>1.5.2</version>
  230. <scope>test</scope>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.testng</groupId>
  234. <artifactId>testng</artifactId>
  235. <version>5.8</version>
  236. <classifier>jdk15</classifier>
  237. <scope>test</scope>
  238. </dependency>
  239. <dependency>
  240. <groupId>org.easymock</groupId>
  241. <artifactId>easymock</artifactId>
  242. <version>2.4</version>
  243. <scope>test</scope>
  244. </dependency>
  245. </dependencies>
  246. <profiles>
  247. <profile>
  248. <id>release</id>
  249. <activation>
  250. <activeByDefault>false</activeByDefault>
  251. </activation>
  252. <build>
  253. <plugins>
  254. <plugin>
  255. <groupId>org.apache.maven.plugins</groupId>
  256. <artifactId>maven-release-plugin</artifactId>
  257. <version>2.0-beta-9</version>
  258. <configuration>
  259. <autoVersionSubmodules>
  260. true
  261. </autoVersionSubmodules>
  262. <remoteTagging>true</remoteTagging>
  263. <tagBase>
  264. https://mobicents.googlecode.com/svn/tags/protocols/smpp
  265. </tagBase>
  266. </configuration>
  267. </plugin>
  268. </plugins>
  269. </build>
  270. </profile>
  271. <profile>
  272. <id>maven-release</id>
  273. <build>
  274. <plugins>
  275. <plugin>
  276. <groupId>org.apache.maven.plugins</groupId>
  277. <artifactId>maven-release-plugin</artifactId>
  278. <version>2.0-beta-9</version>
  279. <configuration>
  280. <autoVersionSubmodules>
  281. true
  282. </autoVersionSubmodules>
  283. <remoteTagging>true</remoteTagging>
  284. <tagBase>
  285. https://mobicents.googlecode.com/svn/tags/protocols/smpp
  286. </tagBase>
  287. </configuration>
  288. </plugin>
  289. </plugins>
  290. </build>
  291. </profile>
  292. </profiles>
  293. <repositories>
  294. <repository>
  295. <id>maven</id>
  296. <name>Maven Repository</name>
  297. <url>http://repo1.maven.org/maven2</url>
  298. <snapshots>
  299. <enabled>false</enabled>
  300. </snapshots>
  301. </repository>
  302. <repository>
  303. <id>jboss</id>
  304. <name>JBoss Repository</name>
  305. <url>http://repository.jboss.org/maven2</url>
  306. <snapshots>
  307. <enabled>false</enabled>
  308. </snapshots>
  309. </repository>
  310. <repository>
  311. <id>jboss-snapshots</id>
  312. <name>JBoss Snapshot Repository</name>
  313. <url>http://snapshots.jboss.org/maven2</url>
  314. <releases>
  315. <enabled>false</enabled>
  316. </releases>
  317. <snapshots>
  318. <enabled>true</enabled>
  319. </snapshots>
  320. </repository>
  321. <repository>
  322. <id>jboss-public-repository-group</id>
  323. <name>JBoss Public Maven Repository Group</name>
  324. <url>https://repository.jboss.org/nexus/content/groups/public/</url>
  325. <layout>default</layout>
  326. <releases>
  327. <enabled>true</enabled>
  328. <updatePolicy>never</updatePolicy>
  329. </releases>
  330. <snapshots>
  331. <enabled>true</enabled>
  332. <updatePolicy>never</updatePolicy>
  333. </snapshots>
  334. </repository>
  335. </repositories>
  336. </project>