pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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-module</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-manager</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.bouncycastle</groupId>
  19. <artifactId>bcprov-jdk15on</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.aliyun.oss</groupId>
  23. <artifactId>aliyun-sdk-oss</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>joda-time</groupId>
  27. <artifactId>joda-time</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>it.ozimov</groupId>
  31. <artifactId>embedded-redis</artifactId>
  32. <exclusions>
  33. <exclusion>
  34. <artifactId>slf4j-simple</artifactId>
  35. <groupId>org.slf4j</groupId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>cc.iotkit</groupId>
  41. <artifactId>iot-common-model</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>cc.iotkit</groupId>
  45. <artifactId>iot-common-core</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>cc.iotkit</groupId>
  49. <artifactId>iot-rule-engine</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>cc.iotkit</groupId>
  53. <artifactId>iot-component-server</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>cc.iotkit</groupId>
  57. <artifactId>iot-component-converter</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>cc.iotkit</groupId>
  61. <artifactId>iot-virtual-device</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>cc.iotkit</groupId>
  65. <artifactId>iot-message-core</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>cc.iotkit</groupId>
  69. <artifactId>iot-temporal-service</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>cc.iotkit</groupId>
  73. <artifactId>iot-data-serviceImpl-rdb</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>cc.iotkit</groupId>
  77. <artifactId>iot-data-serviceImpl-cache</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>cc.iotkit</groupId>
  81. <artifactId>iot-common-web</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>cc.iotkit</groupId>
  85. <artifactId>iot-common-doc</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>cc.iotkit</groupId>
  89. <artifactId>iot-common-satoken</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>cc.iotkit</groupId>
  93. <artifactId>iot-common-excel</artifactId>
  94. </dependency>
  95. </dependencies>
  96. <build>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.apache.maven.plugins</groupId>
  100. <artifactId>maven-compiler-plugin</artifactId>
  101. <configuration>
  102. <source>${java.version}</source>
  103. <target>${java.version}</target>
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>