pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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-test-tool</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-virtual-device</artifactId>
  12. <description>
  13. 虚拟设备模块,用于虚拟真实设备数据上报
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.quartz-scheduler</groupId>
  22. <artifactId>quartz</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>cc.iotkit</groupId>
  26. <artifactId>iot-common-model</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>cc.iotkit</groupId>
  30. <artifactId>iot-component-server</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>cc.iotkit</groupId>
  34. <artifactId>iot-script-engine</artifactId>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-compiler-plugin</artifactId>
  42. <configuration>
  43. <source>${java.version}</source>
  44. <target>${java.version}</target>
  45. <encoding>utf8</encoding>
  46. </configuration>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>