pom.xml 5.3 KB

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