pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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.project</groupId>
  12. <artifactId>tieta</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <name>4dkankan-project-tieta</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>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-web</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-validation</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.yomahub</groupId>
  73. <artifactId>tlog-web-spring-boot-starter</artifactId>
  74. <version>1.3.6</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.yomahub</groupId>
  78. <artifactId>tlog-feign-spring-boot-starter</artifactId>
  79. <version>1.3.6</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.oracle</groupId>
  83. <artifactId>ojdbc6</artifactId>
  84. <version>11.2.0.3</version>
  85. </dependency>
  86. <!--mybatis-plus整合依赖-->
  87. <dependency>
  88. <groupId>com.baomidou</groupId>
  89. <artifactId>mybatis-plus-boot-starter</artifactId>
  90. <version>3.4.3.4</version>
  91. </dependency>
  92. <!-- mybatis-plus逆向工程依赖 -->
  93. <dependency>
  94. <groupId>com.baomidou</groupId>
  95. <artifactId>mybatis-plus-generator</artifactId>
  96. <version>3.5.1</version>
  97. </dependency>
  98. <!-- freemarker 说明:mybatis-plus逆向工程需要freemarker模板引擎 -->
  99. <dependency>
  100. <groupId>org.freemarker</groupId>
  101. <artifactId>freemarker</artifactId>
  102. </dependency>
  103. <!--velocity模板-->
  104. <dependency>
  105. <groupId>org.apache.velocity</groupId>
  106. <artifactId>velocity-engine-core</artifactId>
  107. <version>2.3</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-starter-amqp</artifactId>
  112. <version>2.3.12.RELEASE</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-data-redis</artifactId>
  117. <version>2.3.12.RELEASE</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.commons</groupId>
  121. <artifactId>commons-lang3</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.commons</groupId>
  125. <artifactId>commons-pool2</artifactId>
  126. </dependency>
  127. </dependencies>
  128. <build>
  129. <!-- <finalName>${artifactId}</finalName>-->
  130. <!-- <plugins>-->
  131. <!-- <plugin>-->
  132. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  133. <!-- <artifactId>maven-shade-plugin</artifactId>-->
  134. <!-- <version>2.4.1</version>-->
  135. <!-- <executions>-->
  136. <!-- <execution>-->
  137. <!-- <phase>package</phase>-->
  138. <!-- <goals>-->
  139. <!-- <goal>shade</goal>-->
  140. <!-- </goals>-->
  141. <!-- <configuration>-->
  142. <!-- <transformers>-->
  143. <!-- <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">-->
  144. <!-- <mainClass>utils.com.fdkankan.project.tieta.CutImgUtil</mainClass>-->
  145. <!-- </transformer>-->
  146. <!-- </transformers>-->
  147. <!-- </configuration>-->
  148. <!-- </execution>-->
  149. <!-- </executions>-->
  150. <!-- </plugin>-->
  151. <!-- <plugin>-->
  152. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  153. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  154. <!-- <configuration>-->
  155. <!-- <source>8</source>-->
  156. <!-- <target>8</target>-->
  157. <!-- </configuration>-->
  158. <!-- </plugin>-->
  159. <!-- </plugins>-->
  160. <finalName>scene-push</finalName>
  161. <plugins>
  162. <plugin>
  163. <groupId>org.springframework.boot</groupId>
  164. <artifactId>spring-boot-maven-plugin</artifactId>
  165. </plugin>
  166. <plugin>
  167. <groupId>org.apache.maven.plugins</groupId>
  168. <artifactId>maven-surefire-plugin</artifactId>
  169. <configuration>
  170. <testFailureIgnore>true</testFailureIgnore>
  171. </configuration>
  172. </plugin>
  173. <plugin>
  174. <groupId>org.apache.maven.plugins</groupId>
  175. <artifactId>maven-compiler-plugin</artifactId>
  176. <configuration>
  177. <source>8</source>
  178. <target>8</target>
  179. </configuration>
  180. </plugin>
  181. </plugins>
  182. </build>
  183. <distributionManagement>
  184. <repository>
  185. <id>releases</id>
  186. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  187. </repository>
  188. <snapshotRepository>
  189. <id>snapshots</id>
  190. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  191. </snapshotRepository>
  192. </distributionManagement>
  193. </project>