pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. <groupId>com.sifu.sfcc</groupId>
  6. <artifactId>sfcc-security</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>sfcc-security</name>
  10. <description>sfcc-security project for sfcc</description>
  11. <parent>
  12. <groupId>com.sifu.sfcc</groupId>
  13. <artifactId>sfcc</artifactId>
  14. <version>1.0-SNAPSHOT</version>
  15. </parent>
  16. <dependencies>
  17. <dependency>
  18. <groupId>javax.xml.bind</groupId>
  19. <artifactId>jaxb-api</artifactId>
  20. <version>2.3.0</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.sun.xml.bind</groupId>
  24. <artifactId>jaxb-impl</artifactId>
  25. <version>2.3.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.sun.xml.bind</groupId>
  29. <artifactId>jaxb-core</artifactId>
  30. <version>2.3.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>javax.activation</groupId>
  34. <artifactId>activation</artifactId>
  35. <version>1.1.1</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-configuration-processor</artifactId>
  40. <optional>true</optional>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.sifu.sfcc</groupId>
  44. <artifactId>sfcc-common</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-web</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-security</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-data-redis</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>io.jsonwebtoken</groupId>
  60. <artifactId>jjwt</artifactId>
  61. </dependency>
  62. </dependencies>
  63. </project>