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