pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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.1.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.cloud</groupId>
  27. <artifactId>spring-cloud-starter-openfeign</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-security</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-validation</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.keycloak</groupId>
  39. <artifactId>keycloak-spring-boot-starter</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.keycloak</groupId>
  43. <artifactId>keycloak-spring-security-adapter</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.keycloak</groupId>
  47. <artifactId>keycloak-admin-client</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>javax.ws.rs</groupId>
  51. <artifactId>javax.ws.rs-api</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.github.ben-manes.caffeine</groupId>
  55. <artifactId>caffeine</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.squareup.okhttp3</groupId>
  59. <artifactId>okhttp</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.projectlombok</groupId>
  63. <artifactId>lombok</artifactId>
  64. <optional>true</optional>
  65. </dependency>
  66. <dependency>
  67. <groupId>commons-beanutils</groupId>
  68. <artifactId>commons-beanutils</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.commons</groupId>
  72. <artifactId>commons-lang3</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>commons-codec</groupId>
  76. <artifactId>commons-codec</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>commons-io</groupId>
  80. <artifactId>commons-io</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.bouncycastle</groupId>
  84. <artifactId>bcprov-jdk15on</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.aliyun.oss</groupId>
  88. <artifactId>aliyun-sdk-oss</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>joda-time</groupId>
  92. <artifactId>joda-time</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>cc.iotkit</groupId>
  96. <artifactId>model</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>cc.iotkit</groupId>
  100. <artifactId>common</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>cc.iotkit</groupId>
  104. <artifactId>rule-engine</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>cc.iotkit</groupId>
  108. <artifactId>dao</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>cc.iotkit</groupId>
  112. <artifactId>component-server</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>cc.iotkit</groupId>
  116. <artifactId>converter</artifactId>
  117. </dependency>
  118. </dependencies>
  119. <!-- <build>-->
  120. <!-- <plugins>-->
  121. <!-- <plugin>-->
  122. <!-- <groupId>org.springframework.boot</groupId>-->
  123. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  124. <!-- <configuration>-->
  125. <!-- <excludes>-->
  126. <!-- <exclude>-->
  127. <!-- <groupId>org.projectlombok</groupId>-->
  128. <!-- <artifactId>lombok</artifactId>-->
  129. <!-- </exclude>-->
  130. <!-- </excludes>-->
  131. <!-- </configuration>-->
  132. <!-- </plugin>-->
  133. <!-- </plugins>-->
  134. <!-- </build>-->
  135. <build>
  136. <plugins>
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-compiler-plugin</artifactId>
  140. <version>3.0</version>
  141. <configuration>
  142. <source>1.8</source>
  143. <target>1.8</target>
  144. <encoding>UTF-8</encoding>
  145. </configuration>
  146. </plugin>
  147. <plugin>
  148. <groupId>org.apache.maven.plugins</groupId>
  149. <artifactId>maven-assembly-plugin</artifactId>
  150. <dependencies>
  151. <dependency>
  152. <groupId>cc.iotkit</groupId>
  153. <artifactId>standalone-package</artifactId>
  154. <version>${project.version}</version>
  155. </dependency>
  156. </dependencies>
  157. <configuration>
  158. <appendAssemblyId>false</appendAssemblyId>
  159. <descriptorRefs>
  160. <descriptorRef>standalone-package</descriptorRef>
  161. </descriptorRefs>
  162. </configuration>
  163. <executions>
  164. <execution>
  165. <id>make-assembly</id>
  166. <phase>package</phase>
  167. <goals>
  168. <goal>single</goal>
  169. </goals>
  170. </execution>
  171. </executions>
  172. </plugin>
  173. </plugins>
  174. </build>
  175. </project>