.flattened-pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.rongwei</groupId>
  7. <artifactId>InControl</artifactId>
  8. <version>1.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.rongwei</groupId>
  11. <artifactId>cx-file</artifactId>
  12. <version>1.0-SNAPSHOT</version>
  13. <packaging>pom</packaging>
  14. <licenses>
  15. <license>
  16. <name>Apache License, Version 2.0</name>
  17. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  18. </license>
  19. </licenses>
  20. <modules>
  21. <module>cx-file-server</module>
  22. <module>cx-file-common</module>
  23. <module>cx-file-entity</module>
  24. </modules>
  25. <distributionManagement>
  26. <repository>
  27. <id>ossrh</id>
  28. <name>Maven Central Staging Repository</name>
  29. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  30. </repository>
  31. <snapshotRepository>
  32. <id>ossrh</id>
  33. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  34. </snapshotRepository>
  35. </distributionManagement>
  36. <properties>
  37. <mapper.version>3.4.0</mapper.version>
  38. <maven.compile.source>1.8</maven.compile.source>
  39. <maven.compile.target>1.8</maven.compile.target>
  40. <fastjson.version>1.2.31</fastjson.version>
  41. </properties>
  42. <dependencyManagement>
  43. <dependencies>
  44. <dependency>
  45. <groupId>org.springframework.cloud</groupId>
  46. <artifactId>spring-cloud-dependencies</artifactId>
  47. <version>Greenwich.RELEASE</version>
  48. <type>pom</type>
  49. <scope>import</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>fastjson</artifactId>
  54. <version>1.2.33</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.cloud</groupId>
  58. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  59. <version>0.2.1.RELEASE</version>
  60. <type>pom</type>
  61. <scope>import</scope>
  62. </dependency>
  63. </dependencies>
  64. </dependencyManagement>
  65. <dependencies>
  66. <dependency>
  67. <groupId>org.projectlombok</groupId>
  68. <artifactId>lombok</artifactId>
  69. <version>1.16.14</version>
  70. <scope>provided</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.alibaba</groupId>
  74. <artifactId>fastjson</artifactId>
  75. <version>${fastjson.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.aspose.words</groupId>
  79. <artifactId>aspose-words</artifactId>
  80. <version>21.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.rongwei</groupId>
  84. <artifactId>bs-common</artifactId>
  85. <version>1.0-SNAPSHOT</version>
  86. </dependency>
  87. </dependencies>
  88. <repositories>
  89. <repository>
  90. <id>oss</id>
  91. <name>oss</name>
  92. <url>https://oss.sonatype.org/content/groups/public</url>
  93. </repository>
  94. <repository>
  95. <snapshots>
  96. <enabled>false</enabled>
  97. </snapshots>
  98. <id>spring-milestones</id>
  99. <name>Spring Milestones</name>
  100. <url>https://repo.spring.io/libs-milestone</url>
  101. </repository>
  102. <repository>
  103. <id>sonatype-nexus-snapshots</id>
  104. <name>Sonatype Nexus Snapshots</name>
  105. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  106. </repository>
  107. </repositories>
  108. <build>
  109. <plugins>
  110. <plugin>
  111. <groupId>org.codehaus.mojo</groupId>
  112. <artifactId>versions-maven-plugin</artifactId>
  113. <version>2.7</version>
  114. </plugin>
  115. <plugin>
  116. <artifactId>maven-compiler-plugin</artifactId>
  117. <version>${maven-compiler-plugin.version}</version>
  118. <configuration>
  119. <source>${maven.compile.source}</source>
  120. <target>${maven.compile.target}</target>
  121. <encoding>${project.build.sourceEncoding}</encoding>
  122. </configuration>
  123. </plugin>
  124. <plugin>
  125. <artifactId>maven-source-plugin</artifactId>
  126. <version>2.4</version>
  127. <executions>
  128. <execution>
  129. <id>attach-sources</id>
  130. <goals>
  131. <goal>jar-no-fork</goal>
  132. </goals>
  133. </execution>
  134. </executions>
  135. </plugin>
  136. <plugin>
  137. <artifactId>maven-deploy-plugin</artifactId>
  138. <version>2.8.2</version>
  139. </plugin>
  140. </plugins>
  141. </build>
  142. </project>