pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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>studio</artifactId>
  7. <groupId>com.platform</groupId>
  8. <version>0.4.x</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <properties>
  12. <hutool.version>5.7.22</hutool.version>
  13. </properties>
  14. <artifactId>generic</artifactId>
  15. <name>generic</name>
  16. <dependencies>
  17. <!--工具包-->
  18. <dependency>
  19. <groupId>cn.hutool</groupId>
  20. <artifactId>hutool-all</artifactId>
  21. <version>${hutool.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.platform</groupId>
  29. <artifactId>common-service-api</artifactId>
  30. <version>0.4.x</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-redis</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.cloud</groupId>
  38. <artifactId>spring-cloud-starter-security</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.swagger</groupId>
  42. <artifactId>swagger-annotations</artifactId>
  43. <version>1.6.3</version>
  44. <scope>compile</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.springfox</groupId>
  48. <artifactId>springfox-core</artifactId>
  49. <version>2.9.2</version>
  50. <scope>compile</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>io.springfox</groupId>
  54. <artifactId>springfox-swagger2</artifactId>
  55. <version>2.9.2</version>
  56. <scope>compile</scope>
  57. </dependency>
  58. <!--Spring boot 核心-->
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-data-jpa</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.jsonwebtoken</groupId>
  65. <artifactId>jjwt-api</artifactId>
  66. <version>0.11.2</version>
  67. </dependency>
  68. </dependencies>
  69. </project>