pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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>java-base-maven</artifactId>
  7. <groupId>com.alvin</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>springboot-main</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.google.code.gson</groupId>
  23. <artifactId>gson</artifactId>
  24. <version>2.9.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>commons-io</groupId>
  28. <artifactId>commons-io</artifactId>
  29. <version>2.6</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.auth0</groupId>
  33. <artifactId>java-jwt</artifactId>
  34. <version>3.2.0</version>
  35. </dependency>
  36. <!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
  37. <dependency>
  38. <groupId>redis.clients</groupId>
  39. <artifactId>jedis</artifactId>
  40. <version>4.2.2</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.commons</groupId>
  44. <artifactId>commons-pool2</artifactId>
  45. <version>2.11.1</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.alibaba.csp</groupId>
  49. <artifactId>sentinel-core</artifactId>
  50. <version>1.8.1</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.alibaba.csp</groupId>
  54. <artifactId>sentinel-transport-simple-http</artifactId>
  55. <version>1.8.1</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.alibaba.csp</groupId>
  59. <artifactId>sentinel-web-servlet</artifactId>
  60. <version>1.8.1</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.projectlombok</groupId>
  64. <artifactId>lombok</artifactId>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. <version>2.3.9.RELEASE</version>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>