diff --git a/build.gradle b/build.gradle index b5a40f8..7e979bf 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'pl.allegro.tech.build.axion-release' version '1.10.1' + id 'pl.allegro.tech.build.axion-release' version '1.13.4' id 'java' } @@ -40,22 +40,22 @@ configurations{ pluginLibs //declare compile to extend from pluginLibs so it inherits the dependencies - compile{ + implementation { extendsFrom pluginLibs } } dependencies { - compile 'org.rundeck:rundeck-core:3.0.+' + implementation 'org.rundeck:rundeck-core:4.0.+' pluginLibs group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.8' pluginLibs group: 'com.google.code.gson', name: 'gson', version:'2.8.5' pluginLibs group: 'com.esotericsoftware.yamlbeans', name: 'yamlbeans', version:'1.13' - testCompile group: 'com.github.tomakehurst', name: 'wiremock-standalone', version:'2.23.2' - testCompile group: 'junit', name: 'junit', version:'4.12' + testImplementation group: 'com.github.tomakehurst', name: 'wiremock-standalone', version:'2.23.2' + testImplementation group: 'junit', name: 'junit', version:'4.12' - testCompile ( + testImplementation ( 'org.mockito:mockito-all:1.9.5', 'org.powermock:powermock-module-junit4:1.5', 'org.powermock:powermock-api-mockito:1.5' diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 16d2805..92f06b5 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.7-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists