forked from jenkinsci/gitlab-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'gitlab-plugin-1.6.0' into gebit
[maven-release-plugin] copy for tag gitlab-plugin-1.6.0
- Loading branch information
Showing
16 changed files
with
433 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
tasks: | ||
- init: mvn clean verify | ||
|
||
vscode: | ||
extensions: | ||
- bierner.markdown-preview-github-styles | ||
- vscjava.vscode-java-pack | ||
- redhat.java | ||
- vscjava.vscode-java-debug | ||
- vscjava.vscode-java-dependency | ||
- vscjava.vscode-java-test | ||
- vscjava.vscode-maven |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
## Contributing to the Plugin | ||
|
||
Plugin source code is hosted on [GitHub](https://github.com/jenkinsci/gitlab-plugin). | ||
New feature proposals and bug fix proposals should be submitted as | ||
[GitHub pull requests](https://help.github.com/articles/creating-a-pull-request). | ||
Fork the repository on GitHub, prepare your change on your forked | ||
copy, and submit a pull request (see [here](https://github.com/jenkinsci/gitlab-plugin/pulls) for open pull requests). Your pull request will be evaluated by the [plugin's CI job](https://ci.jenkins.io/blue/organizations/jenkins/Plugins%2Fgitlab-plugin/). | ||
|
||
If you are adding new features please make sure that they support Jenkins Pipeline jobs. | ||
See [here](https://github.com/jenkinsci/workflow-plugin/blob/master/COMPATIBILITY.md) for some information. | ||
|
||
|
||
Before submitting your change make sure that: | ||
* your changes work with the oldest and latest supported GitLab version | ||
* new features are provided with tests | ||
* refactored code is provided with regression tests | ||
* the code formatting follows the plugin standard | ||
* imports are organised | ||
* you updated the help docs | ||
* you updated the README | ||
* you have used spotbugs to see if you haven't introduced any new warnings | ||
|
||
## Testing With Docker | ||
|
||
See https://github.com/jenkinsci/gitlab-plugin/tree/master/src/docker/README.md | ||
|
||
## Release Workflow | ||
|
||
To perform a full plugin release, maintainers can run ``mvn release:prepare release:perform`` To release a snapshot, e.g. with a bug fix for users to test, just run ``mvn deploy`` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,23 +4,24 @@ | |
<parent> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>plugin</artifactId> | ||
<version>4.40</version> | ||
<version>4.50</version> | ||
<relativePath /> | ||
</parent> | ||
<artifactId>gitlab-plugin</artifactId> | ||
<version>1.5.35</version> | ||
<version>1.6.0</version> | ||
<name>GitLab Plugin</name> | ||
<url>https://github.com/jenkinsci/${project.artifactId}</url> | ||
<packaging>hpi</packaging> | ||
|
||
<properties> | ||
<revision>1.5.35</revision> | ||
<revision>1.6.0</revision> | ||
<changelist>-SNAPSHOT</changelist> | ||
<jenkins.version>2.289.3</jenkins.version> | ||
<spotbugs.threshold>High</spotbugs.threshold> <!-- TODO fix violations --> | ||
<jenkins.version>2.346.3</jenkins.version> | ||
<spotbugs.effort>Max</spotbugs.effort> | ||
<spotbugs.threshold>Low</spotbugs.threshold> | ||
<gitHubRepo>jenkinsci/${project.artifactId}</gitHubRepo> | ||
<hpi.compatibleSinceVersion>1.4.0</hpi.compatibleSinceVersion> | ||
<mockserver.version>5.13.0</mockserver.version> | ||
<mockserver.version>5.14.0</mockserver.version> | ||
</properties> | ||
|
||
|
||
|
@@ -56,7 +57,7 @@ | |
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection> | ||
<developerConnection>scm:git:[email protected]:${gitHubRepo}.git</developerConnection> | ||
<url>https://github.com/${gitHubRepo}</url> | ||
<tag>gitlab-plugin-1.5.35</tag> | ||
<tag>gitlab-plugin-1.6.0</tag> | ||
</scm> | ||
<!-- get every artifact through repo.jenkins-ci.org, which proxies all the artifacts that we need --> | ||
<repositories> | ||
|
@@ -141,11 +142,6 @@ | |
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>display-url-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.findbugs</groupId> | ||
<artifactId>jsr305</artifactId> | ||
<version>3.0.2</version> | ||
</dependency> | ||
|
||
|
||
<!-- REST client dependencies --> | ||
|
@@ -242,6 +238,10 @@ | |
<groupId>org.jetbrains</groupId> | ||
<artifactId>annotations</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.jenkins-ci.main</groupId> | ||
<artifactId>jenkins-test-harness</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
|
@@ -276,8 +276,15 @@ | |
<dependency> | ||
<groupId>org.postgresql</groupId> | ||
<artifactId>postgresql</artifactId> | ||
<version>42.4.0</version> | ||
<version>42.5.0</version> | ||
<scope>test</scope> | ||
<exclusions> | ||
<!-- Upper bounds with Guava --> | ||
<exclusion> | ||
<groupId>org.checkerframework</groupId> | ||
<artifactId>checker-qual</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
|
@@ -304,21 +311,15 @@ | |
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>18.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<version>2.11.0</version> | ||
</dependency> | ||
<dependency> | ||
<!-- Pick up common dependencies for the selected LTS line: https://github.com/jenkinsci/bom#usage --> | ||
<groupId>io.jenkins.tools.bom</groupId> | ||
<artifactId>bom-2.289.x</artifactId> | ||
<version>1438.v6a_2c29d73f82</version> | ||
<artifactId>bom-2.346.x</artifactId> | ||
<version>1678.vc1feb_6a_3c0f1</version> | ||
<scope>import</scope> | ||
<type>pom</type> | ||
</dependency> | ||
|
@@ -330,7 +331,7 @@ | |
<dependency> | ||
<groupId>joda-time</groupId> | ||
<artifactId>joda-time</artifactId> | ||
<version>2.10.14</version> | ||
<version>2.12.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.sf.jopt-simple</groupId> | ||
|
@@ -340,12 +341,10 @@ | |
<dependency> | ||
<groupId>org.ow2.asm</groupId> | ||
<artifactId>asm</artifactId> | ||
<version>9.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>1.7.36</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
@@ -445,7 +444,7 @@ | |
<plugin> | ||
<groupId>io.fabric8</groupId> | ||
<artifactId>docker-maven-plugin</artifactId> | ||
<version>0.40.1</version> | ||
<version>0.40.2</version> | ||
<configuration> | ||
<verbose>true</verbose> | ||
<images> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.