| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?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.3.0</version>
- <modules>
- <module>seecoder-build-client</module>
- <module>seecoder-build-server</module>
- <module>seecoder-build-common</module>
- </modules>
- <properties>
- <seecoder-build-version>0.3.0</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>
- <repositories>
- <repository>
- <id>repo-fxdgg</id>
- <url>https://packages.aliyun.com/684e93660dc52b6c963b1c3f/maven/repo-fxdgg</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
- </repositories>
- </project>
|