pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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>0.5.3</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>cc.iotkit</groupId>
  18. <artifactId>iot-data-model</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>cc.iotkit</groupId>
  22. <artifactId>iot-script-engine</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>cc.iotkit</groupId>
  26. <artifactId>iot-data-service</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>cc.iotkit</groupId>
  30. <artifactId>iot-plugin-main</artifactId>
  31. </dependency>
  32. <!--====================第三方库===================-->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.quartz-scheduler</groupId>
  39. <artifactId>quartz</artifactId>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-compiler-plugin</artifactId>
  47. <configuration>
  48. <source>${java.version}</source>
  49. <target>${java.version}</target>
  50. <encoding>utf8</encoding>
  51. </configuration>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>