pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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.2</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>cn.seecoder</groupId>
  102. <artifactId>seecoder-bok-common</artifactId>
  103. <version>0.2.2</version>
  104. </dependency>
  105. <!--客观题评测-->
  106. <dependency>
  107. <groupId>cn.seecoder</groupId>
  108. <artifactId>judgement-common</artifactId>
  109. <version>0.2.0</version>
  110. <scope>compile</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>cn.seecoder</groupId>
  114. <artifactId>judgement-client</artifactId>
  115. <version>0.2.0</version>
  116. </dependency>
  117. <!--代码题评测-->
  118. <dependency>
  119. <groupId>cn.seecoder</groupId>
  120. <artifactId>codejudge-client</artifactId>
  121. <version>0.1.0</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-starter-test</artifactId>
  126. <scope>test</scope>
  127. <exclusions>
  128. <exclusion>
  129. <groupId>org.junit.vintage</groupId>
  130. <artifactId>junit-vintage-engine</artifactId>
  131. </exclusion>
  132. </exclusions>
  133. </dependency>
  134. </dependencies>
  135. <build>
  136. <plugins>
  137. <plugin>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-maven-plugin</artifactId>
  140. </plugin>
  141. <plugin>
  142. <groupId>org.springframework.boot</groupId>
  143. <artifactId>spring-boot-maven-plugin</artifactId>
  144. <configuration>
  145. <fork>true</fork>
  146. <addResources>true</addResources>
  147. </configuration>
  148. </plugin>
  149. </plugins>
  150. </build>
  151. <repositories>
  152. <repository>
  153. <id>nexus</id>
  154. <url>>http://nexus.seecoder.cn/repository/maven-releases/</url>
  155. <releases>
  156. <enabled>true</enabled>
  157. <updatePolicy>always</updatePolicy>
  158. </releases>
  159. <snapshots>
  160. <enabled>false</enabled>
  161. </snapshots>
  162. </repository>
  163. </repositories>
  164. <distributionManagement>
  165. <repository>
  166. <id>nexus</id>
  167. <url>http://nexus.seecoder.cn/repository/maven-releases/</url>
  168. </repository>
  169. </distributionManagement>
  170. </project>