pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.jiayue.focus</groupId>
  6. <artifactId>ipfcst-common-bom</artifactId>
  7. <packaging>pom</packaging>
  8. <version>3.0</version>
  9. <description>ipfcst 公共版本控制</description>
  10. <dependencyManagement>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.jiayue.focus</groupId>
  14. <artifactId>ipfcst-common-core</artifactId>
  15. <version>${project.version}</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.jiayue.focus</groupId>
  19. <artifactId>ipfcst-common-data</artifactId>
  20. <version>${project.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.jiayue.focus</groupId>
  24. <artifactId>ipfcst-common-security</artifactId>
  25. <version>${project.version}</version>
  26. </dependency>
  27. </dependencies>
  28. </dependencyManagement>
  29. <!--上传配置 必须 -->
  30. <distributionManagement>
  31. <repository>
  32. <id>jiayue-releases</id>
  33. <url>http://49.4.68.219:8888/nexus/content/repositories/jiayue-releases</url>
  34. </repository>
  35. <snapshotRepository>
  36. <id>jiayue-snapshots</id>
  37. <url>http://49.4.68.219:8888/nexus/content/repositories/jiayue-snapshots</url>
  38. </snapshotRepository>
  39. </distributionManagement>
  40. </project>