pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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>fs4a-service</artifactId>
  7. <groupId>com.fs4a.service</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>fs4a-authentication</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <spring.security.version>2.3.3.RELEASE</spring.security.version>
  16. <spring-security-jwt.version>1.1.1.RELEASE</spring-security-jwt.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.cloud</groupId>
  21. <artifactId>spring-cloud-starter-openfeign</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <!-- <dependency>-->
  28. <!-- <groupId>org.springframework.boot</groupId>-->
  29. <!-- <artifactId>spring-boot-starter-data-redis</artifactId>-->
  30. <!-- </dependency>-->
  31. <dependency>
  32. <groupId>com.fasterxml.jackson.core</groupId>
  33. <artifactId>jackson-databind</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.fs4a.middleware.nacos.register</groupId>
  37. <artifactId>fs4a-nacos-register</artifactId>
  38. <version>1.0.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.fs4a.commons.jwt</groupId>
  42. <artifactId>common-jwt</artifactId>
  43. <version>1.0.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.tomcat.embed</groupId>
  47. <artifactId>tomcat-embed-core</artifactId>
  48. <version>9.0.12</version>
  49. </dependency>
  50. <!-- MyBatis-Plus代码生成器-->
  51. <dependency>
  52. <groupId>com.baomidou</groupId>
  53. <artifactId>mybatis-plus-boot-starter</artifactId>
  54. <version>3.0-RC3</version>
  55. </dependency>
  56. <!--数据库连接jdbc依赖-->
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-jdbc</artifactId>
  60. </dependency>
  61. <!--mysql链接依赖-->
  62. <dependency>
  63. <groupId>mysql</groupId>
  64. <artifactId>mysql-connector-java</artifactId>
  65. </dependency>
  66. <!--阿里druid数据库链接依赖-->
  67. <dependency>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>druid</artifactId>
  70. <version>1.1.9</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. <version>1.18.20</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-security</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.security.oauth</groupId>
  84. <artifactId>spring-security-oauth2</artifactId>
  85. <version>${spring.security.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.security</groupId>
  89. <artifactId>spring-security-jwt</artifactId>
  90. <version>${spring-security-jwt.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>io.swagger</groupId>
  94. <artifactId>swagger-annotations</artifactId>
  95. <version>1.5.20</version>
  96. <scope>compile</scope>
  97. </dependency>
  98. <!--<dependency>
  99. <groupId>com.fs4a.interfaces.gateway</groupId>
  100. <artifactId>interfaces-gateway</artifactId>
  101. <version>1.0.0</version>
  102. <scope>compile</scope>
  103. </dependency>-->
  104. </dependencies>
  105. <build>
  106. <plugins>
  107. <plugin>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-maven-plugin</artifactId>
  110. <version>${spring-boot.version}</version>
  111. <configuration>
  112. <fork>false</fork>
  113. <classifier>exec</classifier>
  114. </configuration>
  115. <executions>
  116. <execution>
  117. <goals>
  118. <goal>repackage</goal>
  119. </goals>
  120. </execution>
  121. </executions>
  122. </plugin>
  123. </plugins>
  124. </build>
  125. </project>