pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. <parent>
  6. <artifactId>wlyy-parent-pom</artifactId>
  7. <groupId>com.yihu.jw</groupId>
  8. <version>2.0.0</version>
  9. <relativePath>../../wlyy-parent-pom/pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <groupId>com.yihu.jw</groupId>
  13. <artifactId>svr-authentication</artifactId>
  14. <packaging>jar</packaging>
  15. <version>${parent.version}</version>
  16. <dependencies>
  17. <!-- 支持Tomcat启动 -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. <exclusions>
  22. <exclusion>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-tomcat</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-tomcat</artifactId>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>javax.servlet</groupId>
  35. <artifactId>javax.servlet-api</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.tomcat.embed</groupId>
  39. <artifactId>tomcat-embed-jasper</artifactId>
  40. </dependency>
  41. <!-- 支持Tomcat启动 -->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-security</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.security.oauth</groupId>
  48. <artifactId>spring-security-oauth2</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-test</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.cloud</groupId>
  57. <artifactId>spring-cloud-starter-config</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.cloud</groupId>
  61. <artifactId>spring-cloud-starter-eureka</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.cloud</groupId>
  65. <artifactId>spring-cloud-starter-feign</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.cloud</groupId>
  69. <artifactId>spring-cloud-starter-ribbon</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-actuator</artifactId>
  74. </dependency>
  75. <!-- Redis -->
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-data-redis</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>redis.clients</groupId>
  82. <artifactId>jedis</artifactId>
  83. </dependency>
  84. <!-- Redis -->
  85. <!-- JdbcTemplate-->
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-jdbc</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>mysql</groupId>
  92. <artifactId>mysql-connector-java</artifactId>
  93. <scope>runtime</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.commons</groupId>
  97. <artifactId>commons-dbcp2</artifactId>
  98. </dependency>
  99. <!-- JdbcTemplate-->
  100. <dependency>
  101. <groupId>com.yihu.jw</groupId>
  102. <artifactId>common-rest-model</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.yihu.jw</groupId>
  106. <artifactId>common-entity</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.yihu</groupId>
  110. <artifactId>mysql-starter</artifactId>
  111. <version>2.0.0</version>
  112. </dependency>
  113. <!-- 易联众工具-->
  114. <dependency>
  115. <groupId>com.ylz.loginsdk</groupId>
  116. <artifactId>ehcsdk</artifactId>
  117. <version>1.0</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.yihu</groupId>
  121. <artifactId>fastdfs-starter</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.google.zxing</groupId>
  125. <artifactId>core</artifactId>
  126. <version>RELEASE</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.google.zxing</groupId>
  130. <artifactId>javase</artifactId>
  131. <version>RELEASE</version>
  132. </dependency>
  133. </dependencies>
  134. <build>
  135. <finalName>svr-authentication</finalName>
  136. <plugins>
  137. <plugin>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-maven-plugin</artifactId>
  140. <configuration>
  141. <mainClass>com.yihu.AuthServer</mainClass>
  142. </configuration>
  143. </plugin>
  144. <plugin>
  145. <artifactId>maven-war-plugin</artifactId>
  146. <configuration>
  147. <failOnMissingWebXml>false</failOnMissingWebXml>
  148. <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
  149. </configuration>
  150. </plugin>
  151. </plugins>
  152. </build>
  153. </project>