@@ -6,13 +6,12 @@ buildscript {
66}
77
88plugins {
9- id ' pl.allegro.tech.build.axion-release' version ' 1.10.0 '
9+ id ' pl.allegro.tech.build.axion-release' version ' 1.13.4 '
1010}
1111defaultTasks ' clean' ,' build'
1212apply plugin : ' java'
1313apply plugin : ' idea'
1414apply plugin : ' pl.allegro.tech.build.axion-release'
15- apply plugin : ' maven'
1615
1716sourceCompatibility = 1.8
1817ext. rundeckPluginVersion= ' 1.2'
@@ -66,18 +65,20 @@ dependencies {
6665 // add any third-party jar dependencies you wish to include in the plugin
6766 // using the `pluginLibs` configuration as shown here:
6867
69- compile " com.amazonaws:aws-java-sdk-s3:1.11.743 "
70- pluginLibs (group : ' com.amazonaws' , name : ' aws-java-sdk-s3' , version : ' 1.11.743 ' ) {
68+ implementation " com.amazonaws:aws-java-sdk-s3:1.12.470 "
69+ pluginLibs (group : ' com.amazonaws' , name : ' aws-java-sdk-s3' , version : ' 1.12.470 ' ) {
7170 exclude group : " com.fasterxml.jackson.core"
71+ exclude group : " com.fasterxml.jackson.dataformat"
7272 }
73- pluginLibs (group : ' com.amazonaws' , name : ' aws-java-sdk-sts' , version : ' 1.11.743 ' ) {
73+ pluginLibs (group : ' com.amazonaws' , name : ' aws-java-sdk-sts' , version : ' 1.12.470 ' ) {
7474 exclude group : " com.fasterxml.jackson.core"
75+ exclude group : " com.fasterxml.jackson.dataformat"
7576 }
7677
7778
7879 // the compile dependency won't add the rundeck-core jar to the plugin contents
79- compile group : ' org.rundeck' , name : ' rundeck-core' , version : rundeckVersion
80- testCompile group : ' junit' , name :' junit' , version : ' 4.11'
80+ implementation group : ' org.rundeck' , name : ' rundeck-core' , version : rundeckVersion
81+ testImplementation group : ' junit' , name :' junit' , version : ' 4.11'
8182}
8283
8384// task to copy plugin libs to output/lib dir
@@ -107,8 +108,4 @@ jar {
107108 }
108109}
109110// set jar task to depend on copyToLib
110- jar. dependsOn(copyToLib)
111-
112- // task wrapper(type: Wrapper) {
113- // gradleVersion = '2.12'
114- // }
111+ jar. dependsOn(copyToLib)
0 commit comments