pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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>2.0.4.13-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>com.elab.log</groupId>
  38. <artifactId>elab-log</artifactId>
  39. <version>${project.version}</version>
  40. </dependency>
  41. <!-- Spring Core -->
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-core</artifactId>
  45. </dependency>
  46. <!-- context -->
  47. <dependency>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-context</artifactId>
  50. </dependency>
  51. <!-- context -->
  52. <dependency>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-context-support</artifactId>
  55. </dependency>
  56. <!-- jdbc -->
  57. <dependency>
  58. <groupId>org.springframework</groupId>
  59. <artifactId>spring-jdbc</artifactId>
  60. </dependency>
  61. <!-- tx -->
  62. <dependency>
  63. <groupId>org.springframework</groupId>
  64. <artifactId>spring-tx</artifactId> <!--spring transaction-->
  65. </dependency>
  66. <!-- beans -->
  67. <dependency>
  68. <groupId>org.springframework</groupId>
  69. <artifactId>spring-beans</artifactId>
  70. </dependency>
  71. <!-- aop -->
  72. <dependency>
  73. <groupId>org.springframework</groupId>
  74. <artifactId>spring-aop</artifactId>
  75. </dependency>
  76. <!-- webmvc -->
  77. <dependency>
  78. <groupId>org.springframework</groupId>
  79. <artifactId>spring-webmvc</artifactId>
  80. </dependency>
  81. <!-- web -->
  82. <dependency>
  83. <groupId>org.springframework</groupId>
  84. <artifactId>spring-web</artifactId>
  85. </dependency>
  86. <!--<dependency>-->
  87. <!--<groupId>com.elab.core</groupId>-->
  88. <!--<artifactId>elab-db</artifactId>-->
  89. <!--<version>${project.version}</version>-->
  90. <!--</dependency>-->
  91. <dependency>
  92. <groupId>javax.validation</groupId>
  93. <artifactId>validation-api</artifactId>
  94. <scope>compile</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>io.springfox</groupId>
  98. <artifactId>springfox-swagger2</artifactId>
  99. <scope>compile</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>io.springfox</groupId>
  103. <artifactId>springfox-swagger-ui</artifactId>
  104. <scope>compile</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>javax.validation</groupId>
  108. <artifactId>validation-api</artifactId>
  109. <scope>compile</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.hibernate</groupId>
  113. <artifactId>hibernate-validator</artifactId>
  114. <scope>compile</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.junit.jupiter</groupId>
  118. <artifactId>junit-jupiter-api</artifactId>
  119. <version>RELEASE</version>
  120. <scope>test</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>junit</groupId>
  124. <artifactId>junit</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>junit</groupId>
  128. <artifactId>junit</artifactId>
  129. <scope>test</scope>
  130. </dependency>
  131. <!--<dependency>-->
  132. <!--<groupId>ch.qos.logback</groupId>-->
  133. <!--<artifactId>logback-classic</artifactId>-->
  134. <!--<version>1.2.3</version>-->
  135. <!--<scope>provided</scope>-->
  136. <!--</dependency>-->
  137. </dependencies>
  138. <distributionManagement>
  139. <!--<repository>-->
  140. <!--<id>releases</id>-->
  141. <!--<name>Nexus Release Repository</name>-->
  142. <!--<url>http://192.168.0.11:8081/nexus/content/repositories/elab/</url>-->
  143. <!--</repository>-->
  144. <snapshotRepository>
  145. <id>snapshots</id>
  146. <name>User Project SNAPSHOTS</name>
  147. <url>http://192.168.0.11:8081/nexus/content/repositories/snapshots/</url>
  148. </snapshotRepository>
  149. </distributionManagement>
  150. </project>