1
0

pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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>org.projectlombok</groupId>
  23. <artifactId>lombok</artifactId>
  24. <version>1.18.4</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.nju.edu</groupId>
  28. <artifactId>seecoder-gitlab-client</artifactId>
  29. <!-- 这个包引入的log产生了绑定冲突,所以排除掉 -->
  30. <exclusions>
  31. <exclusion>
  32. <groupId>org.apache.logging.log4j</groupId>
  33. <artifactId>log4j-slf4j-impl</artifactId>
  34. </exclusion>
  35. </exclusions>
  36. <version>0.1.0</version>
  37. </dependency>
  38. <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
  39. <dependency>
  40. <groupId>org.eclipse.jgit</groupId>
  41. <artifactId>org.eclipse.jgit</artifactId>
  42. <version>5.9.0.202009080501-r</version>
  43. </dependency>
  44. <!-- Api Dependencies -->
  45. <!-- use guava-20.0 to solve the dependency conflict between jenkins-client and docker-client -->
  46. <dependency>
  47. <groupId>com.google.guava</groupId>
  48. <artifactId>guava</artifactId>
  49. <version>20.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.spotify</groupId>
  53. <artifactId>docker-client</artifactId>
  54. <version>8.16.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-configuration-processor</artifactId>
  59. <optional>true</optional>
  60. </dependency>
  61. <!-- Hibernate Dependencies -->
  62. <dependency>
  63. <groupId>org.hibernate.validator</groupId>
  64. <artifactId>hibernate-validator</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>javax.validation</groupId>
  68. <artifactId>validation-api</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>cn.seecoder</groupId>
  72. <artifactId>seecoder-devcloud-common</artifactId>
  73. <version>0.1.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.projectlombok</groupId>
  77. <artifactId>lombok</artifactId>
  78. </dependency>
  79. <!-- https://mvnrepository.com/artifact/io.kubernetes/client-java -->
  80. <dependency>
  81. <groupId>io.kubernetes</groupId>
  82. <artifactId>client-java</artifactId>
  83. <version>10.0.0</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-data-jpa</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. </project>