pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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.2.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>subject-center</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>subject-center</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <spring-cloud.version>Hoxton.SR6</spring-cloud.version>
  19. </properties>
  20. <dependencies>
  21. <!-- spring boot web -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <!-- eureka client -->
  27. <dependency>
  28. <groupId>org.springframework.cloud</groupId>
  29. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.alibaba</groupId>
  33. <artifactId>fastjson</artifactId>
  34. <version>1.2.60</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-test</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-data-jpa</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>mysql</groupId>
  47. <artifactId>mysql-connector-java</artifactId>
  48. <scope>runtime</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.projectlombok</groupId>
  52. <artifactId>lombok</artifactId>
  53. <optional>true</optional>
  54. </dependency>
  55. <dependency>
  56. <groupId>javax.validation</groupId>
  57. <artifactId>validation-api</artifactId>
  58. <version>1.1.0.Final</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.hibernate</groupId>
  62. <artifactId>hibernate-validator</artifactId>
  63. <version>5.4.1.Final</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.vladmihalcea</groupId>
  67. <artifactId>hibernate-types-52</artifactId>
  68. <version>2.9.5</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>cn.seecoder</groupId>
  72. <artifactId>seecoder-bok-common</artifactId>
  73. <version>RELEASE</version>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>cn.seecoder</groupId>
  78. <artifactId>seecoder-bok-client</artifactId>
  79. <version>RELEASE</version>
  80. <scope>compile</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>cn.seecoder</groupId>
  84. <artifactId>judgement-client</artifactId>
  85. <version>0.2.0</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>cn.seecoder</groupId>
  89. <artifactId>judgement-common</artifactId>
  90. <version>0.2.0</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.github.docker-java</groupId>
  94. <artifactId>docker-java</artifactId>
  95. <version>3.2.7</version>
  96. </dependency>
  97. </dependencies>
  98. <dependencyManagement>
  99. <dependencies>
  100. <dependency>
  101. <groupId>org.springframework.cloud</groupId>
  102. <artifactId>spring-cloud-dependencies</artifactId>
  103. <version>${spring-cloud.version}</version>
  104. <type>pom</type>
  105. <scope>import</scope>
  106. </dependency>
  107. </dependencies>
  108. </dependencyManagement>
  109. <build>
  110. <plugins>
  111. <plugin>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-maven-plugin</artifactId>
  114. </plugin>
  115. </plugins>
  116. </build>
  117. <repositories>
  118. <repository>
  119. <id>spring-milestones</id>
  120. <name>Spring Milestones</name>
  121. <url>https://repo.spring.io/milestone</url>
  122. </repository>
  123. </repositories>
  124. </project>