pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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.0.1-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>com.github.xiaoymin</groupId>
  31. <artifactId>knife4j-spring-boot-starter</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-security</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-validation</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.keycloak</groupId>
  43. <artifactId>keycloak-spring-boot-starter</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.keycloak</groupId>
  47. <artifactId>keycloak-spring-security-adapter</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.keycloak</groupId>
  51. <artifactId>keycloak-admin-client</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>javax.ws.rs</groupId>
  55. <artifactId>javax.ws.rs-api</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.github.ben-manes.caffeine</groupId>
  59. <artifactId>caffeine</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.squareup.okhttp3</groupId>
  63. <artifactId>okhttp</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.projectlombok</groupId>
  67. <artifactId>lombok</artifactId>
  68. <optional>true</optional>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-beanutils</groupId>
  72. <artifactId>commons-beanutils</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-lang3</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>commons-codec</groupId>
  80. <artifactId>commons-codec</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>commons-io</groupId>
  84. <artifactId>commons-io</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.bouncycastle</groupId>
  88. <artifactId>bcprov-jdk15on</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.aliyun.oss</groupId>
  92. <artifactId>aliyun-sdk-oss</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>joda-time</groupId>
  96. <artifactId>joda-time</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>cc.iotkit</groupId>
  100. <artifactId>model</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>cc.iotkit</groupId>
  104. <artifactId>common</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>cc.iotkit</groupId>
  108. <artifactId>device-api</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>cc.iotkit</groupId>
  112. <artifactId>rule-engine</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>cc.iotkit</groupId>
  116. <artifactId>dao</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. </project>