pom.xml 6.2 KB

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