pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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.3.1.tmp</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.baomidou</groupId>
  45. <artifactId>mybatis-plus-generator</artifactId>
  46. <version>3.3.1.tmp</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.velocity</groupId>
  50. <artifactId>velocity-engine-core</artifactId>
  51. <version>2.2</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>mysql</groupId>
  55. <artifactId>mysql-connector-java</artifactId>
  56. <scope>runtime</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-test</artifactId>
  61. <scope>test</scope>
  62. <exclusions>
  63. <exclusion>
  64. <groupId>org.junit.vintage</groupId>
  65. <artifactId>junit-vintage-engine</artifactId>
  66. </exclusion>
  67. <exclusion>
  68. <groupId>junit</groupId>
  69. <artifactId>junit</artifactId>
  70. </exclusion>
  71. </exclusions>
  72. </dependency>
  73. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>fastjson</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.httpcomponents</groupId>
  80. <artifactId>httpclient</artifactId>
  81. </dependency>
  82. <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
  83. <dependency>
  84. <groupId>com.alibaba</groupId>
  85. <artifactId>druid</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.plugin</groupId>
  89. <artifactId>spring-plugin-core</artifactId>
  90. <version>1.2.0.RELEASE</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.plugin</groupId>
  94. <artifactId>spring-plugin-metadata</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-aop</artifactId>
  99. </dependency>
  100. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  101. <dependency>
  102. <groupId>org.projectlombok</groupId>
  103. <artifactId>lombok</artifactId>
  104. <scope>provided</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.auth0</groupId>
  108. <artifactId>java-jwt</artifactId>
  109. </dependency>
  110. </dependencies>
  111. <distributionManagement>
  112. <repository>
  113. <!-- 这里的ID要和setting的id一致 -->
  114. <id>releases</id>
  115. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  116. </repository>
  117. <!--这是打成快照版本的配置 -->
  118. <snapshotRepository>
  119. <id>snapshots</id>
  120. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  121. </snapshotRepository>
  122. </distributionManagement>
  123. <build>
  124. <plugins>
  125. <!-- <plugin>-->
  126. <!-- <groupId>org.springframework.boot</groupId>-->
  127. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  128. <!-- </plugin>-->
  129. <!-- &lt;!&ndash; maven 打包时跳过测试 &ndash;&gt;-->
  130. <!-- <plugin>-->
  131. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  132. <!-- <artifactId>maven-surefire-plugin</artifactId>-->
  133. <!-- <configuration>-->
  134. <!-- <skip>true</skip>-->
  135. <!-- </configuration>-->
  136. <!-- </plugin>-->
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-compiler-plugin</artifactId>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>