@@ -5,16 +5,14 @@ buildscript {
55 }
66 }
77 dependencies {
8- classpath " org.shipkit:shipkit:0.9.117 "
8+ classpath " org.shipkit:shipkit:2.3.5 "
99 }
1010}
1111
12-
1312plugins {
1413 id ' java'
1514}
1615
17-
1816apply from : ' aplugin.gradle'
1917apply plugin : ' org.shipkit.bintray-release'
2018
@@ -72,8 +70,6 @@ helloBaeldung {
7270}
7371
7472
75-
76-
7773// Adding extra task properties
7874task ourTask {
7975 ext. theProperty = " theValue"
@@ -86,25 +82,24 @@ task printTaskProperty {
8682}
8783
8884
89-
9085// Declaring dependencies
9186dependencies {
92- compile group :
87+ implementation group :
9388 ' org.springframework' , name : ' spring-core' , version : ' 4.3.5.RELEASE'
94- compile ' org.springframework:spring-core:4.3.5.RELEASE' ,
89+ implementation ' org.springframework:spring-core:4.3.5.RELEASE' ,
9590 ' org.springframework:spring-aop:4.3.5.RELEASE'
96- compile (
91+ implementation (
9792 [group : ' org.springframework' , name : ' spring-core' , version : ' 4.3.5.RELEASE' ],
9893 [group : ' org.springframework' , name : ' spring-aop' , version : ' 4.3.5.RELEASE' ]
9994 )
100- testCompile (' org.hibernate:hibernate-core:5.2.12.Final' ) {
95+ testImplementation (' org.hibernate:hibernate-core:5.2.12.Final' ) {
10196 transitive = true
10297 }
103- runtime (group : ' org.hibernate' , name : ' hibernate-core' , version : ' 5.2.12.Final' ) {
98+ runtimeOnly (group : ' org.hibernate' , name : ' hibernate-core' , version : ' 5.2.12.Final' ) {
10499 transitive = false
105100 }
106- runtime " org.codehaus.groovy:groovy-all:2.4.11@jar"
107- runtime group : ' org.codehaus.groovy' , name : ' groovy-all' , version : ' 2.4.11' , ext : ' jar'
108-
109- compile fileTree(dir : ' libs' , include : ' *.jar' )
101+ runtimeOnly " org.codehaus.groovy:groovy-all:2.4.11@jar"
102+ runtimeOnly group : ' org.codehaus.groovy' , name : ' groovy-all' , version : ' 2.4.11' , ext : ' jar'
103+
104+ implementation fileTree(dir : ' libs' , include : ' *.jar' )
110105}
0 commit comments