pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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-common</module>
  15. <module>report</module>
  16. <module>crystal2jasper</module>
  17. <module>crystal-replace-view</module>
  18. </modules>
  19. <properties>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <maven.compiler.source>1.7</maven.compiler.source>
  22. <maven.compiler.target>1.7</maven.compiler.target>
  23. <maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
  24. <project.version>0.0.1</project.version>
  25. <report.common.version>${project.version}</report.common.version>
  26. <fastjson.version>1.2.15</fastjson.version>
  27. </properties>
  28. <dependencyManagement>
  29. <dependencies>
  30. <dependency>
  31. <groupId>com.alibaba</groupId>
  32. <artifactId>fastjson</artifactId>
  33. <version>${fastjson.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.uas.report</groupId>
  37. <artifactId>report-common</artifactId>
  38. <version>${report.common.version}</version>
  39. </dependency>
  40. </dependencies>
  41. </dependencyManagement>
  42. <distributionManagement>
  43. <!-- 发布release仓库 -->
  44. <repository>
  45. <id>platform-release</id>
  46. <name>platform-release</name>
  47. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  48. </repository>
  49. <!-- 发布快照版本 -->
  50. <snapshotRepository>
  51. <id>platform-snapshots</id>
  52. <name>platform-snapshots</name>
  53. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  54. </snapshotRepository>
  55. </distributionManagement>
  56. </project>