pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.1.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.1.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. </dependency>
  55. <dependency>
  56. <groupId>cn.seecoder</groupId>
  57. <artifactId>seecoder-bok-client</artifactId>
  58. <version>0.0.2</version>
  59. </dependency>
  60. </dependencies>
  61. <distributionManagement>
  62. <repository>
  63. <id>nexus</id>
  64. <url>http://nexus.seecoder.cn/repository/maven-releases/</url>
  65. </repository>
  66. </distributionManagement>
  67. </project>