pom.xml 1020 B

12345678910111213141516171819202122232425262728293031323334
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.platomix</groupId>
  5. <artifactId>platomix-pom</artifactId>
  6. <version>1.1.3</version>
  7. </parent>
  8. <artifactId>platomix-gmetry-system</artifactId>
  9. <version>1.0.0</version>
  10. <packaging>pom</packaging>
  11. <modules>
  12. <module>platomix-gmetry-system-api</module>
  13. <module>platomix-gmetry-system-client</module>
  14. </modules>
  15. <repositories>
  16. <repository>
  17. <id>alimaven</id>
  18. <name>aliyun maven</name>
  19. <url>https://maven.aliyun.com/repository/public/</url>
  20. <snapshots>
  21. <enabled>false</enabled>
  22. </snapshots>
  23. </repository>
  24. <repository>
  25. <id>platomix-release</id>
  26. <name>NexusReleases</name>
  27. <url>https://windata.platomix.net/nexus/repository/maven-public/</url>
  28. </repository>
  29. </repositories>
  30. </project>