pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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.nexo</groupId>
  7. <artifactId>nexo-api-bom</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.8.2</version>
  10. <description>
  11. nexo-api-bom api依赖项
  12. </description>
  13. <dependencyManagement>
  14. <dependencies>
  15. <!-- 系统接口 -->
  16. <dependency>
  17. <groupId>com.nexo</groupId>
  18. <artifactId>nexo-api-system</artifactId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. <!-- 资源服务接口 -->
  22. <dependency>
  23. <groupId>com.nexo</groupId>
  24. <artifactId>nexo-api-resource</artifactId>
  25. <version>${project.version}</version>
  26. </dependency>
  27. </dependencies>
  28. </dependencyManagement>
  29. </project>