.flattened-pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cc.iotkit</groupId>
  7. <artifactId>iot-common</artifactId>
  8. <version>0.4.5-SNAPSHOT</version>
  9. </parent>
  10. <groupId>cc.iotkit</groupId>
  11. <artifactId>iot-common-log</artifactId>
  12. <version>0.4.5-SNAPSHOT</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.aspectj</groupId>
  16. <artifactId>aspectjweaver</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-autoconfigure</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.alibaba</groupId>
  24. <artifactId>transmittable-thread-local</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.projectlombok</groupId>
  28. <artifactId>lombok</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>cc.iotkit</groupId>
  32. <artifactId>iot-common-core</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>cc.iotkit</groupId>
  36. <artifactId>iot-common-web</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>cc.iotkit</groupId>
  40. <artifactId>iot-common-satoken</artifactId>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <artifactId>maven-compiler-plugin</artifactId>
  47. <configuration>
  48. <source>${java.version}</source>
  49. <target>${java.version}</target>
  50. </configuration>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. </project>