pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>modules</artifactId>
  7. <groupId>com.blue</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <artifactId>admin</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.springframework.security</groupId>
  14. <artifactId>spring-security-core</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-security</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>io.jsonwebtoken</groupId>
  22. <artifactId>jjwt</artifactId>
  23. <version>0.9.1</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>mysql</groupId>
  27. <artifactId>mysql-connector-java</artifactId>
  28. <scope>runtime</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.hutool</groupId>
  32. <artifactId>hutool-all</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>javax.xml.bind</groupId>
  40. <artifactId>jaxb-api</artifactId>
  41. <version>2.3.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.sun.xml.bind</groupId>
  45. <artifactId>jaxb-impl</artifactId>
  46. <version>2.3.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.sun.xml.bind</groupId>
  50. <artifactId>jaxb-core</artifactId>
  51. <version>2.3.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>javax.activation</groupId>
  55. <artifactId>activation</artifactId>
  56. <version>1.1.1</version>
  57. </dependency>
  58. </dependencies>
  59. </project>