| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.3.5.RELEASE</version>
- <relativePath />
- </parent>
- <groupId>cn.seecoder</groupId>
- <artifactId>seecoder-build</artifactId>
- <packaging>pom</packaging>
- <version>0.1.4</version>
- <modules>
- <module>seecoder-build-client</module>
- <module>seecoder-build-server</module>
- <module>seecoder-build-common</module>
- </modules>
- <properties>
- <seecoder-build-version>0.14</seecoder-build-version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-validation</artifactId>
- <version>2.3.4.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt</artifactId>
- <version>0.9.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>1.15</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>3.11</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.11</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.offbytwo.jenkins</groupId>
- <artifactId>jenkins-client</artifactId>
- <version>0.3.8</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
- <dependency>
- <groupId>com.squareup.okhttp3</groupId>
- <artifactId>okhttp</artifactId>
- <version>4.9.0</version>
- </dependency>
- <dependency>
- <groupId>cn.seecoder</groupId>
- <artifactId>seecoder-build-common</artifactId>
- <version>${seecoder-build-version}</version>
- </dependency>
- <dependency>
- <groupId>cn.seecoder</groupId>
- <artifactId>seecoder-build-server</artifactId>
- <version>${seecoder-build-version}</version>
- </dependency>
- <dependency>
- <groupId>cn.seecoder</groupId>
- <artifactId>seecoder-build-client</artifactId>
- <version>${seecoder-build-version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <distributionManagement>
- <repository>
- <id>nexus</id>
- <url>http://nexus.seecoder.cn/repository/maven-releases/</url>
- </repository>
- </distributionManagement>
- </project>
|