pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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.1-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. </dependency>
  80. <dependency>
  81. <groupId>cc.iotkit</groupId>
  82. <artifactId>iot-model</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>cc.iotkit</groupId>
  86. <artifactId>iot-common</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>cc.iotkit</groupId>
  90. <artifactId>iot-rule-engine</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>cc.iotkit</groupId>
  94. <artifactId>iot-dao</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>cc.iotkit</groupId>
  98. <artifactId>iot-component-server</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>cc.iotkit</groupId>
  102. <artifactId>iot-component-converter</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>cc.iotkit</groupId>
  106. <artifactId>iot-auth-server</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>cc.iotkit</groupId>
  110. <artifactId>iot-virtual-device</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>cc.iotkit</groupId>
  114. <artifactId>iot-message-bus</artifactId>
  115. </dependency>
  116. </dependencies>
  117. <build>
  118. <plugins>
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-compiler-plugin</artifactId>
  122. <version>3.0</version>
  123. <configuration>
  124. <source>11</source>
  125. <target>11</target>
  126. <encoding>UTF-8</encoding>
  127. </configuration>
  128. </plugin>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-assembly-plugin</artifactId>
  132. <dependencies>
  133. <dependency>
  134. <groupId>cc.iotkit</groupId>
  135. <artifactId>iot-package</artifactId>
  136. <version>${project.version}</version>
  137. </dependency>
  138. </dependencies>
  139. <configuration>
  140. <appendAssemblyId>false</appendAssemblyId>
  141. <descriptorRefs>
  142. <descriptorRef>standalone-package</descriptorRef>
  143. </descriptorRefs>
  144. </configuration>
  145. <executions>
  146. <execution>
  147. <id>make-assembly</id>
  148. <phase>package</phase>
  149. <goals>
  150. <goal>single</goal>
  151. </goals>
  152. </execution>
  153. </executions>
  154. </plugin>
  155. </plugins>
  156. </build>
  157. </project>