pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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>iotkit-parent</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.3.2-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-standalone</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-cache</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-logging</artifactId>
  28. <exclusions>
  29. <exclusion>
  30. <groupId>org.apache.logging.log4j</groupId>
  31. <artifactId>log4j-to-slf4j</artifactId>
  32. </exclusion>
  33. </exclusions>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.logging.log4j</groupId>
  37. <artifactId>log4j-core</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.github.ben-manes.caffeine</groupId>
  41. <artifactId>caffeine</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. <optional>true</optional>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-beanutils</groupId>
  50. <artifactId>commons-beanutils</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.commons</groupId>
  54. <artifactId>commons-lang3</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>commons-codec</groupId>
  58. <artifactId>commons-codec</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>commons-io</groupId>
  62. <artifactId>commons-io</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.bouncycastle</groupId>
  66. <artifactId>bcprov-jdk15on</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.aliyun.oss</groupId>
  70. <artifactId>aliyun-sdk-oss</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>joda-time</groupId>
  74. <artifactId>joda-time</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>it.ozimov</groupId>
  78. <artifactId>embedded-redis</artifactId>
  79. <exclusions>
  80. <exclusion>
  81. <artifactId>slf4j-simple</artifactId>
  82. <groupId>org.slf4j</groupId>
  83. </exclusion>
  84. </exclusions>
  85. </dependency>
  86. <dependency>
  87. <groupId>cc.iotkit</groupId>
  88. <artifactId>iot-model</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>cc.iotkit</groupId>
  92. <artifactId>iot-common</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>cc.iotkit</groupId>
  96. <artifactId>iot-rule-engine</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>cc.iotkit</groupId>
  100. <artifactId>iot-dao</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>cc.iotkit</groupId>
  104. <artifactId>iot-component-server</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>cc.iotkit</groupId>
  108. <artifactId>iot-component-converter</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>cc.iotkit</groupId>
  112. <artifactId>iot-auth-server</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>cc.iotkit</groupId>
  116. <artifactId>iot-virtual-device</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>cc.iotkit</groupId>
  120. <artifactId>iot-message-bus</artifactId>
  121. </dependency>
  122. </dependencies>
  123. <build>
  124. <plugins>
  125. <plugin>
  126. <groupId>org.apache.maven.plugins</groupId>
  127. <artifactId>maven-compiler-plugin</artifactId>
  128. <version>3.0</version>
  129. <configuration>
  130. <source>11</source>
  131. <target>11</target>
  132. <encoding>UTF-8</encoding>
  133. </configuration>
  134. </plugin>
  135. <plugin>
  136. <groupId>org.apache.maven.plugins</groupId>
  137. <artifactId>maven-assembly-plugin</artifactId>
  138. <dependencies>
  139. <dependency>
  140. <groupId>cc.iotkit</groupId>
  141. <artifactId>iot-package</artifactId>
  142. <version>${project.version}</version>
  143. </dependency>
  144. </dependencies>
  145. <configuration>
  146. <appendAssemblyId>false</appendAssemblyId>
  147. <descriptorRefs>
  148. <descriptorRef>standalone-package</descriptorRef>
  149. </descriptorRefs>
  150. </configuration>
  151. <executions>
  152. <execution>
  153. <id>make-assembly</id>
  154. <phase>package</phase>
  155. <goals>
  156. <goal>single</goal>
  157. </goals>
  158. </execution>
  159. </executions>
  160. </plugin>
  161. </plugins>
  162. </build>
  163. </project>