pom.xml 5.5 KB

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