pom.xml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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.2.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.2.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. <distributionManagement>
  83. <repository>
  84. <id>nexus</id>
  85. <url>http://nexus.seecoder.cn/repository/maven-releases/</url>
  86. </repository>
  87. </distributionManagement>
  88. </project>