pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.chelvc.framework</groupId>
  8. <artifactId>framework-dependencies</artifactId>
  9. <version>1.0.0-RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <artifactId>framework-jpush</artifactId>
  13. <version>1.0.0-RELEASE</version>
  14. <properties>
  15. <framework-base.version>1.0.0-RELEASE</framework-base.version>
  16. <jpush-client.version>3.5.2</jpush-client.version>
  17. <jmessage-client.version>1.1.7</jmessage-client.version>
  18. <jiguang-common.version>1.1.12</jiguang-common.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.chelvc.framework</groupId>
  23. <artifactId>framework-base</artifactId>
  24. <version>${framework-base.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.jpush.api</groupId>
  28. <artifactId>jpush-client</artifactId>
  29. <version>${jpush-client.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>cn.jpush.api</groupId>
  33. <artifactId>jmessage-client</artifactId>
  34. <version>${jmessage-client.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>cn.jpush.api</groupId>
  38. <artifactId>jiguang-common</artifactId>
  39. <version>${jiguang-common.version}</version>
  40. </dependency>
  41. </dependencies>
  42. </project>