pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>cn.itlym.platform</groupId>
  8. <artifactId>shoulder-platform-parent</artifactId>
  9. <version>1.0-SNAPSHOT</version><!-- shoulder-platform-version -->
  10. <relativePath>../../shoulder-platform-common/shoulder-platform-parent/pom.xml</relativePath>
  11. </parent>
  12. <groupId>cn.itlym.platform.notify</groupId>
  13. <artifactId>shoulder-sms</artifactId>
  14. <packaging>pom</packaging>
  15. <version>1.0-SNAPSHOT</version>
  16. <modules>
  17. <module>sms-center</module>
  18. <module>shoulder-sms-client</module>
  19. <module>sms-api</module>
  20. </modules>
  21. <dependencyManagement>
  22. <dependencies>
  23. <dependency>
  24. <groupId>cn.itlym.platform.notify</groupId>
  25. <artifactId>sms-api</artifactId>
  26. <version>${shoulder-platform.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>cn.itlym.platform.notify</groupId>
  30. <artifactId>sms-center</artifactId>
  31. <version>${shoulder-platform.version}</version>
  32. </dependency>
  33. <!-- sdk -->
  34. <dependency>
  35. <groupId>cn.itlym.platform.notify</groupId>
  36. <artifactId>shoulder-sms-client</artifactId>
  37. <version>${shoulder-platform.version}</version>
  38. </dependency>
  39. </dependencies>
  40. </dependencyManagement>
  41. </project>