pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.fizzed</groupId>
  4. <artifactId>ch-smpp</artifactId>
  5. <packaging>jar</packaging>
  6. <version>5.0.10-SNAPSHOT</version>
  7. <name>ch-smpp</name>
  8. <description>Efficient, scalable, and flexible Java implementation of the Short Messaging Peer to Peer Protocol (SMPP)</description>
  9. <url>https://github.com/twitter/cloudhopper-smpp</url>
  10. <inceptionYear>2009</inceptionYear>
  11. <scm>
  12. <url>https://github.com/fizzed/cloudhopper-smpp</url>
  13. <connection>scm:git:https://github.com/fizzed/cloudhopper-smpp.git</connection>
  14. <developerConnection>scm:git:git@github.com:fizzed/cloudhopper-smpp.git</developerConnection>
  15. <tag>master</tag>
  16. </scm>
  17. <parent>
  18. <groupId>com.fizzed</groupId>
  19. <artifactId>fizzed-maven-parent</artifactId>
  20. <version>1.15</version>
  21. </parent>
  22. <properties>
  23. <main.java.package>com.cloudhopper.smpp</main.java.package>
  24. <ch-commons-util.version>6.0.2</ch-commons-util.version>
  25. <ch-commons-charset.version>3.0.2</ch-commons-charset.version>
  26. <ch-commons-gsm.version>3.0.0</ch-commons-gsm.version>
  27. <netty.version>3.9.6.Final</netty.version>
  28. <slf4j.version>1.7.13</slf4j.version>
  29. <!-- workaround travis ci maven version requirement -->
  30. <maven.enforce.version>3.2.5</maven.enforce.version>
  31. </properties>
  32. <dependencies>
  33. <!-- compile scope -->
  34. <dependency>
  35. <groupId>com.cloudhopper</groupId>
  36. <artifactId>ch-commons-util</artifactId>
  37. <version>${ch-commons-util.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.cloudhopper</groupId>
  41. <artifactId>ch-commons-charset</artifactId>
  42. <version>${ch-commons-charset.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.slf4j</groupId>
  46. <artifactId>slf4j-api</artifactId>
  47. <version>${slf4j.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>io.netty</groupId>
  51. <artifactId>netty</artifactId>
  52. <version>${netty.version}</version>
  53. </dependency>
  54. <!-- provided scope -->
  55. <!-- runtime scope -->
  56. <!-- testing scope -->
  57. <dependency>
  58. <groupId>junit</groupId>
  59. <artifactId>junit</artifactId>
  60. <version>4.12</version>
  61. <scope>test</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.cloudhopper</groupId>
  65. <artifactId>ch-commons-gsm</artifactId>
  66. <version>3.0.0</version>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>ch.qos.logback</groupId>
  71. <artifactId>logback-classic</artifactId>
  72. <version>1.1.3</version>
  73. <scope>test</scope>
  74. </dependency>
  75. </dependencies>
  76. </project>