pom.xml 1.9 KB

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