pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. <report.common.version>0.0.1</report.common.version>
  21. </properties>
  22. <dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.uas.report</groupId>
  26. <artifactId>report-common</artifactId>
  27. <version>${report.common.version}</version>
  28. </dependency>
  29. </dependencies>
  30. </dependencyManagement>
  31. <build>
  32. <pluginManagement>
  33. <plugins>
  34. <plugin>
  35. <groupId>org.apache.maven.plugins</groupId>
  36. <artifactId>maven-compiler-plugin</artifactId>
  37. <configuration>
  38. <source>1.7</source>
  39. <target>1.7</target>
  40. </configuration>
  41. </plugin>
  42. </plugins>
  43. </pluginManagement>
  44. </build>
  45. <distributionManagement>
  46. <!-- 发布release仓库 -->
  47. <repository>
  48. <id>platform-release</id>
  49. <name>platform-release</name>
  50. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  51. </repository>
  52. <!-- 发布快照版本 -->
  53. <snapshotRepository>
  54. <id>platform-snapshots</id>
  55. <name>platform-snapshots</name>
  56. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  57. </snapshotRepository>
  58. </distributionManagement>
  59. </project>