seecoder-bok-0.2.3.pom 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>cn.seecoder</groupId>
  7. <artifactId>seecoder-bok</artifactId>
  8. <version>0.2.3</version>
  9. <modules>
  10. <module>seecoder-bok-client</module>
  11. <module>seecoder-bok-common</module>
  12. <module>seecoder-bok-server</module>
  13. </modules>
  14. <packaging>pom</packaging>
  15. <properties>
  16. <maven.compiler.source>8</maven.compiler.source>
  17. <maven.compiler.target>8</maven.compiler.target>
  18. <jackson.version>2.12.0</jackson.version>
  19. <org.mapstruct.version>1.4.2.Final</org.mapstruct.version>
  20. <seecoder-bok-version>0.2.3</seecoder-bok-version>
  21. </properties>
  22. <dependencies>
  23. <!-- https://mvnrepository.com/artifact/javax.validation/validation-api -->
  24. <dependency>
  25. <groupId>javax.validation</groupId>
  26. <artifactId>validation-api</artifactId>
  27. <version>2.0.1.Final</version>
  28. </dependency>
  29. <!-- https://mvnrepository.com/artifact/org.jetbrains/annotations -->
  30. <dependency>
  31. <groupId>org.jetbrains</groupId>
  32. <artifactId>annotations</artifactId>
  33. <version>20.1.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.google.guava</groupId>
  37. <artifactId>guava</artifactId>
  38. <version>30.1-jre</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.junit.jupiter</groupId>
  42. <artifactId>junit-jupiter-api</artifactId>
  43. <version>5.7.0</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.junit.jupiter</groupId>
  48. <artifactId>junit-jupiter-engine</artifactId>
  49. <version>5.7.0</version>
  50. <scope>test</scope>
  51. </dependency>
  52. </dependencies>
  53. <dependencyManagement>
  54. <dependencies>
  55. <dependency>
  56. <groupId>cn.seecoder</groupId>
  57. <artifactId>seecoder-bok-common</artifactId>
  58. <version>${seecoder-bok-version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.mapstruct</groupId>
  62. <artifactId>mapstruct</artifactId>
  63. <version>${org.mapstruct.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.squareup.okhttp3</groupId>
  67. <artifactId>okhttp</artifactId>
  68. <version>4.9.0</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-dependencies</artifactId>
  73. <type>pom</type>
  74. <version>2.4.2</version>
  75. <scope>import</scope>
  76. </dependency>
  77. </dependencies>
  78. </dependencyManagement>
  79. <distributionManagement>
  80. <repository>
  81. <id>nexus</id>
  82. <url>http://nexus.seecoder.cn/repository/maven-releases/</url>
  83. </repository>
  84. </distributionManagement>
  85. </project>