pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <version>0.5.1-SNAPSHOT</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. <configuration>
  29. <source>${java.version}</source>
  30. <target>${java.version}</target>
  31. </configuration>
  32. </plugin>
  33. </plugins>
  34. </build>
  35. </project>