pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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>InControl</artifactId>
  21. <groupId>com.rongwei</groupId>
  22. <version>1.1-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. </dependencies>
  53. <repositories>
  54. <repository>
  55. <id>oss</id>
  56. <name>oss</name>
  57. <url>https://oss.sonatype.org/content/groups/public</url>
  58. </repository>
  59. <repository>
  60. <id>spring-milestones</id>
  61. <name>Spring Milestones</name>
  62. <url>https://repo.spring.io/libs-milestone</url>
  63. <snapshots>
  64. <enabled>false</enabled>
  65. </snapshots>
  66. </repository>
  67. <repository>
  68. <id>sonatype-nexus-snapshots</id>
  69. <name>Sonatype Nexus Snapshots</name>
  70. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  71. </repository>
  72. </repositories>
  73. <!--依赖管理,用于管理spring-cloud的依赖,其中Camden.SR3是版本号-->
  74. <dependencyManagement>
  75. <dependencies>
  76. <dependency>
  77. <groupId>org.springframework.cloud</groupId>
  78. <artifactId>spring-cloud-dependencies</artifactId>
  79. <version>Greenwich.RELEASE</version>
  80. <type>pom</type>
  81. <scope>import</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.alibaba</groupId>
  85. <artifactId>fastjson</artifactId>
  86. <version>1.2.33</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.cloud</groupId>
  90. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  91. <version>0.2.1.RELEASE</version>
  92. <type>pom</type>
  93. <scope>import</scope>
  94. </dependency>
  95. </dependencies>
  96. </dependencyManagement>
  97. <distributionManagement>
  98. <snapshotRepository>
  99. <id>ossrh</id>
  100. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  101. </snapshotRepository>
  102. <repository>
  103. <id>ossrh</id>
  104. <name>Maven Central Staging Repository</name>
  105. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  106. </repository>
  107. </distributionManagement>
  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. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-compiler-plugin</artifactId>
  118. <version>${maven-compiler-plugin.version}</version>
  119. <configuration>
  120. <source>${maven.compile.source}</source>
  121. <target>${maven.compile.target}</target>
  122. <encoding>${project.build.sourceEncoding}</encoding>
  123. </configuration>
  124. </plugin>
  125. <plugin>
  126. <groupId>org.apache.maven.plugins</groupId>
  127. <artifactId>maven-source-plugin</artifactId>
  128. <version>2.4</version>
  129. <executions>
  130. <execution>
  131. <id>attach-sources</id>
  132. <goals>
  133. <goal>jar-no-fork</goal>
  134. </goals>
  135. </execution>
  136. </executions>
  137. </plugin>
  138. <plugin>
  139. <groupId>org.apache.maven.plugins</groupId>
  140. <artifactId>maven-deploy-plugin</artifactId>
  141. <version>2.8.2</version>
  142. </plugin>
  143. <!--<plugin>-->
  144. <!--<groupId>org.apache.maven.plugins</groupId>-->
  145. <!--<artifactId>maven-javadoc-plugin</artifactId>-->
  146. <!--<version>2.10.3</version>-->
  147. <!--<executions>-->
  148. <!--<execution>-->
  149. <!--<id>attach-javadocs</id>-->
  150. <!--<goals>-->
  151. <!--<goal>jar</goal>-->
  152. <!--</goals>-->
  153. <!--</execution>-->
  154. <!--</executions>-->
  155. <!--</plugin>-->
  156. </plugins>
  157. </build>
  158. </project>