1
0

pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
  23. <dependency>
  24. <groupId>org.eclipse.jgit</groupId>
  25. <artifactId>org.eclipse.jgit</artifactId>
  26. <version>5.9.0.202009080501-r</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-data-jpa</artifactId>
  31. </dependency>
  32. <!-- Api Dependencies -->
  33. <!-- use guava-20.0 to solve the dependency conflict between jenkins-client and docker-client -->
  34. <dependency>
  35. <groupId>com.google.guava</groupId>
  36. <artifactId>guava</artifactId>
  37. <version>20.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.spotify</groupId>
  41. <artifactId>docker-client</artifactId>
  42. <version>8.16.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-configuration-processor</artifactId>
  47. <optional>true</optional>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.gitlab4j</groupId>
  51. <artifactId>gitlab4j-api</artifactId>
  52. <version>4.15.7</version>
  53. <!-- <version>4.8.7</version>-->
  54. </dependency>
  55. <dependency>
  56. <groupId>com.offbytwo.jenkins</groupId>
  57. <artifactId>jenkins-client</artifactId>
  58. <version>0.3.8</version>
  59. </dependency>
  60. <!-- Hibernate Dependencies -->
  61. <dependency>
  62. <groupId>org.hibernate.validator</groupId>
  63. <artifactId>hibernate-validator</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>javax.validation</groupId>
  67. <artifactId>validation-api</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>seecoder.devcloud</groupId>
  71. <artifactId>common</artifactId>
  72. <version>0.0.1-SNAPSHOT</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-logging</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.projectlombok</groupId>
  80. <artifactId>lombok</artifactId>
  81. </dependency>
  82. <!-- https://mvnrepository.com/artifact/io.kubernetes/client-java -->
  83. <dependency>
  84. <groupId>io.kubernetes</groupId>
  85. <artifactId>client-java</artifactId>
  86. <version>10.0.0</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-starter-web</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-tomcat</artifactId>
  95. <scope>provided</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-test</artifactId>
  100. <scope>test</scope>
  101. <exclusions>
  102. <exclusion>
  103. <groupId>org.junit.vintage</groupId>
  104. <artifactId>junit-vintage-engine</artifactId>
  105. </exclusion>
  106. </exclusions>
  107. </dependency>
  108. </dependencies>
  109. <dependencyManagement>
  110. <dependencies>
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-dependencies</artifactId>
  114. <version>${spring-boot.version}</version>
  115. <type>pom</type>
  116. <scope>import</scope>
  117. </dependency>
  118. </dependencies>
  119. </dependencyManagement>
  120. <build>
  121. <plugins>
  122. <plugin>
  123. <groupId>org.apache.maven.plugins</groupId>
  124. <artifactId>maven-compiler-plugin</artifactId>
  125. <version>3.8.1</version>
  126. <configuration>
  127. <source>1.8</source>
  128. <target>1.8</target>
  129. <encoding>UTF-8</encoding>
  130. </configuration>
  131. </plugin>
  132. <plugin>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot-maven-plugin</artifactId>
  135. <version>2.3.7.RELEASE</version>
  136. <executions>
  137. <execution>
  138. <id>repackage</id>
  139. <goals>
  140. <goal>repackage</goal>
  141. </goals>
  142. </execution>
  143. </executions>
  144. </plugin>
  145. </plugins>
  146. </build>
  147. </project>