pom.xml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.tofly</groupId>
  8. <artifactId>tofly-pms</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>auth-sdk</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-security</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.projectlombok</groupId>
  19. <artifactId>lombok</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>io.jsonwebtoken</groupId>
  27. <artifactId>jjwt</artifactId>
  28. <version>0.7.0</version>
  29. <scope>compile</scope>
  30. </dependency>
  31. <dependency>
  32. <artifactId>fastjson</artifactId>
  33. <groupId>com.alibaba</groupId>
  34. <version>1.2.60</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.commons</groupId>
  38. <artifactId>commons-lang3</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.jetbrains</groupId>
  42. <artifactId>annotations</artifactId>
  43. <version>RELEASE</version>
  44. <scope>compile</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-data-redis</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>redis.clients</groupId>
  52. <artifactId>jedis</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.github.ua-parser</groupId>
  56. <artifactId>uap-java</artifactId>
  57. <version>1.4.3</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.datastax.oss</groupId>
  61. <artifactId>java-driver-core</artifactId>
  62. <version>4.14.1</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.github.ben-manes.caffeine</groupId>
  66. <artifactId>caffeine</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
  71. </dependency>
  72. </dependencies>
  73. <!-- <build>-->
  74. <!-- <plugins>-->
  75. <!-- <plugin>-->
  76. <!-- <groupId>org.springframework.boot</groupId>-->
  77. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  78. <!-- <configuration>-->
  79. <!-- <classifier>exec</classifier>-->
  80. <!-- </configuration>-->
  81. <!-- </plugin>-->
  82. <!-- </plugins>-->
  83. <!-- </build>-->
  84. <build>
  85. <plugins>
  86. <!-- SpringBoot启动 -->
  87. <plugin>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-maven-plugin</artifactId>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>