pom.xml 2.7 KB

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