pom.xml 1.0 KB

12345678910111213141516171819202122232425262728293031
  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>toflyframwork</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>base-api</artifactId>
  12. <packaging>jar</packaging>
  13. <groupId>com.tofly</groupId>
  14. <version>1.0.0</version>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.tofly</groupId>
  18. <artifactId>common-core</artifactId>
  19. <version>1.0.0</version>
  20. </dependency>
  21. </dependencies>
  22. <distributionManagement>
  23. <repository>
  24. <id>nexus-releases</id>
  25. <name>Nexus Release Repository</name>
  26. <url>http://192.168.2.231:8081/nexus/content/repositories/thirdparty</url>
  27. </repository>
  28. </distributionManagement>
  29. </project>