pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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-rmcp-sync</module>
  18. <module>zoniot-rmcp-dap</module>
  19. <module>zoniot-rmcp-alarm</module>
  20. <module>zoniot-xxljob-client</module>
  21. </modules>
  22. <properties>
  23. <zoniot.version>1.0-SNAPSHOT</zoniot.version>
  24. </properties>
  25. <dependencyManagement>
  26. <dependencies>
  27. <dependency>
  28. <groupId>com.zcxk</groupId>
  29. <artifactId>zoniot-rmcp-api</artifactId>
  30. <version>${zoniot.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.zcxk</groupId>
  34. <artifactId>zoniot-rmcp-core</artifactId>
  35. <version>${zoniot.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.zcxk</groupId>
  39. <artifactId>zoniot-rmcp-sync</artifactId>
  40. <version>${zoniot.version}</version>
  41. </dependency>
  42. </dependencies>
  43. </dependencyManagement>
  44. <dependencies>
  45. <dependency>
  46. <groupId>com.zcxk</groupId>
  47. <artifactId>zoniot-core-common</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.zcxk</groupId>
  51. <artifactId>zoniot-core-utils</artifactId>
  52. </dependency>
  53. </dependencies>
  54. </project>