Skip to content

Commit

Permalink
Upgrade org.jenkins-ci.jpi to 0.39.0
Browse files Browse the repository at this point in the history
Migrate deprecated configurations to recommended replacements.

jenkinsci/gradle-jpi-plugin#139
jenkinsci/gradle-jpi-plugin#181
  • Loading branch information
sghill committed Jan 24, 2021
1 parent 6ba58c9 commit 3e61469
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
id 'pl.allegro.tech.build.axion-release' version '1.3.4'
id 'org.jenkins-ci.jpi' version '0.38.0'
id 'java'
id 'org.jenkins-ci.jpi' version '0.39.0'
id 'codenarc'
id 'idea'
}
Expand Down Expand Up @@ -40,23 +39,24 @@ configurations {
}

dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.11'
compile('com.atlassian.jira:jira-rest-java-client-core:5.2.1') {
compileOnly 'org.codehaus.groovy:groovy-all:2.4.11'
api('com.atlassian.jira:jira-rest-java-client-core:5.2.1') {
exclude group: 'org.slf4j'
exclude group: 'org.springframework'
exclude group: 'javax.xml.stream', module: 'stax-api'
}
compile 'io.atlassian.fugue:fugue:4.7.2'
compile 'com.google.inject.extensions:guice-multibindings:4.0'
testCompile 'org.jenkins-ci:test-annotations:1.2'
testCompile 'org.jenkins-ci.plugins:matrix-auth:1.7@jar'
testCompile 'org.hamcrest:hamcrest-all:1.3'
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
testCompile 'cglib:cglib-nodep:3.2.5' // used by Spock
testCompile 'org.objenesis:objenesis:2.5.1' // used by Spock
integrationTestCompile 'org.codehaus.groovy.modules.http-builder:http-builder:0.7.1'
jenkinsTest 'org.jenkins-ci.plugins.workflow:workflow-job:2.11.2@jar'
jenkinsTest 'org.jenkins-ci.plugins.workflow:workflow-api:2.15@jar' // used by workflow-job
jenkinsTest 'org.jenkins-ci.plugins.workflow:workflow-step-api:2.10@jar' // used by workflow-job
api 'io.atlassian.fugue:fugue:4.7.2'
api('com.google.inject.extensions:guice-multibindings:4.0') {
exclude group: 'com.google.inject', module: 'guice' // already provided by Jenkins
}
testImplementation 'org.jenkins-ci:test-annotations:1.2'
testImplementation 'org.jenkins-ci.plugins:matrix-auth:1.7'
testImplementation 'org.hamcrest:hamcrest-all:1.3'
testImplementation 'org.spockframework:spock-core:1.0-groovy-2.4'
testImplementation 'cglib:cglib-nodep:3.2.5' // used by Spock
testImplementation 'org.objenesis:objenesis:2.5.1' // used by Spock
integrationTestImplementation 'org.codehaus.groovy.modules.http-builder:http-builder:0.7.1'
testImplementation 'org.jenkins-ci.plugins.workflow:workflow-job:2.11.2'
}

test {
Expand Down

0 comments on commit 3e61469

Please sign in to comment.