pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. <!-- 这个包引入的log产生了绑定冲突,所以排除掉 -->
  42. <exclusions>
  43. <exclusion>
  44. <groupId>org.apache.logging.log4j</groupId>
  45. <artifactId>log4j-slf4j-impl</artifactId>
  46. </exclusion>
  47. </exclusions>
  48. <version>0.1.2</version>
  49. </dependency>
  50. <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
  51. <dependency>
  52. <groupId>org.eclipse.jgit</groupId>
  53. <artifactId>org.eclipse.jgit</artifactId>
  54. <version>5.9.0.202009080501-r</version>
  55. </dependency>
  56. <!-- Api Dependencies -->
  57. <!-- use guava-20.0 to solve the dependency conflict between jenkins-client and docker-client -->
  58. <dependency>
  59. <groupId>com.google.guava</groupId>
  60. <artifactId>guava</artifactId>
  61. <version>20.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.spotify</groupId>
  65. <artifactId>docker-client</artifactId>
  66. <version>8.16.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-configuration-processor</artifactId>
  71. <optional>true</optional>
  72. </dependency>
  73. <!-- Hibernate Dependencies -->
  74. <dependency>
  75. <groupId>org.hibernate.validator</groupId>
  76. <artifactId>hibernate-validator</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>javax.validation</groupId>
  80. <artifactId>validation-api</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>cn.seecoder</groupId>
  84. <artifactId>seecoder-devcloud-common</artifactId>
  85. <version>0.1.0</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.projectlombok</groupId>
  89. <artifactId>lombok</artifactId>
  90. </dependency>
  91. <!-- https://mvnrepository.com/artifact/io.kubernetes/client-java -->
  92. <dependency>
  93. <groupId>io.kubernetes</groupId>
  94. <artifactId>client-java</artifactId>
  95. <version>10.0.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-data-jpa</artifactId>
  100. <scope>provided</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-starter-test</artifactId>
  105. <scope>test</scope>
  106. <exclusions>
  107. <exclusion>
  108. <groupId>org.junit.vintage</groupId>
  109. <artifactId>junit-vintage-engine</artifactId>
  110. </exclusion>
  111. </exclusions>
  112. </dependency>
  113. </dependencies>
  114. <dependencyManagement>
  115. <dependencies>
  116. <dependency>
  117. <groupId>org.springframework.boot</groupId>
  118. <artifactId>spring-boot-dependencies</artifactId>
  119. <version>${spring-boot.version}</version>
  120. <type>pom</type>
  121. <scope>import</scope>
  122. </dependency>
  123. </dependencies>
  124. </dependencyManagement>
  125. </project>