1
0

pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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.5.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.nju.edu</groupId>
  12. <artifactId>eval</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>eval</name>
  15. <description>Eval system for seecoder</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-data-jpa</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>mysql</groupId>
  30. <artifactId>mysql-connector-java</artifactId>
  31. <version>8.0.18</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-devtools</artifactId>
  36. <optional>true</optional>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. <optional>true</optional>
  42. <version>1.18.10</version>
  43. </dependency>
  44. <!--swagger-->
  45. <dependency>
  46. <groupId>io.springfox</groupId>
  47. <artifactId>springfox-boot-starter</artifactId>
  48. <version>3.0.0</version>
  49. </dependency>
  50. <!-- aop -->
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-aop</artifactId>
  54. <version>2.3.5.RELEASE</version>
  55. </dependency>
  56. <!-- jwt -->
  57. <dependency>
  58. <groupId>com.auth0</groupId>
  59. <artifactId>java-jwt</artifactId>
  60. <version>3.11.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>io.jsonwebtoken</groupId>
  64. <artifactId>jjwt</artifactId>
  65. <version>0.9.1</version>
  66. </dependency>
  67. <!-- validation -->
  68. <dependency>
  69. <groupId>javax.validation</groupId>
  70. <artifactId>validation-api</artifactId>
  71. <version>2.0.1.Final</version>
  72. </dependency>
  73. <!-- 字符串工具类 -->
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-text</artifactId>
  77. <version>1.9</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.alibaba</groupId>
  81. <artifactId>fastjson</artifactId>
  82. <version>1.2.75</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.zalando</groupId>
  86. <artifactId>problem-spring-web</artifactId>
  87. <version>0.23.0</version>
  88. </dependency>
  89. <!--第三方知识点库-->
  90. <!-- <dependency>-->
  91. <!-- <groupId>cn.seecoder</groupId>-->
  92. <!-- <artifactId>seecoder-bok</artifactId>-->
  93. <!-- <version>0.1.2</version>-->
  94. <!-- </dependency>-->
  95. <dependency>
  96. <groupId>cn.seecoder</groupId>
  97. <artifactId>seecoder-bok-client</artifactId>
  98. <version>0.2.3</version>
  99. <exclusions>
  100. <exclusion>
  101. <groupId>org.apache.logging.log4j</groupId>
  102. <artifactId>log4j-slf4j-impl</artifactId>
  103. </exclusion>
  104. </exclusions>
  105. </dependency>
  106. <dependency>
  107. <groupId>cn.seecoder</groupId>
  108. <artifactId>seecoder-bok-common</artifactId>
  109. <version>0.2.3</version>
  110. </dependency>
  111. <!--客观题评测-->
  112. <dependency>
  113. <groupId>cn.seecoder</groupId>
  114. <artifactId>judgement-common</artifactId>
  115. <version>0.2.0</version>
  116. <scope>compile</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>cn.seecoder</groupId>
  120. <artifactId>judgement-client</artifactId>
  121. <version>0.2.0</version>
  122. <exclusions>
  123. <exclusion>
  124. <groupId>org.apache.logging.log4j</groupId>
  125. <artifactId>log4j-slf4j-impl</artifactId>
  126. </exclusion>
  127. </exclusions>
  128. </dependency>
  129. <!--代码题评测-->
  130. <dependency>
  131. <groupId>cn.seecoder</groupId>
  132. <artifactId>codejudge-client</artifactId>
  133. <version>0.2.0</version>
  134. <exclusions>
  135. <exclusion>
  136. <groupId>org.apache.logging.log4j</groupId>
  137. <artifactId>log4j-slf4j-impl</artifactId>
  138. </exclusion>
  139. </exclusions>
  140. </dependency>
  141. <!--日志服务-->
  142. <dependency>
  143. <groupId>com.nju.edu</groupId>
  144. <artifactId>seecoder-logTracking-client</artifactId>
  145. <version>0.1.0</version>
  146. <exclusions>
  147. <exclusion>
  148. <groupId>org.slf4j</groupId>
  149. <artifactId>slf4j-log4j12</artifactId>
  150. </exclusion>
  151. </exclusions>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.slf4j</groupId>
  155. <artifactId>slf4j-api</artifactId>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.springframework.boot</groupId>
  159. <artifactId>spring-boot-starter-test</artifactId>
  160. <scope>test</scope>
  161. <exclusions>
  162. <exclusion>
  163. <groupId>org.junit.vintage</groupId>
  164. <artifactId>junit-vintage-engine</artifactId>
  165. </exclusion>
  166. </exclusions>
  167. </dependency>
  168. </dependencies>
  169. <build>
  170. <plugins>
  171. <plugin>
  172. <groupId>org.springframework.boot</groupId>
  173. <artifactId>spring-boot-maven-plugin</artifactId>
  174. </plugin>
  175. <plugin>
  176. <groupId>org.springframework.boot</groupId>
  177. <artifactId>spring-boot-maven-plugin</artifactId>
  178. <configuration>
  179. <fork>true</fork>
  180. <addResources>true</addResources>
  181. </configuration>
  182. </plugin>
  183. </plugins>
  184. </build>
  185. <repositories>
  186. <repository>
  187. <id>nexus</id>
  188. <url>http://nexus.seecoder.cn/repository/maven-releases/</url>
  189. <releases>
  190. <enabled>true</enabled>
  191. <updatePolicy>always</updatePolicy>
  192. </releases>
  193. <snapshots>
  194. <enabled>false</enabled>
  195. </snapshots>
  196. </repository>
  197. </repositories>
  198. <distributionManagement>
  199. <repository>
  200. <id>nexus</id>
  201. <url>http://nexus.seecoder.cn/repository/maven-releases/</url>
  202. </repository>
  203. </distributionManagement>
  204. </project>