pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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>seecoder-devcloud-api</artifactId>
  6. <version>0.1.0</version>
  7. <build>
  8. <plugins>
  9. <plugin>
  10. <groupId>org.apache.maven.plugins</groupId>
  11. <artifactId>maven-compiler-plugin</artifactId>
  12. <configuration>
  13. <source>8</source>
  14. <target>8</target>
  15. </configuration>
  16. </plugin>
  17. </plugins>
  18. </build>
  19. <packaging>jar</packaging>
  20. <description>Demo project for Spring Boot</description>
  21. <properties>
  22. <java.version>1.8</java.version>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  25. <spring-boot.version>2.3.7.RELEASE</spring-boot.version>
  26. </properties>
  27. <parent>
  28. <artifactId>seecoder-devcloud-parent</artifactId>
  29. <groupId>cn.seecoder</groupId>
  30. <version>0.1.0</version>
  31. </parent>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. <version>1.18.4</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.nju.edu</groupId>
  40. <artifactId>seecoder-gitlab-client</artifactId>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
  43. <dependency>
  44. <groupId>org.eclipse.jgit</groupId>
  45. <artifactId>org.eclipse.jgit</artifactId>
  46. <version>5.9.0.202009080501-r</version>
  47. </dependency>
  48. <!-- Api Dependencies -->
  49. <!-- use guava-20.0 to solve the dependency conflict between jenkins-client and docker-client -->
  50. <dependency>
  51. <groupId>com.google.guava</groupId>
  52. <artifactId>guava</artifactId>
  53. <version>20.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.spotify</groupId>
  57. <artifactId>docker-client</artifactId>
  58. <version>8.16.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-configuration-processor</artifactId>
  63. <optional>true</optional>
  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>cn.seecoder</groupId>
  76. <artifactId>seecoder-devcloud-common</artifactId>
  77. <version>0.1.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.projectlombok</groupId>
  81. <artifactId>lombok</artifactId>
  82. </dependency>
  83. <!-- https://mvnrepository.com/artifact/io.kubernetes/client-java -->
  84. <dependency>
  85. <groupId>io.kubernetes</groupId>
  86. <artifactId>client-java</artifactId>
  87. <version>10.0.0</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-data-jpa</artifactId>
  92. <scope>provided</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-test</artifactId>
  97. <scope>test</scope>
  98. <exclusions>
  99. <exclusion>
  100. <groupId>org.junit.vintage</groupId>
  101. <artifactId>junit-vintage-engine</artifactId>
  102. </exclusion>
  103. </exclusions>
  104. </dependency>
  105. </dependencies>
  106. <dependencyManagement>
  107. <dependencies>
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-dependencies</artifactId>
  111. <version>${spring-boot.version}</version>
  112. <type>pom</type>
  113. <scope>import</scope>
  114. </dependency>
  115. </dependencies>
  116. </dependencyManagement>
  117. </project>