pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.diagbot</groupId>
  7. <artifactId>diagbotcloud</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <modules>
  11. <module>eureka-server</module>
  12. <module>config-server</module>
  13. <module>gateway-service</module>
  14. <module>uaa-service</module>
  15. <module>user-service</module>
  16. <module>log-service</module>
  17. <module>common</module>
  18. <module>diagbotman-service</module>
  19. <module>feedback-service</module>
  20. <module>bi-service</module>
  21. <module>monitor-service</module>
  22. <module>admin-service</module>
  23. <module>triage-service</module>
  24. <module>icss-service</module>
  25. <module>icssman-service</module>
  26. <module>knowledgeman-service</module>
  27. <module>tran-service</module>
  28. <module>aipt-service</module>
  29. <module>ltapi-service</module>
  30. <module>data-service</module>
  31. <module>prec-service</module>
  32. <module>precman-service</module>
  33. <module>mrman-service</module>
  34. <module>common-biz-client</module>
  35. <module>ltkg-service</module>
  36. <module>cdssman-service</module>
  37. </modules>
  38. <parent>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-parent</artifactId>
  41. <version>2.2.1.RELEASE</version>
  42. <relativePath />
  43. </parent>
  44. <properties>
  45. <maven.compiler.source>1.8</maven.compiler.source>
  46. <maven.compiler.target>1.8</maven.compiler.target>
  47. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  48. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  49. <java.version>1.8</java.version>
  50. <spring-cloud.version>Hoxton.RELEASE</spring-cloud.version>
  51. <mybatis-plus-boot-starter.version>3.2.0</mybatis-plus-boot-starter.version>
  52. <mybatis-spring-boot.version>2.1.1</mybatis-spring-boot.version>
  53. <druid.version>1.1.21</druid.version>
  54. <swagger.version>2.9.2</swagger.version>
  55. <knife4j.version>2.0.2</knife4j.version>
  56. <logstash.version>5.2</logstash.version>
  57. <poi.version>4.1.1</poi.version>
  58. <aggregator.version>1.1.0</aggregator.version>
  59. <okhttp.version>4.2.2</okhttp.version>
  60. <easypoi.version>4.2.0</easypoi.version>
  61. <docker-maven-plugin.version>1.2.1</docker-maven-plugin.version>
  62. </properties>
  63. <dependencies>
  64. <dependency>
  65. <groupId>org.jolokia</groupId>
  66. <artifactId>jolokia-core</artifactId>
  67. </dependency>
  68. </dependencies>
  69. <dependencyManagement>
  70. <dependencies>
  71. <dependency>
  72. <groupId>org.projectlombok</groupId>
  73. <artifactId>lombok</artifactId>
  74. <version>1.18.26</version>
  75. <scope>provided</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.cloud</groupId>
  79. <artifactId>spring-cloud-dependencies</artifactId>
  80. <version>${spring-cloud.version}</version>
  81. <type>pom</type>
  82. <scope>import</scope>
  83. </dependency>
  84. <!-- mybatis-plus begin -->
  85. <dependency>
  86. <groupId>com.baomidou</groupId>
  87. <artifactId>mybatis-plus-boot-starter</artifactId>
  88. <version>${mybatis-plus-boot-starter.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.baomidou</groupId>
  92. <artifactId>mybatis-plus-generator</artifactId>
  93. <version>${mybatis-plus-boot-starter.version}</version>
  94. </dependency>
  95. <!-- mybatis-plus end -->
  96. <!-- 阿里巴巴druid数据库连接池 -->
  97. <dependency>
  98. <groupId>com.alibaba</groupId>
  99. <artifactId>druid-spring-boot-starter</artifactId>
  100. <version>${druid.version}</version>
  101. </dependency>
  102. <!--swagger-->
  103. <dependency>
  104. <groupId>io.springfox</groupId>
  105. <artifactId>springfox-swagger2</artifactId>
  106. <version>${swagger.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>io.springfox</groupId>
  110. <artifactId>springfox-swagger-ui</artifactId>
  111. <version>${swagger.version}</version>
  112. </dependency>
  113. <!--knife4j-->
  114. <dependency>
  115. <groupId>com.github.xiaoymin</groupId>
  116. <artifactId>knife4j-spring-ui</artifactId>
  117. <version>${knife4j.version}</version>
  118. </dependency>
  119. <!-- springboot整合mybatis(核心就这一个) -->
  120. <!-- 注意顺序,这个一定要放在最下面 -->
  121. <dependency>
  122. <groupId>org.mybatis.spring.boot</groupId>
  123. <artifactId>mybatis-spring-boot-starter</artifactId>
  124. <version>${mybatis-spring-boot.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.spotify</groupId>
  128. <artifactId>docker-maven-plugin</artifactId>
  129. <version>${docker-maven-plugin.version}</version>
  130. </dependency>
  131. <!-- Logstash encoder -->
  132. <dependency>
  133. <groupId>net.logstash.logback</groupId>
  134. <artifactId>logstash-logback-encoder</artifactId>
  135. <version>${logstash.version}</version>
  136. </dependency>
  137. <!--POI-->
  138. <dependency>
  139. <groupId>org.apache.poi</groupId>
  140. <artifactId>poi</artifactId>
  141. <version>${poi.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.poi</groupId>
  145. <artifactId>poi-ooxml</artifactId>
  146. <version>${poi.version}</version>
  147. </dependency>
  148. <!-- easypoi -->
  149. <dependency>
  150. <groupId>cn.afterturn</groupId>
  151. <artifactId>easypoi-spring-boot-starter</artifactId>
  152. <version>${easypoi.version}</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>io.github.lvyahui8</groupId>
  156. <artifactId>spring-boot-data-aggregator-starter</artifactId>
  157. <version>${aggregator.version}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>com.squareup.okhttp3</groupId>
  161. <artifactId>okhttp</artifactId>
  162. <version>${okhttp.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>com.diagbot</groupId>
  166. <artifactId>common-biz-client</artifactId>
  167. <version>0.0.1-SNAPSHOT</version>
  168. </dependency>
  169. </dependencies>
  170. </dependencyManagement>
  171. </project>