pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>0.5.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-common-log</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-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>cc.iotkit</groupId>
  23. <artifactId>iot-common-satoken</artifactId>
  24. </dependency>
  25. <!--====================第三方库===================-->
  26. <dependency>
  27. <groupId>org.aspectj</groupId>
  28. <artifactId>aspectjweaver</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-autoconfigure</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.alibaba</groupId>
  36. <artifactId>transmittable-thread-local</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-compiler-plugin</artifactId>
  48. <configuration>
  49. <source>${java.version}</source>
  50. <target>${java.version}</target>
  51. </configuration>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>