208 lines
6.5 KiB
XML
208 lines
6.5 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
<artifactId>plugin</artifactId>
|
|
<version>4.15</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<properties>
|
|
<java.level>8</java.level>
|
|
<jenkins.version>2.275</jenkins.version>
|
|
<workflow-aggregator.version>2.5</workflow-aggregator.version>
|
|
<jenkins-maven.version>3.7</jenkins-maven.version>
|
|
<jenkins-envinject.version>2.4.0</jenkins-envinject.version>
|
|
<lombok.version>1.18.16</lombok.version>
|
|
<commons-lang3.version>3.11</commons-lang3.version>
|
|
<jackson.version>2.12.0</jackson.version>
|
|
<okhttp.version>4.9.0</okhttp.version>
|
|
</properties>
|
|
|
|
<artifactId>gitee</artifactId>
|
|
<version>1.2.5-SNAPSHOT</version>
|
|
<name>Gitee Plugin</name>
|
|
<description>This plugin integrates Gitee to Jenkins by faking a Gitee CI Server. This plugin allows Gitee to trigger builds in Jenkins when code is committed or pull requests are opened/updated. It can also send build status back to Gitee.</description>
|
|
<url>https://wiki.jenkins.io/display/JENKINS/Gitee+Plugin</url>
|
|
<packaging>hpi</packaging>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GPL v2.0 License</name>
|
|
<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<scm>
|
|
<connection>scm:git:ssh://github.com:jenkinsci/gitee-plugin.git</connection>
|
|
<developerConnection>scm:git:git@github.com:jenkinsci/gitee-plugin.git</developerConnection>
|
|
<url>https://github.com/jenkinsci/gitee-plugin</url>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>Yashin</id>
|
|
<name>Yashin Luo</name>
|
|
<email>Yashin.luo@foxmail.com</email>
|
|
</developer>
|
|
</developers>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>maven.jenkins-ci.org</id>
|
|
<name>jenkinsci-releases</name>
|
|
<url>https://repo.jenkins-ci.org/releases</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>maven.jenkins-ci.org</id>
|
|
<name>jenkinsci-snapshots</name>
|
|
<url>https://repo.jenkins-ci.org/snapshots</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.jenkins.tools.bom</groupId>
|
|
<artifactId>bom-2.263.x</artifactId>
|
|
<version>20</version>
|
|
<scope>import</scope>
|
|
<type>pom</type>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
<artifactId>structs</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
|
<artifactId>workflow-job</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
<artifactId>credentials</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
<artifactId>plain-credentials</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci</groupId>
|
|
<artifactId>symbol-annotation</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
<artifactId>matrix-project</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
<artifactId>git</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
<artifactId>git-client</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
|
<artifactId>workflow-cps</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
|
<artifactId>workflow-basic-steps</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
|
<artifactId>workflow-durable-task-step</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins.workflow</groupId>
|
|
<artifactId>workflow-aggregator</artifactId>
|
|
<version>${workflow-aggregator.version}</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>jackson-datatype-json-org</artifactId>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.main</groupId>
|
|
<artifactId>maven-plugin</artifactId>
|
|
<version>${jenkins-maven.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
<artifactId>envinject</artifactId>
|
|
<version>${jenkins-envinject.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- commons-lang3 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang3.version}</version>
|
|
</dependency>
|
|
|
|
<!-- jackson -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>${jackson.version}</version>
|
|
</dependency>
|
|
|
|
<!-- okhttp -->
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>${okhttp.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-stdlib-common</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<!--get every artifact through repo.jenkins-ci.org, which proxies all the artifacts that we need-->
|
|
<repositories>
|
|
<repository>
|
|
<id>repo.jenkins-ci.org</id>
|
|
<url>https://repo.jenkins-ci.org/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>jgit-repository</id>
|
|
<name>Eclipse JGit Repository</name>
|
|
<url>http://download.eclipse.org/jgit/maven</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>repo.jenkins-ci.org</id>
|
|
<url>https://repo.jenkins-ci.org/public/</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
</project>
|