pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.12.RELEASE</version>
  9. <relativePath/>
  10. </parent>
  11. <groupId>com.fdkankan.model</groupId>
  12. <artifactId>4dkankan-utils-model-demo</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <name>4dkankan-utils-model-demo</name>
  15. <!-- FIXME change it to the project's website -->
  16. <url>http://www.example.com</url>
  17. <repositories>
  18. <repository>
  19. <id>releases</id>
  20. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  21. </repository>
  22. <repository>
  23. <id>snapshots</id>
  24. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  25. </repository>
  26. <repository>
  27. <id>nexus-aliyun</id>
  28. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  29. </repository>
  30. </repositories>
  31. <properties>
  32. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  33. <maven.compiler.source>1.8</maven.compiler.source>
  34. <maven.compiler.target>1.8</maven.compiler.target>
  35. </properties>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.slf4j</groupId>
  39. <artifactId>slf4j-api</artifactId>
  40. <version>1.7.30</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.projectlombok</groupId>
  44. <artifactId>lombok</artifactId>
  45. <version>1.18.20</version>
  46. <scope>provided</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.google.protobuf</groupId>
  50. <artifactId>protobuf-java</artifactId>
  51. <version>3.2.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>fastjson</artifactId>
  56. <version>1.2.83</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>cn.hutool</groupId>
  60. <artifactId>hutool-all</artifactId>
  61. <version>5.7.17</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.fdkankan</groupId>
  65. <artifactId>4dkankan-utils-rabbitmq</artifactId>
  66. <version>3.0.0-SNAPSHOT</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-web</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-validation</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.yomahub</groupId>
  78. <artifactId>tlog-web-spring-boot-starter</artifactId>
  79. <version>1.3.6</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.yomahub</groupId>
  83. <artifactId>tlog-feign-spring-boot-starter</artifactId>
  84. <version>1.3.6</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.oracle</groupId>
  88. <artifactId>ojdbc6</artifactId>
  89. <version>11.2.0.3</version>
  90. </dependency>
  91. <!--mybatis-plus整合依赖-->
  92. <dependency>
  93. <groupId>com.baomidou</groupId>
  94. <artifactId>mybatis-plus-boot-starter</artifactId>
  95. <version>3.0.5</version>
  96. </dependency>
  97. <!-- mybatis-plus逆向工程依赖 -->
  98. <dependency>
  99. <groupId>com.baomidou</groupId>
  100. <artifactId>mybatis-plus-generator</artifactId>
  101. <version>3.2.0</version>
  102. </dependency>
  103. <!-- freemarker 说明:mybatis-plus逆向工程需要freemarker模板引擎 -->
  104. <dependency>
  105. <groupId>org.freemarker</groupId>
  106. <artifactId>freemarker</artifactId>
  107. </dependency>
  108. </dependencies>
  109. <build>
  110. <!-- <finalName>${artifactId}</finalName>-->
  111. <!-- <plugins>-->
  112. <!-- <plugin>-->
  113. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  114. <!-- <artifactId>maven-shade-plugin</artifactId>-->
  115. <!-- <version>2.4.1</version>-->
  116. <!-- <executions>-->
  117. <!-- <execution>-->
  118. <!-- <phase>package</phase>-->
  119. <!-- <goals>-->
  120. <!-- <goal>shade</goal>-->
  121. <!-- </goals>-->
  122. <!-- <configuration>-->
  123. <!-- <transformers>-->
  124. <!-- <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">-->
  125. <!-- <mainClass>com.fdkankan.modeldemo.utils.CutImgUtil</mainClass>-->
  126. <!-- </transformer>-->
  127. <!-- </transformers>-->
  128. <!-- </configuration>-->
  129. <!-- </execution>-->
  130. <!-- </executions>-->
  131. <!-- </plugin>-->
  132. <!-- <plugin>-->
  133. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  134. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  135. <!-- <configuration>-->
  136. <!-- <source>8</source>-->
  137. <!-- <target>8</target>-->
  138. <!-- </configuration>-->
  139. <!-- </plugin>-->
  140. <!-- </plugins>-->
  141. <finalName>4dkankan-center-convert</finalName>
  142. <plugins>
  143. <plugin>
  144. <groupId>org.springframework.boot</groupId>
  145. <artifactId>spring-boot-maven-plugin</artifactId>
  146. </plugin>
  147. <plugin>
  148. <groupId>org.apache.maven.plugins</groupId>
  149. <artifactId>maven-surefire-plugin</artifactId>
  150. <configuration>
  151. <testFailureIgnore>true</testFailureIgnore>
  152. </configuration>
  153. </plugin>
  154. <plugin>
  155. <groupId>org.apache.maven.plugins</groupId>
  156. <artifactId>maven-compiler-plugin</artifactId>
  157. <configuration>
  158. <source>8</source>
  159. <target>8</target>
  160. </configuration>
  161. </plugin>
  162. </plugins>
  163. </build>
  164. <distributionManagement>
  165. <repository>
  166. <id>releases</id>
  167. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  168. </repository>
  169. <snapshotRepository>
  170. <id>snapshots</id>
  171. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  172. </snapshotRepository>
  173. </distributionManagement>
  174. </project>