pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.3.5.RELEASE</version>
  10. <relativePath />
  11. </parent>
  12. <groupId>cn.seecoder</groupId>
  13. <artifactId>seecoder-build</artifactId>
  14. <packaging>pom</packaging>
  15. <version>0.3.0</version>
  16. <modules>
  17. <module>seecoder-build-client</module>
  18. <module>seecoder-build-server</module>
  19. <module>seecoder-build-common</module>
  20. </modules>
  21. <properties>
  22. <seecoder-build-version>0.3.0</seecoder-build-version>
  23. </properties>
  24. <dependencyManagement>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-validation</artifactId>
  29. <version>2.3.4.RELEASE</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>io.jsonwebtoken</groupId>
  33. <artifactId>jjwt</artifactId>
  34. <version>0.9.0</version>
  35. </dependency>
  36. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  37. <dependency>
  38. <groupId>commons-codec</groupId>
  39. <artifactId>commons-codec</artifactId>
  40. <version>1.15</version>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  43. <dependency>
  44. <groupId>org.apache.commons</groupId>
  45. <artifactId>commons-lang3</artifactId>
  46. <version>3.11</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>junit</groupId>
  50. <artifactId>junit</artifactId>
  51. <version>4.11</version>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.offbytwo.jenkins</groupId>
  56. <artifactId>jenkins-client</artifactId>
  57. <version>0.3.8</version>
  58. </dependency>
  59. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  60. <dependency>
  61. <groupId>com.squareup.okhttp3</groupId>
  62. <artifactId>okhttp</artifactId>
  63. <version>4.9.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>cn.seecoder</groupId>
  67. <artifactId>seecoder-build-common</artifactId>
  68. <version>${seecoder-build-version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>cn.seecoder</groupId>
  72. <artifactId>seecoder-build-server</artifactId>
  73. <version>${seecoder-build-version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>cn.seecoder</groupId>
  77. <artifactId>seecoder-build-client</artifactId>
  78. <version>${seecoder-build-version}</version>
  79. </dependency>
  80. </dependencies>
  81. </dependencyManagement>
  82. <repositories>
  83. <repository>
  84. <id>repo-fxdgg</id>
  85. <url>https://packages.aliyun.com/684e93660dc52b6c963b1c3f/maven/repo-fxdgg</url>
  86. <releases>
  87. <enabled>true</enabled>
  88. </releases>
  89. <snapshots>
  90. <enabled>true</enabled>
  91. </snapshots>
  92. </repository>
  93. </repositories>
  94. </project>