pom.xml 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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 https://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.2.2.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>info.aspirecn.cloud.yysj</groupId>
  12. <artifactId>cloud-yysj-login-authentication</artifactId>
  13. <version>1.0.1</version>
  14. <name>cloud-yysj-login-authentication</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <spring-cloud.version>Hoxton.RELEASE</spring-cloud.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>org.apache.logging.log4j</groupId>
  27. <artifactId>log4j-to-slf4j</artifactId>
  28. </exclusion>
  29. <exclusion>
  30. <groupId>org.apache.logging.log4j</groupId>
  31. <artifactId>log4j-api</artifactId>
  32. </exclusion>
  33. </exclusions>
  34. </dependency>
  35. <!-- <dependency>-->
  36. <!-- <groupId>org.springframework.cloud</groupId>-->
  37. <!-- <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>-->
  38. <!-- </dependency>-->
  39. <dependency>
  40. <groupId>org.springframework.cloud</groupId>
  41. <artifactId>spring-cloud-starter-openfeign</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. <optional>true</optional>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.cxf</groupId>
  50. <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
  51. <version>3.2.7</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>fastjson</artifactId>
  56. <version>1.2.76</version>
  57. </dependency>
  58. <!-- 配置jdbc依赖 -->
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-data-jdbc</artifactId>
  62. </dependency>
  63. <!-- mysql依赖 -->
  64. <dependency>
  65. <groupId>mysql</groupId>
  66. <artifactId>mysql-connector-java</artifactId>
  67. </dependency>
  68. <!-- mybatis依赖 -->
  69. <dependency>
  70. <groupId>com.baomidou</groupId>
  71. <artifactId>mybatis-plus-boot-starter</artifactId>
  72. <version>3.3.0</version>
  73. </dependency>
  74. <!--actuator-->
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-actuator</artifactId>
  78. </dependency>
  79. <!--jwtTools-->
  80. <dependency>
  81. <groupId>com.auth0</groupId>
  82. <artifactId>java-jwt</artifactId>
  83. <version>3.8.3</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.json</groupId>
  87. <artifactId>json</artifactId>
  88. <version>20190722</version>
  89. </dependency>
  90. <!--xml->json-->
  91. <dependency>
  92. <groupId>net.sf.json-lib</groupId>
  93. <artifactId>json-lib</artifactId>
  94. <version>2.4</version>
  95. <classifier>jdk15</classifier>
  96. </dependency>
  97. <dependency>
  98. <groupId>xom</groupId>
  99. <artifactId>xom</artifactId>
  100. <version>1.2.5</version>
  101. </dependency>
  102. <!-- swagger2-->
  103. <dependency>
  104. <groupId>io.springfox</groupId>
  105. <artifactId>springfox-swagger2</artifactId>
  106. <version>2.9.2</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>io.springfox</groupId>
  110. <artifactId>springfox-swagger-ui</artifactId>
  111. <version>2.9.2</version>
  112. </dependency>
  113. <!-- redis -->
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-data-redis</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.commons</groupId>
  120. <artifactId>commons-pool2</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>info.aspirecn.iov.sjjh</groupId>
  124. <artifactId>iov-sjjh-servicenode-user-interface</artifactId>
  125. <version>1.0.0</version>
  126. <exclusions>
  127. <exclusion>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-starter-web</artifactId>
  130. </exclusion>
  131. <exclusion>
  132. <groupId>org.springframework.cloud</groupId>
  133. <artifactId>spring-cloud-starter-openfeign</artifactId>
  134. </exclusion>
  135. </exclusions>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.apache.httpcomponents</groupId>
  139. <artifactId>httpclient</artifactId>
  140. <version>4.5.10</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.springframework.cloud</groupId>
  144. <artifactId>spring-cloud-starter-kubernetes-config</artifactId>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.logging.log4j</groupId>
  148. <artifactId>log4j-api</artifactId>
  149. <version>2.15.0</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.apache.logging.log4j</groupId>
  153. <artifactId>log4j-to-slf4j</artifactId>
  154. <version>2.15.0</version>
  155. </dependency>
  156. </dependencies>
  157. <dependencyManagement>
  158. <dependencies>
  159. <dependency>
  160. <groupId>org.springframework.cloud</groupId>
  161. <artifactId>spring-cloud-dependencies</artifactId>
  162. <version>${spring-cloud.version}</version>
  163. <type>pom</type>
  164. <scope>import</scope>
  165. </dependency>
  166. </dependencies>
  167. </dependencyManagement>
  168. <build>
  169. <plugins>
  170. <plugin>
  171. <groupId>org.springframework.boot</groupId>
  172. <artifactId>spring-boot-maven-plugin</artifactId>
  173. </plugin>
  174. <!--设置应用 Main 参数启动依赖查找的地址指向外部 lib 文件夹-->
  175. <!-- <plugin>-->
  176. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  177. <!-- <artifactId>maven-jar-plugin</artifactId>-->
  178. <!-- <configuration>-->
  179. <!-- <archive>-->
  180. <!-- <manifest>-->
  181. <!-- <addClasspath>true</addClasspath>-->
  182. <!-- <classpathPrefix>lib/</classpathPrefix>-->
  183. <!-- </manifest>-->
  184. <!-- </archive>-->
  185. <!-- </configuration>-->
  186. <!-- </plugin>-->
  187. <!-- &lt;!&ndash;设置 SpringBoot 打包插件不包含任何 Jar 依赖包&ndash;&gt;-->
  188. <!-- <plugin>-->
  189. <!-- <groupId>org.springframework.boot</groupId>-->
  190. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  191. <!-- <configuration>-->
  192. <!-- <includes>-->
  193. <!-- <include>-->
  194. <!-- <groupId>nothing</groupId>-->
  195. <!-- <artifactId>nothing</artifactId>-->
  196. <!-- </include>-->
  197. <!-- </includes>-->
  198. <!-- </configuration>-->
  199. <!-- </plugin>-->
  200. <!-- &lt;!&ndash;设置将 lib 拷贝到应用 Jar 外面&ndash;&gt;-->
  201. <!-- <plugin>-->
  202. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  203. <!-- <artifactId>maven-dependency-plugin</artifactId>-->
  204. <!-- <executions>-->
  205. <!-- <execution>-->
  206. <!-- <id>copy-dependencies</id>-->
  207. <!-- <phase>prepare-package</phase>-->
  208. <!-- <goals>-->
  209. <!-- <goal>copy-dependencies</goal>-->
  210. <!-- </goals>-->
  211. <!-- <configuration>-->
  212. <!-- <outputDirectory>${project.build.directory}/lib</outputDirectory>-->
  213. <!-- </configuration>-->
  214. <!-- </execution>-->
  215. <!-- </executions>-->
  216. <!-- </plugin>-->
  217. </plugins>
  218. </build>
  219. </project>