.flattened-pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cc.iotkit</groupId>
  7. <artifactId>iot-components</artifactId>
  8. <version>0.4.5-SNAPSHOT</version>
  9. </parent>
  10. <groupId>cc.iotkit</groupId>
  11. <artifactId>iot-component-server</artifactId>
  12. <version>0.4.5-SNAPSHOT</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-web</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-context</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.data</groupId>
  24. <artifactId>spring-data-redis</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>redis.clients</groupId>
  28. <artifactId>jedis</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.slf4j</groupId>
  32. <artifactId>slf4j-api</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.vertx</groupId>
  36. <artifactId>vertx-web-client</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>commons-io</groupId>
  40. <artifactId>commons-io</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.luaj</groupId>
  44. <artifactId>luaj-jse</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>cc.iotkit</groupId>
  52. <artifactId>iot-common-core</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>cc.iotkit</groupId>
  56. <artifactId>iot-component-converter</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>cc.iotkit</groupId>
  60. <artifactId>iot-common-model</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>cc.iotkit</groupId>
  64. <artifactId>iot-component-base</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>cc.iotkit</groupId>
  68. <artifactId>iot-message-core</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>cc.iotkit</groupId>
  72. <artifactId>iot-data-service</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>cc.iotkit</groupId>
  76. <artifactId>iot-temporal-service</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>cc.iotkit</groupId>
  80. <artifactId>iot-data-serviceImpl-cache</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>cc.iotkit</groupId>
  84. <artifactId>iot-script-engine</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>cc.iotkit</groupId>
  88. <artifactId>iot-message-core</artifactId>
  89. </dependency>
  90. </dependencies>
  91. <build>
  92. <plugins>
  93. <plugin>
  94. <artifactId>maven-compiler-plugin</artifactId>
  95. <configuration>
  96. <source>${java.version}</source>
  97. <target>${java.version}</target>
  98. </configuration>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. </project>