pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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>iot-common</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-common-satoken</artifactId>
  12. <dependencies>
  13. <!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
  14. <dependency>
  15. <groupId>cn.dev33</groupId>
  16. <artifactId>sa-token-spring-boot-starter</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>cn.dev33</groupId>
  20. <artifactId>sa-token-dao-redis-jackson</artifactId>
  21. </dependency>
  22. <!-- Sa-Token 整合 jwt -->
  23. <dependency>
  24. <groupId>cn.dev33</groupId>
  25. <artifactId>sa-token-jwt</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>cc.iotkit</groupId>
  29. <artifactId>iot-common-core</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>cc.iotkit</groupId>
  33. <artifactId>iot-common-redis</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>cc.iotkit</groupId>
  37. <artifactId>iot-common-web</artifactId>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.apache.maven.plugins</groupId>
  44. <artifactId>maven-compiler-plugin</artifactId>
  45. <configuration>
  46. <source>${java.version}</source>
  47. <target>${java.version}</target>
  48. </configuration>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>