Revert "JENKINS-48357# Fix jira-plugin binary compatibility issue" (#1712)

* Revert "don't step out of karaoke mode if scrolling up or 'key up' pressed when run is paused (#1710)"

This reverts commit 96e556d774.

* Revert "make all text in an input step format according to new lines chars (#1709)"

This reverts commit 61139f927a.

* Revert " [JENKINS-50325] Some part of the code uses object.assign which needs to be polyfill to support IE11  (#1698)"

This reverts commit e81ddf623d.

* Revert "Update to 1.6.0-beta-1-SNAPSHOT for next development cycle (#1707)"

This reverts commit a91d88f186.

* Revert "JENKINS-50452# Fix node graph visitor log levels (#1705)"

This reverts commit ccb42f6902.

* Revert "JENKINS-48357# Fix jira-plugin binary compatibility issue (#1704)"

This reverts commit 1d4da19a4f.
This commit is contained in:
Vivek Pandey 2018-04-05 18:56:23 -07:00 committed by GitHub
parent ea9e802146
commit 62f57c5753
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 48 additions and 1 deletions

View File

@ -95,7 +95,12 @@
<groupId>${project.groupId}</groupId>
<artifactId>blueocean-pipeline-editor</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blueocean-jira</artifactId>
</dependency>
<!-- Bundled plugins for improved out of the box experience -->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>

42
pom.xml
View File

@ -137,6 +137,7 @@
<module>blueocean-git-pipeline</module>
<module>blueocean-bitbucket-pipeline</module>
<module>blueocean-pipeline-editor</module>
<module>blueocean-jira</module>
</modules>
<repositories>
@ -300,6 +301,12 @@
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blueocean-jira</artifactId>
<version>${project.version}</version>
</dependency>
<!-- TODO: should be moved out of blueocean repo as separate plugin -->
<dependency>
<groupId>${project.groupId}</groupId>
@ -491,6 +498,41 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>jira</artifactId>
<version>2.4.2</version>
<exclusions>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
<!-- Upper bound dependency fix
TODO: Remove it after https://github.com/jenkinsci/jira-plugin/pull/130 is merged and released.
-->
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</exclusion>
<exclusion>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>credentials</artifactId>