pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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-dao</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.5.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <version>0.5.3</version>
  12. <artifactId>iot-temporal-service</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cc.iotkit</groupId>
  16. <artifactId>iot-common-thing</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>cc.iotkit</groupId>
  20. <artifactId>iot-data-model</artifactId>
  21. </dependency>
  22. </dependencies>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.apache.maven.plugins</groupId>
  27. <artifactId>maven-compiler-plugin</artifactId>
  28. <version>3.8.1</version>
  29. <configuration>
  30. <source>${java.version}</source>
  31. <target>${java.version}</target>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. </project>