pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. <packaging>jar</packaging>
  8. <description>Demo project for Spring Boot</description>
  9. <properties>
  10. <java.version>1.8</java.version>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  13. <spring-boot.version>2.3.7.RELEASE</spring-boot.version>
  14. </properties>
  15. <parent>
  16. <artifactId>seecoder-devcloud-parent</artifactId>
  17. <groupId>cn.seecoder</groupId>
  18. <version>0.1.0</version>
  19. </parent>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.nju.edu</groupId>
  23. <artifactId>seecoder-gitlab-client</artifactId>
  24. <!-- 这个包引入的log产生了绑定冲突,所以排除掉 -->
  25. <exclusions>
  26. <exclusion>
  27. <groupId>org.apache.logging.log4j</groupId>
  28. <artifactId>log4j-slf4j-impl</artifactId>
  29. </exclusion>
  30. </exclusions>
  31. <version>0.1.0</version>
  32. </dependency>
  33. <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
  34. <dependency>
  35. <groupId>org.eclipse.jgit</groupId>
  36. <artifactId>org.eclipse.jgit</artifactId>
  37. <version>5.9.0.202009080501-r</version>
  38. </dependency>
  39. <!-- Api Dependencies -->
  40. <!-- use guava-20.0 to solve the dependency conflict between jenkins-client and docker-client -->
  41. <dependency>
  42. <groupId>com.google.guava</groupId>
  43. <artifactId>guava</artifactId>
  44. <version>20.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.spotify</groupId>
  48. <artifactId>docker-client</artifactId>
  49. <version>8.16.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-configuration-processor</artifactId>
  54. <optional>true</optional>
  55. </dependency>
  56. <!-- Hibernate Dependencies -->
  57. <dependency>
  58. <groupId>org.hibernate.validator</groupId>
  59. <artifactId>hibernate-validator</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>javax.validation</groupId>
  63. <artifactId>validation-api</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>cn.seecoder</groupId>
  67. <artifactId>seecoder-devcloud-common</artifactId>
  68. <version>0.1.0</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.projectlombok</groupId>
  72. <artifactId>lombok</artifactId>
  73. </dependency>
  74. <!-- https://mvnrepository.com/artifact/io.kubernetes/client-java -->
  75. <dependency>
  76. <groupId>io.kubernetes</groupId>
  77. <artifactId>client-java</artifactId>
  78. <version>10.0.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-data-jpa</artifactId>
  83. <scope>provided</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-test</artifactId>
  88. <scope>test</scope>
  89. <exclusions>
  90. <exclusion>
  91. <groupId>org.junit.vintage</groupId>
  92. <artifactId>junit-vintage-engine</artifactId>
  93. </exclusion>
  94. </exclusions>
  95. </dependency>
  96. </dependencies>
  97. <dependencyManagement>
  98. <dependencies>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-dependencies</artifactId>
  102. <version>${spring-boot.version}</version>
  103. <type>pom</type>
  104. <scope>import</scope>
  105. </dependency>
  106. </dependencies>
  107. </dependencyManagement>
  108. </project>