1
0

pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.4.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>cn.seecoder</groupId>
  12. <artifactId>seecoder-paas</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>seecoder-paas</name>
  15. <description>seecoder paas platform</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <finalName>${project.artifactId}-${project.version}</finalName>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-data-jpa</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>mysql</groupId>
  27. <artifactId>mysql-connector-java</artifactId>
  28. <scope>runtime</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-security</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-validation</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-configuration-processor</artifactId>
  45. <optional>true</optional>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.projectlombok</groupId>
  49. <artifactId>lombok</artifactId>
  50. <optional>true</optional>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-test</artifactId>
  55. <scope>test</scope>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>org.junit.vintage</groupId>
  59. <artifactId>junit-vintage-engine</artifactId>
  60. </exclusion>
  61. </exclusions>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.security</groupId>
  65. <artifactId>spring-security-test</artifactId>
  66. <scope>test</scope>
  67. </dependency>
  68. <!-- https://mvnrepository.com/artifact/com.spotify/docker-client -->
  69. <dependency>
  70. <groupId>com.spotify</groupId>
  71. <artifactId>docker-client</artifactId>
  72. <version>8.16.0</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.glassfish.jersey.inject</groupId>
  76. <artifactId>jersey-hk2</artifactId>
  77. <version>2.26</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.glassfish.jersey.bundles.repackaged</groupId>
  81. <artifactId>jersey-guava</artifactId>
  82. <version>2.25.1</version>
  83. </dependency>
  84. <!-- https://mvnrepository.com/artifact/io.kubernetes/client-java -->
  85. <dependency>
  86. <groupId>io.kubernetes</groupId>
  87. <artifactId>client-java</artifactId>
  88. <version>10.0.0</version>
  89. </dependency>
  90. <!-- https://mvnrepository.com/artifact/io.fabric8/kubernetes-client -->
  91. <dependency>
  92. <groupId>io.fabric8</groupId>
  93. <artifactId>kubernetes-client</artifactId>
  94. <version>5.0.0</version>
  95. </dependency>
  96. <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
  97. <dependency>
  98. <groupId>org.eclipse.jgit</groupId>
  99. <artifactId>org.eclipse.jgit</artifactId>
  100. <version>5.9.0.202009080501-r</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>io.jsonwebtoken</groupId>
  104. <artifactId>jjwt</artifactId>
  105. <version>0.9.0</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-starter-websocket</artifactId>
  110. </dependency>
  111. </dependencies>
  112. <build>
  113. <finalName>${finalName}</finalName>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-maven-plugin</artifactId>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.hibernate.orm.tooling</groupId>
  121. <artifactId>hibernate-enhance-maven-plugin</artifactId>
  122. <version>${hibernate.version}</version>
  123. <executions>
  124. <execution>
  125. <configuration>
  126. <failOnError>true</failOnError>
  127. <enableLazyInitialization>true</enableLazyInitialization>
  128. </configuration>
  129. <goals>
  130. <goal>enhance</goal>
  131. </goals>
  132. </execution>
  133. </executions>
  134. </plugin>
  135. </plugins>
  136. </build>
  137. </project>