pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. <parent>
  6. <artifactId>platform</artifactId>
  7. <groupId>com.zcxk</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>zoniot-rmcp</artifactId>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>zoniot-rmcp-api</module>
  15. <module>zoniot-rmcp-core</module>
  16. <module>zoniot-rmcp-web</module>
  17. <module>zoniot-xxljob-client</module>
  18. <module>zoniot-rmcp-sync</module>
  19. </modules>
  20. <properties>
  21. <zoniot.version>1.0-SNAPSHOT</zoniot.version>
  22. </properties>
  23. <dependencyManagement>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.zcxk</groupId>
  27. <artifactId>zoniot-rmcp-api</artifactId>
  28. <version>${zoniot.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.zcxk</groupId>
  32. <artifactId>zoniot-rmcp-core</artifactId>
  33. <version>${zoniot.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.zcxk</groupId>
  37. <artifactId>zoniot-rmcp-sync</artifactId>
  38. <version>${zoniot.version}</version>
  39. </dependency>
  40. </dependencies>
  41. </dependencyManagement>
  42. <dependencies>
  43. <dependency>
  44. <groupId>com.zcxk</groupId>
  45. <artifactId>zoniot-core-common</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.zcxk</groupId>
  49. <artifactId>zoniot-core-utils</artifactId>
  50. </dependency>
  51. </dependencies>
  52. </project>