Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* JENKINS-32491 - Workflow references renamed to Pipeline
* JENKINS-34661 - Bump LTS to 1.642.3
  • Loading branch information
rantoniuk committed May 7, 2016
1 parent dc76db3 commit ea4deb1
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 16 deletions.
4 changes: 2 additions & 2 deletions COMPATIBILITY.md
@@ -1,5 +1,5 @@
# Plugin Compatibility with [Pipeline](https://github.com/jenkinsci/workflow-plugin)
(formerly known as workflow plugin)
# Plugin Compatibility with [Pipeline](https://github.com/jenkinsci/pipeline-plugin)
(formerly known as Pipeline plugin)

This document captures the status of features to be compatible or incompatible.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -37,8 +37,8 @@ Fork the repository on GitHub, prepare your change on your forked
copy, and submit a pull request (see [here](https://github.com/jenkinsci/jira-plugin/pulls) for open pull requests). Your pull request will be evaluated by the [Cloudbees Jenkins job](https://jenkins.ci.cloudbees.com/job/plugins/job/jira-plugin/)
and you should receive e-mail with the results of the evaluation.

If you are adding new features please make sure that they support Jenkins Workflow Plugin.
See (here](https://github.com/jenkinsci/workflow-plugin/blob/master/COMPATIBILITY.md) for some information.
If you are adding new features please make sure that they support Jenkins Pipeline Plugin.
See (here](https://github.com/jenkinsci/pipeline-plugin/blob/master/COMPATIBILITY.md) for some information.

Before submitting your change make sure that:
* you added tests - the coverage will be checked after submitting PRs
Expand Down
31 changes: 19 additions & 12 deletions pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.609.3</version>
<version>1.642.3</version>
</parent>

<artifactId>jira</artifactId>
Expand All @@ -17,10 +17,10 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.6</java.version>
<httpcomponents.version>4.2.5</httpcomponents.version>
<mockito.version>1.10.19</mockito.version>
<powermock.version>1.6.3</powermock.version>
<jira-rest-client.version>3.0.0</jira-rest-client.version>
<workflow.version>2.0</workflow.version>

<!-- security -->
<owasp.version>1.3.1</owasp.version>
Expand All @@ -29,6 +29,7 @@
<groovy.version>2.4.5</groovy.version>
<gmaven.version>1.5</gmaven.version>
<cobertura.version>2.7</cobertura.version>
<surefire.version>2.19.1</surefire.version>
</properties>

<scm>
Expand Down Expand Up @@ -64,7 +65,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<version>${surefire.version}</version>
<configuration>
<forkCount>3</forkCount>
<reuseForks>true</reuseForks>
Expand Down Expand Up @@ -234,27 +235,27 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>${httpcomponents.version}</version>
<version>4.5.2</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpcomponents.version}</version>
<version>4.5.2</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>${httpcomponents.version}</version>
<version>4.4.4</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-nio</artifactId>
<version>${httpcomponents.version}</version>
<version>4.4.4</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>fluent-hc</artifactId>
<version>${httpcomponents.version}</version>
<version>4.5.2</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down Expand Up @@ -292,14 +293,20 @@
<dependency>
<artifactId>workflow-step-api</artifactId>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<version>1.12</version>
<version>${workflow.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>perforce</artifactId>
<version>1.3.9</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
Expand Down Expand Up @@ -342,19 +349,19 @@
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-scm-step</artifactId>
<version>1.12</version>
<version>${workflow.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-job</artifactId>
<version>1.12</version>
<version>${workflow.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-step-api</artifactId>
<version>1.12</version>
<version>${workflow.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
Expand Down

0 comments on commit ea4deb1

Please sign in to comment.