pom.xml 1.0 KB

1234567891011121314151617181920212223242526272829
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.aivfo</groupId>
  7. <artifactId>aivfo-framework</artifactId>
  8. <version>stable</version>
  9. <packaging>pom</packaging>
  10. <modules>
  11. <module>ability</module>
  12. <module>band</module>
  13. <module>module</module>
  14. </modules>
  15. <distributionManagement>
  16. <repository>
  17. <id>nexus</id>
  18. <name>releases</name>
  19. <url>http://maven.aivfo.com:36000/repository/maven-releases/</url>
  20. </repository>
  21. <snapshotRepository>
  22. <id>nexus</id>
  23. <name>snapshots</name>
  24. <url>http://maven.aivfo.com:36000/repository/maven-snapshots/</url>
  25. </snapshotRepository>
  26. </distributionManagement>
  27. </project>