2016-04-26 04:23:22 +08:00
<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" >
2014-05-21 01:06:20 +08:00
<modelVersion > 4.0.0</modelVersion>
2016-03-20 01:55:04 +08:00
<parent >
<groupId > org.jenkins-ci.plugins</groupId>
<artifactId > plugin</artifactId>
2021-01-15 16:16:31 +08:00
<version > 4.15</version>
<relativePath />
2016-03-20 01:55:04 +08:00
</parent>
2014-05-21 01:06:20 +08:00
2016-03-20 01:55:04 +08:00
<properties >
2021-01-15 16:16:31 +08:00
<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>
2016-03-20 01:55:04 +08:00
</properties>
2016-03-04 05:59:19 +08:00
2018-07-19 17:52:29 +08:00
<artifactId > gitee</artifactId>
2021-01-11 16:51:14 +08:00
<version > 1.2.5-SNAPSHOT</version>
2018-07-19 17:52:29 +08:00
<name > Gitee Plugin</name>
2018-07-25 16:06:54 +08:00
<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>
2018-07-20 12:06:55 +08:00
<url > https://wiki.jenkins.io/display/JENKINS/Gitee+Plugin</url>
2015-01-27 15:18:39 +08:00
<packaging > hpi</packaging>
2014-05-21 01:06:20 +08:00
<licenses >
<license >
2016-03-12 14:18:06 +08:00
<name > GPL v2.0 License</name>
<url > http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html</url>
2014-05-21 01:06:20 +08:00
</license>
</licenses>
2021-01-15 16:16:31 +08:00
<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>
2014-05-22 14:18:59 +08:00
<developers >
2018-07-03 14:51:33 +08:00
<developer >
<id > Yashin</id>
<name > Yashin Luo</name>
<email > Yashin.luo@foxmail.com</email>
</developer>
2014-05-22 14:18:59 +08:00
</developers>
2016-03-03 06:35:46 +08:00
<distributionManagement >
<repository >
2016-03-03 07:29:04 +08:00
<id > maven.jenkins-ci.org</id>
2016-03-03 06:35:46 +08:00
<name > jenkinsci-releases</name>
2018-07-20 12:06:55 +08:00
<url > https://repo.jenkins-ci.org/releases</url>
2016-03-03 06:35:46 +08:00
</repository>
<snapshotRepository >
2016-03-03 07:29:04 +08:00
<id > maven.jenkins-ci.org</id>
2016-03-03 06:35:46 +08:00
<name > jenkinsci-snapshots</name>
2019-10-08 20:18:20 +08:00
<url > https://repo.jenkins-ci.org/snapshots</url>
2016-03-03 06:35:46 +08:00
</snapshotRepository>
</distributionManagement>
2021-01-15 16:16:31 +08:00
<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>
2015-01-27 06:20:58 +08:00
2014-05-22 14:18:59 +08:00
<dependencies >
2016-03-20 01:55:04 +08:00
<dependency >
<groupId > org.jenkins-ci.plugins</groupId>
2021-01-15 16:16:31 +08:00
<artifactId > structs</artifactId>
2016-04-29 01:39:28 +08:00
</dependency>
2017-12-08 23:26:20 +08:00
<dependency >
<groupId > org.jenkins-ci.plugins.workflow</groupId>
<artifactId > workflow-job</artifactId>
</dependency>
2016-05-03 05:39:20 +08:00
<dependency >
<groupId > org.jenkins-ci.plugins</groupId>
<artifactId > credentials</artifactId>
</dependency>
<dependency >
<groupId > org.jenkins-ci.plugins</groupId>
<artifactId > plain-credentials</artifactId>
</dependency>
2017-01-09 18:11:28 +08:00
<dependency >
<groupId > org.jenkins-ci</groupId>
<artifactId > symbol-annotation</artifactId>
</dependency>
2016-03-20 01:55:04 +08:00
<dependency >
2021-01-15 16:16:31 +08:00
<groupId > org.jenkins-ci.plugins</groupId>
<artifactId > matrix-project</artifactId>
2016-03-20 01:55:04 +08:00
</dependency>
2017-04-26 19:17:45 +08:00
<dependency >
2021-01-15 16:16:31 +08:00
<groupId > org.jenkins-ci.plugins</groupId>
<artifactId > git</artifactId>
2017-04-26 19:17:45 +08:00
</dependency>
2017-11-14 17:30:21 +08:00
<dependency >
<groupId > org.jenkins-ci.plugins</groupId>
2021-01-15 16:16:31 +08:00
<artifactId > git-client</artifactId>
2017-11-14 17:30:21 +08:00
</dependency>
2016-03-20 01:55:04 +08:00
<dependency >
2021-01-15 16:16:31 +08:00
<groupId > org.jenkins-ci.plugins.workflow</groupId>
<artifactId > workflow-cps</artifactId>
<scope > test</scope>
2016-03-20 01:55:04 +08:00
</dependency>
<dependency >
2021-01-15 16:16:31 +08:00
<groupId > org.jenkins-ci.plugins.workflow</groupId>
<artifactId > workflow-basic-steps</artifactId>
<scope > test</scope>
2016-03-20 01:55:04 +08:00
</dependency>
<dependency >
2021-01-15 16:16:31 +08:00
<groupId > org.jenkins-ci.plugins.workflow</groupId>
<artifactId > workflow-durable-task-step</artifactId>
<scope > test</scope>
2016-03-20 01:55:04 +08:00
</dependency>
<dependency >
2021-01-15 16:16:31 +08:00
<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>
2016-03-20 01:55:04 +08:00
</dependency>
<dependency >
2021-01-15 16:16:31 +08:00
<groupId > org.jenkins-ci.main</groupId>
<artifactId > maven-plugin</artifactId>
<version > ${jenkins-maven.version}</version>
2016-03-20 01:55:04 +08:00
<scope > test</scope>
</dependency>
<dependency >
2021-01-15 16:16:31 +08:00
<groupId > org.jenkins-ci.plugins</groupId>
<artifactId > envinject</artifactId>
<version > ${jenkins-envinject.version}</version>
2016-03-20 01:55:04 +08:00
<scope > test</scope>
</dependency>
2021-01-15 16:16:31 +08:00
<!-- lombok -->
2016-03-20 01:55:04 +08:00
<dependency >
2021-01-15 16:16:31 +08:00
<groupId > org.projectlombok</groupId>
<artifactId > lombok</artifactId>
<version > ${lombok.version}</version>
<scope > provided</scope>
2016-03-20 01:55:04 +08:00
</dependency>
2021-01-15 16:16:31 +08:00
<!-- commons - lang3 -->
2017-06-12 22:10:14 +08:00
<dependency >
2021-01-15 16:16:31 +08:00
<groupId > org.apache.commons</groupId>
<artifactId > commons-lang3</artifactId>
<version > ${commons-lang3.version}</version>
2017-06-12 22:10:14 +08:00
</dependency>
2021-01-15 16:16:31 +08:00
<!-- jackson -->
2017-06-12 22:10:14 +08:00
<dependency >
2021-01-15 16:16:31 +08:00
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-databind</artifactId>
<version > ${jackson.version}</version>
2017-06-12 22:10:14 +08:00
</dependency>
2021-01-15 16:16:31 +08:00
<!-- okhttp -->
2016-03-20 01:55:04 +08:00
<dependency >
2021-01-15 16:16:31 +08:00
<groupId > com.squareup.okhttp3</groupId>
<artifactId > okhttp</artifactId>
<version > ${okhttp.version}</version>
2016-03-24 17:27:34 +08:00
<exclusions >
<exclusion >
2021-01-15 16:16:31 +08:00
<groupId > org.jetbrains.kotlin</groupId>
<artifactId > kotlin-stdlib-common</artifactId>
2016-04-07 00:54:54 +08:00
</exclusion>
2016-03-24 17:27:34 +08:00
</exclusions>
2016-03-20 01:55:04 +08:00
</dependency>
2021-01-15 16:16:31 +08:00
2014-05-22 14:18:59 +08:00
</dependencies>
2021-01-15 16:16:31 +08:00
<!-- 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>
2014-05-21 01:06:20 +08:00
</project>