pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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>elab-parent</artifactId>
  7. <groupId>com.elab.core</groupId>
  8. <version>4.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>elab-spring</artifactId>
  12. <build>
  13. <plugins>
  14. <plugin>
  15. <groupId>org.apache.maven.plugins</groupId>
  16. <artifactId>maven-compiler-plugin</artifactId>
  17. <configuration>
  18. <source>8</source>
  19. <target>8</target>
  20. </configuration>
  21. </plugin>
  22. </plugins>
  23. </build>
  24. <!--<version>2.0.1-SNAPSHOT</version>-->
  25. <dependencies>
  26. <!-- <dependency>-->
  27. <!-- <groupId>com.elab.core</groupId>-->
  28. <!-- <artifactId>elab-core</artifactId>-->
  29. <!-- <version>${project.version}</version>-->
  30. <!-- </dependency>-->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-autoconfigure</artifactId>
  34. <scope>provided</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-configuration-processor</artifactId>
  39. <version>${springboot.version}</version>
  40. <optional>true</optional>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.elab.log</groupId>
  44. <artifactId>elab-log</artifactId>
  45. <version>${project.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.elab.core</groupId>
  49. <artifactId>elab-mq</artifactId>
  50. <version>${project.version}</version>
  51. <scope>provided</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.elab.core</groupId>
  55. <artifactId>elab-redis</artifactId>
  56. <version>${project.version}</version>
  57. <scope>provided</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.fasterxml.jackson.core</groupId>
  61. <artifactId>jackson-databind</artifactId>
  62. <version>2.9.8</version>
  63. <scope>provided</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.elab.core</groupId>
  67. <artifactId>elab-db</artifactId>
  68. <version>${project.version}</version>
  69. </dependency>
  70. <!-- Spring Core -->
  71. <dependency>
  72. <groupId>org.springframework</groupId>
  73. <artifactId>spring-core</artifactId>
  74. <optional>true</optional>
  75. </dependency>
  76. <!-- context -->
  77. <dependency>
  78. <groupId>org.springframework</groupId>
  79. <artifactId>spring-context</artifactId>
  80. <optional>true</optional>
  81. </dependency>
  82. <!-- context -->
  83. <dependency>
  84. <groupId>org.springframework</groupId>
  85. <artifactId>spring-context-support</artifactId>
  86. <optional>true</optional>
  87. </dependency>
  88. <!-- jdbc -->
  89. <dependency>
  90. <groupId>org.springframework</groupId>
  91. <artifactId>spring-jdbc</artifactId>
  92. <optional>true</optional>
  93. <scope>provided</scope>
  94. </dependency>
  95. <!-- tx -->
  96. <dependency>
  97. <groupId>org.springframework</groupId>
  98. <artifactId>spring-tx</artifactId> <!--spring transaction-->
  99. <optional>true</optional>
  100. </dependency>
  101. <!-- beans -->
  102. <dependency>
  103. <groupId>org.springframework</groupId>
  104. <artifactId>spring-beans</artifactId>
  105. <optional>true</optional>
  106. </dependency>
  107. <!-- aop -->
  108. <dependency>
  109. <groupId>org.springframework</groupId>
  110. <artifactId>spring-aop</artifactId>
  111. <optional>true</optional>
  112. </dependency>
  113. <!-- webmvc -->
  114. <dependency>
  115. <groupId>org.springframework</groupId>
  116. <artifactId>spring-webmvc</artifactId>
  117. <optional>true</optional>
  118. </dependency>
  119. <!-- web -->
  120. <dependency>
  121. <groupId>org.springframework</groupId>
  122. <artifactId>spring-web</artifactId>
  123. <optional>true</optional>
  124. </dependency>
  125. <!--<dependency>-->
  126. <!--<groupId>com.elab.core</groupId>-->
  127. <!--<artifactId>elab-db</artifactId>-->
  128. <!--<version>${project.version}</version>-->
  129. <!--</dependency>-->
  130. <dependency>
  131. <groupId>javax.validation</groupId>
  132. <artifactId>validation-api</artifactId>
  133. <scope>compile</scope>
  134. </dependency>
  135. <dependency>
  136. <groupId>io.springfox</groupId>
  137. <artifactId>springfox-swagger2</artifactId>
  138. <scope>compile</scope>
  139. <!-- <exclusions>-->
  140. <!-- <exclusion>-->
  141. <!-- <artifactId>swagger-models</artifactId>-->
  142. <!-- <groupId>io.swagger</groupId>-->
  143. <!-- </exclusion>-->
  144. <!-- </exclusions>-->
  145. </dependency>
  146. <dependency>
  147. <groupId>io.springfox</groupId>
  148. <artifactId>springfox-swagger-ui</artifactId>
  149. <scope>compile</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.hibernate</groupId>
  153. <artifactId>hibernate-validator</artifactId>
  154. <scope>compile</scope>
  155. </dependency>
  156. <!-- <dependency>-->
  157. <!-- <groupId>org.junit.jupiter</groupId>-->
  158. <!-- <artifactId>junit-jupiter-api</artifactId>-->
  159. <!-- <version>RELEASE</version>-->
  160. <!-- <scope>test</scope>-->
  161. <!-- </dependency>-->
  162. <dependency>
  163. <groupId>junit</groupId>
  164. <artifactId>junit</artifactId>
  165. <scope>test</scope>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.springframework.boot</groupId>
  169. <artifactId>spring-boot-starter-test</artifactId>
  170. <scope>test</scope>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.apache.httpcomponents</groupId>
  174. <artifactId>httpclient</artifactId>
  175. </dependency>
  176. <!--<dependency>-->
  177. <!--<groupId>ch.qos.logback</groupId>-->
  178. <!--<artifactId>logback-classic</artifactId>-->
  179. <!--<version>1.2.3</version>-->
  180. <!--<scope>provided</scope>-->
  181. <!--</dependency>-->
  182. </dependencies>
  183. <distributionManagement>
  184. <!--<repository>-->
  185. <!--<id>releases</id>-->
  186. <!--<name>Nexus Release Repository</name>-->
  187. <!--<url>http://192.168.0.11:8081/nexus/content/repositories/elab/</url>-->
  188. <!--</repository>-->
  189. <snapshotRepository>
  190. <id>snapshots</id>
  191. <name>User Project SNAPSHOTS</name>
  192. <url>http://192.168.0.11:8081/repository/maven-snapshots/</url>
  193. </snapshotRepository>
  194. </distributionManagement>
  195. </project>