pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. <packaging>pom</packaging>
  6. <modules>
  7. <module>judgement-client</module>
  8. <module>judgement-server</module>
  9. <module>judgement-common</module>
  10. <module>codejudge-client</module>
  11. </modules>
  12. <parent>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-parent</artifactId>
  15. <version>2.4.1</version>
  16. <relativePath/> <!-- lookup parent from repository -->
  17. </parent>
  18. <groupId>cn.seecoder</groupId>
  19. <artifactId>judgement</artifactId>
  20. <version>0.2.0</version>
  21. <name>judgement</name>
  22. <description>Demo project for Spring Boot</description>
  23. <properties>
  24. <java.version>1.8</java.version>
  25. <judgement-version>0.2.0</judgement-version>
  26. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter</artifactId>
  31. <exclusions>
  32. <exclusion>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-logging</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-validation</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.projectlombok</groupId>
  49. <artifactId>lombok</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.squareup.okhttp3</groupId>
  53. <artifactId>okhttp</artifactId>
  54. <version>4.8.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.seecoder</groupId>
  58. <artifactId>seecoder-bok-client</artifactId>
  59. <version>0.2.3</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.seecoder</groupId>
  63. <artifactId>seecoder-bok-common</artifactId>
  64. <version>0.2.3</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>log4j</groupId>
  68. <artifactId>log4j</artifactId>
  69. <version>1.2.17</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.slf4j</groupId>
  73. <artifactId>slf4j-api</artifactId>
  74. <version>1.5.6</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.slf4j</groupId>
  78. <artifactId>slf4j-log4j12</artifactId>
  79. <version>1.5.6</version>
  80. </dependency>
  81. </dependencies>
  82. <distributionManagement>
  83. <repository>
  84. <id>nexus</id>
  85. <url>http://nexus.seecoder.cn/repository/maven-releases/</url>
  86. </repository>
  87. </distributionManagement>
  88. </project>