pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. <!-- Sa-Token 整合 jwt -->
  19. <dependency>
  20. <groupId>cn.dev33</groupId>
  21. <artifactId>sa-token-jwt</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>cc.iotkit</groupId>
  25. <artifactId>iot-common-core</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>cc.iotkit</groupId>
  29. <artifactId>iot-common-redis</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>cc.iotkit</groupId>
  33. <artifactId>iot-common-web</artifactId>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.apache.maven.plugins</groupId>
  40. <artifactId>maven-compiler-plugin</artifactId>
  41. <configuration>
  42. <source>${java.version}</source>
  43. <target>${java.version}</target>
  44. </configuration>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>