pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <module>crystal2jasper</module>
  17. </modules>
  18. <properties>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.version>0.0.1</project.version>
  21. <report.common.version>${project.version}</report.common.version>
  22. </properties>
  23. <build>
  24. <pluginManagement>
  25. <plugins>
  26. <plugin>
  27. <groupId>org.apache.maven.plugins</groupId>
  28. <artifactId>maven-compiler-plugin</artifactId>
  29. <configuration>
  30. <source>1.7</source>
  31. <target>1.7</target>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </pluginManagement>
  36. </build>
  37. <distributionManagement>
  38. <!-- 发布release仓库 -->
  39. <repository>
  40. <id>platform-release</id>
  41. <name>platform-release</name>
  42. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  43. </repository>
  44. <!-- 发布快照版本 -->
  45. <snapshotRepository>
  46. <id>platform-snapshots</id>
  47. <name>platform-snapshots</name>
  48. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  49. </snapshotRepository>
  50. </distributionManagement>
  51. </project>