pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>api</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <name>dev-cloud-api</name>
  9. <description>Demo project for Spring Boot</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.3.7.RELEASE</spring-boot.version>
  15. </properties>
  16. <parent>
  17. <artifactId>parent</artifactId>
  18. <groupId>seecoder.devcloud</groupId>
  19. <version>0.0.1-SNAPSHOT</version>
  20. </parent>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.nju.edu</groupId>
  24. <artifactId>seecoder-gitlab-client</artifactId>
  25. <version>0.1.0</version>
  26. </dependency>
  27. <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
  28. <dependency>
  29. <groupId>org.eclipse.jgit</groupId>
  30. <artifactId>org.eclipse.jgit</artifactId>
  31. <version>5.9.0.202009080501-r</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-data-jpa</artifactId>
  36. </dependency>
  37. <!-- Api Dependencies -->
  38. <!-- use guava-20.0 to solve the dependency conflict between jenkins-client and docker-client -->
  39. <dependency>
  40. <groupId>com.google.guava</groupId>
  41. <artifactId>guava</artifactId>
  42. <version>20.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.spotify</groupId>
  46. <artifactId>docker-client</artifactId>
  47. <version>8.16.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-configuration-processor</artifactId>
  52. <optional>true</optional>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.gitlab4j</groupId>
  56. <artifactId>gitlab4j-api</artifactId>
  57. <version>4.15.7</version>
  58. <!-- <version>4.8.7</version>-->
  59. </dependency>
  60. <dependency>
  61. <groupId>com.offbytwo.jenkins</groupId>
  62. <artifactId>jenkins-client</artifactId>
  63. <version>0.3.8</version>
  64. </dependency>
  65. <!-- Hibernate Dependencies -->
  66. <dependency>
  67. <groupId>org.hibernate.validator</groupId>
  68. <artifactId>hibernate-validator</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>javax.validation</groupId>
  72. <artifactId>validation-api</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>seecoder.devcloud</groupId>
  76. <artifactId>common</artifactId>
  77. <version>0.0.1-SNAPSHOT</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-logging</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.projectlombok</groupId>
  85. <artifactId>lombok</artifactId>
  86. </dependency>
  87. <!-- https://mvnrepository.com/artifact/io.kubernetes/client-java -->
  88. <dependency>
  89. <groupId>io.kubernetes</groupId>
  90. <artifactId>client-java</artifactId>
  91. <version>10.0.0</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-web</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-tomcat</artifactId>
  100. <scope>provided</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-starter-test</artifactId>
  105. <scope>test</scope>
  106. <exclusions>
  107. <exclusion>
  108. <groupId>org.junit.vintage</groupId>
  109. <artifactId>junit-vintage-engine</artifactId>
  110. </exclusion>
  111. </exclusions>
  112. </dependency>
  113. </dependencies>
  114. <dependencyManagement>
  115. <dependencies>
  116. <dependency>
  117. <groupId>org.springframework.boot</groupId>
  118. <artifactId>spring-boot-dependencies</artifactId>
  119. <version>${spring-boot.version}</version>
  120. <type>pom</type>
  121. <scope>import</scope>
  122. </dependency>
  123. </dependencies>
  124. </dependencyManagement>
  125. <build>
  126. <plugins>
  127. <plugin>
  128. <groupId>org.apache.maven.plugins</groupId>
  129. <artifactId>maven-compiler-plugin</artifactId>
  130. <version>3.8.1</version>
  131. <configuration>
  132. <source>1.8</source>
  133. <target>1.8</target>
  134. <encoding>UTF-8</encoding>
  135. </configuration>
  136. </plugin>
  137. <plugin>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-maven-plugin</artifactId>
  140. <version>2.3.7.RELEASE</version>
  141. <configuration>
  142. <excludes>
  143. <exclude>
  144. <groupId>org.springframework.boot</groupId>
  145. <artifactId>spring-boot-configuration-processor</artifactId>
  146. </exclude>
  147. </excludes>
  148. </configuration>
  149. <executions>
  150. <execution>
  151. <id>repackage</id>
  152. <goals>
  153. <goal>repackage</goal>
  154. </goals>
  155. </execution>
  156. </executions>
  157. </plugin>
  158. </plugins>
  159. </build>
  160. </project>