pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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. <packaging>jar</packaging>
  6. <parent>
  7. <artifactId>4dkankan-parent</artifactId>
  8. <groupId>com.fdkankan</groupId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>4dkankan-pom</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.hutool</groupId>
  16. <artifactId>hutool-all</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.alibaba.cloud</groupId>
  20. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.cloud</groupId>
  24. <artifactId>spring-cloud-starter-openfeign</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-redis</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <!-- <dependency>-->
  35. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  36. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  37. <!-- </dependency>-->
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-boot-starter</artifactId>
  41. <version>3.4.3.4</version>
  42. </dependency>
  43. <!--mybatis-plus代码生成器-->
  44. <dependency>
  45. <groupId>com.baomidou</groupId>
  46. <artifactId>mybatis-plus-generator</artifactId>
  47. <version>3.5.1</version>
  48. </dependency>
  49. <!--velocity模板-->
  50. <dependency>
  51. <groupId>org.apache.velocity</groupId>
  52. <artifactId>velocity-engine-core</artifactId>
  53. <version>2.3</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>mysql</groupId>
  57. <artifactId>mysql-connector-java</artifactId>
  58. <scope>runtime</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-test</artifactId>
  63. <scope>test</scope>
  64. <exclusions>
  65. <exclusion>
  66. <groupId>org.junit.vintage</groupId>
  67. <artifactId>junit-vintage-engine</artifactId>
  68. </exclusion>
  69. <exclusion>
  70. <groupId>junit</groupId>
  71. <artifactId>junit</artifactId>
  72. </exclusion>
  73. </exclusions>
  74. </dependency>
  75. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  76. <dependency>
  77. <groupId>com.alibaba</groupId>
  78. <artifactId>fastjson</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.httpcomponents</groupId>
  82. <artifactId>httpclient</artifactId>
  83. </dependency>
  84. <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
  85. <dependency>
  86. <groupId>com.alibaba</groupId>
  87. <artifactId>druid</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.plugin</groupId>
  91. <artifactId>spring-plugin-core</artifactId>
  92. <version>1.2.0.RELEASE</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.plugin</groupId>
  96. <artifactId>spring-plugin-metadata</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-starter-aop</artifactId>
  101. </dependency>
  102. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  103. <dependency>
  104. <groupId>org.projectlombok</groupId>
  105. <artifactId>lombok</artifactId>
  106. <scope>provided</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.auth0</groupId>
  110. <artifactId>java-jwt</artifactId>
  111. </dependency>
  112. </dependencies>
  113. <distributionManagement>
  114. <repository>
  115. <!-- 这里的ID要和setting的id一致 -->
  116. <id>releases</id>
  117. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  118. </repository>
  119. <!--这是打成快照版本的配置 -->
  120. <snapshotRepository>
  121. <id>snapshots</id>
  122. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  123. </snapshotRepository>
  124. </distributionManagement>
  125. <build>
  126. <plugins>
  127. <!-- <plugin>-->
  128. <!-- <groupId>org.springframework.boot</groupId>-->
  129. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  130. <!-- </plugin>-->
  131. <!-- &lt;!&ndash; maven 打包时跳过测试 &ndash;&gt;-->
  132. <!-- <plugin>-->
  133. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  134. <!-- <artifactId>maven-surefire-plugin</artifactId>-->
  135. <!-- <configuration>-->
  136. <!-- <skip>true</skip>-->
  137. <!-- </configuration>-->
  138. <!-- </plugin>-->
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-compiler-plugin</artifactId>
  142. </plugin>
  143. </plugins>
  144. </build>
  145. </project>