pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-starter-parent</artifactId>
  7. <version>1.4.1.RELEASE</version>
  8. </parent>
  9. <groupId>com.uas.report</groupId>
  10. <artifactId>report-parent</artifactId>
  11. <packaging>pom</packaging>
  12. <version>0.0.1</version>
  13. <modules>
  14. <module>report</module>
  15. <module>report-common</module>
  16. </modules>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.version>0.0.1</project.version>
  20. <report.common.version>${project.version}</report.common.version>
  21. </properties>
  22. <distributionManagement>
  23. <!-- 发布release仓库 -->
  24. <repository>
  25. <id>platform-release</id>
  26. <name>platform-release</name>
  27. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  28. </repository>
  29. <!-- 发布快照版本 -->
  30. <snapshotRepository>
  31. <id>platform-snapshots</id>
  32. <name>platform-snapshots</name>
  33. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  34. </snapshotRepository>
  35. </distributionManagement>
  36. </project>