pom.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>cn.seecoder</groupId>
  7. <artifactId>seecoder-devcloud-parent</artifactId>
  8. <version>0.1.0</version>
  9. <packaging>pom</packaging>
  10. <name>seecoder-devcloud</name>
  11. <description>Seecoder DevCloud backend</description>
  12. <modules>
  13. <module>common</module>
  14. <module>web</module>
  15. </modules>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <spring-boot.version>2.3.4.RELEASE</spring-boot.version>
  21. <lombok.version>1.18.32</lombok.version>
  22. <mybatis-spring-boot.version>2.1.4</mybatis-spring-boot.version>
  23. <springfox.version>2.5.0</springfox.version>
  24. <fastjson.version>1.2.47</fastjson.version>
  25. <json-lib.version>2.4</json-lib.version>
  26. <jjwt.version>0.11.2</jjwt.version>
  27. <joda-time.version>2.9.3</joda-time.version>
  28. <jgit.version>5.9.0.202009080501-r</jgit.version>
  29. <guava.version>20.0</guava.version>
  30. <docker-client.version>8.16.0</docker-client.version>
  31. <kubernetes-client.version>10.0.0</kubernetes-client.version>
  32. <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
  33. <spring-boot-maven-plugin.version>${spring-boot.version}</spring-boot-maven-plugin.version>
  34. </properties>
  35. <dependencyManagement>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-dependencies</artifactId>
  40. <version>${spring-boot.version}</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.projectlombok</groupId>
  46. <artifactId>lombok</artifactId>
  47. <version>${lombok.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.mybatis.spring.boot</groupId>
  51. <artifactId>mybatis-spring-boot-starter</artifactId>
  52. <version>${mybatis-spring-boot.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.mybatis.spring.boot</groupId>
  56. <artifactId>mybatis-spring-boot-starter-test</artifactId>
  57. <version>${mybatis-spring-boot.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.springfox</groupId>
  61. <artifactId>springfox-swagger2</artifactId>
  62. <version>${springfox.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.springfox</groupId>
  66. <artifactId>springfox-swagger-ui</artifactId>
  67. <version>${springfox.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.alibaba</groupId>
  71. <artifactId>fastjson</artifactId>
  72. <version>${fastjson.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>net.sf.json-lib</groupId>
  76. <artifactId>json-lib</artifactId>
  77. <version>${json-lib.version}</version>
  78. <classifier>jdk15</classifier>
  79. </dependency>
  80. <dependency>
  81. <groupId>io.jsonwebtoken</groupId>
  82. <artifactId>jjwt-api</artifactId>
  83. <version>${jjwt.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>io.jsonwebtoken</groupId>
  87. <artifactId>jjwt-impl</artifactId>
  88. <version>${jjwt.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>io.jsonwebtoken</groupId>
  92. <artifactId>jjwt-jackson</artifactId>
  93. <version>${jjwt.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>joda-time</groupId>
  97. <artifactId>joda-time</artifactId>
  98. <version>${joda-time.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.nju.edu</groupId>
  102. <artifactId>seecoder-gitlab-client</artifactId>
  103. <version>0.1.8</version>
  104. <exclusions>
  105. <exclusion>
  106. <groupId>org.apache.logging.log4j</groupId>
  107. <artifactId>log4j-slf4j-impl</artifactId>
  108. </exclusion>
  109. </exclusions>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.eclipse.jgit</groupId>
  113. <artifactId>org.eclipse.jgit</artifactId>
  114. <version>${jgit.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.google.guava</groupId>
  118. <artifactId>guava</artifactId>
  119. <version>${guava.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.spotify</groupId>
  123. <artifactId>docker-client</artifactId>
  124. <version>${docker-client.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>io.kubernetes</groupId>
  128. <artifactId>client-java</artifactId>
  129. <version>${kubernetes-client.version}</version>
  130. </dependency>
  131. </dependencies>
  132. </dependencyManagement>
  133. <distributionManagement>
  134. <repository>
  135. <id>nexus</id>
  136. <url>http://nexus.seecoder.cn/repository/maven-releases</url>
  137. </repository>
  138. </distributionManagement>
  139. <build>
  140. <pluginManagement>
  141. <plugins>
  142. <plugin>
  143. <groupId>org.apache.maven.plugins</groupId>
  144. <artifactId>maven-compiler-plugin</artifactId>
  145. <version>${maven-compiler-plugin.version}</version>
  146. <configuration>
  147. <source>${java.version}</source>
  148. <target>${java.version}</target>
  149. <encoding>${project.build.sourceEncoding}</encoding>
  150. <annotationProcessorPaths>
  151. <path>
  152. <groupId>org.projectlombok</groupId>
  153. <artifactId>lombok</artifactId>
  154. <version>${lombok.version}</version>
  155. </path>
  156. </annotationProcessorPaths>
  157. </configuration>
  158. </plugin>
  159. <plugin>
  160. <groupId>org.springframework.boot</groupId>
  161. <artifactId>spring-boot-maven-plugin</artifactId>
  162. <version>${spring-boot-maven-plugin.version}</version>
  163. </plugin>
  164. </plugins>
  165. </pluginManagement>
  166. </build>
  167. </project>