pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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>ipp-common</artifactId>
  7. <groupId>com.jiayue</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <artifactId>ipp-common-security</artifactId>
  11. <version>1.0.0</version>
  12. <packaging>jar</packaging>
  13. <description>ipfcst 安全工具类</description>
  14. <properties>
  15. <maven.compiler.source>1.8</maven.compiler.source>
  16. <maven.compiler.target>1.8</maven.compiler.target>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.jiayue</groupId>
  21. <artifactId>ipp-common-core</artifactId>
  22. <version>1.0.0</version>
  23. </dependency>
  24. <!-- <dependency>-->
  25. <!-- <groupId>org.springframework.boot</groupId>-->
  26. <!-- <artifactId>spring-boot-starter-data-jpa</artifactId>-->
  27. <!-- </dependency>-->
  28. <!--JWT-->
  29. <dependency>
  30. <groupId>com.auth0</groupId>
  31. <artifactId>java-jwt</artifactId>
  32. <version>3.4.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.jsonwebtoken</groupId>
  36. <artifactId>jjwt</artifactId>
  37. <version>0.9.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.jiayue</groupId>
  41. <artifactId>ipp-common-data</artifactId>
  42. <version>1.0.0</version>
  43. <scope>compile</scope>
  44. </dependency>
  45. </dependencies>
  46. </project>