pom.xml 5.1 KB

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