Skip to content

Commit 4b24186

Browse files
otter606richarda23
authored andcommitted
update to latest gradle6
1 parent e94e8f4 commit 4b24186

2 files changed

Lines changed: 16 additions & 17 deletions

File tree

build.gradle

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
apply plugin: 'java'
2-
// enables 'install' task into repository
3-
apply plugin: 'maven'
2+
43
group = 'com.researchspace'
54
sourceCompatibility = 1.8
65
version = '0.1.10'
@@ -38,24 +37,24 @@ configurations {
3837
}
3938

4039
dependencies {
41-
compile 'org.springframework:spring-web:'+springVersion
42-
compile 'org.springframework:spring-core:'+springVersion
43-
compile 'com.fasterxml.jackson.core:jackson-annotations:'+jacksonVersion
44-
compile 'com.fasterxml.jackson.core:jackson-core:'+jacksonVersion
45-
compile 'com.fasterxml.jackson.core:jackson-databind:'+jacksonVersion
46-
47-
compile 'org.projectlombok:lombok:1.16.10'
40+
implementation 'org.springframework:spring-web:'+springVersion
41+
implementation 'org.springframework:spring-core:'+springVersion
42+
implementation 'com.fasterxml.jackson.core:jackson-annotations:'+jacksonVersion
43+
implementation 'com.fasterxml.jackson.core:jackson-core:'+jacksonVersion
44+
implementation 'com.fasterxml.jackson.core:jackson-databind:'+jacksonVersion
45+
46+
implementation 'org.projectlombok:lombok:1.16.10'
4847
annotationProcessor 'org.projectlombok:lombok:1.16.10'
49-
compile 'commons-lang:commons-lang:2.6'
50-
compile 'org.slf4j:slf4j-api:1.7.21'
48+
implementation 'commons-lang:commons-lang:2.6'
49+
implementation 'org.slf4j:slf4j-api:1.7.21'
5150

5251
//for SWORD-API.
53-
compile 'org.swordapp:sword2-client:0.9.3'
54-
compile 'org.apache.abdera:abdera-client:1.1.1'
52+
implementation 'org.swordapp:sword2-client:0.9.3'
53+
implementation 'org.apache.abdera:abdera-client:1.1.1'
5554

56-
testCompile 'junit:junit:4.12'
57-
testCompile 'org.springframework:spring-test:'+springVersion
58-
testCompile 'org.slf4j:slf4j-simple:1.7.21'
55+
testImplementation 'junit:junit:4.12'
56+
testImplementation 'org.springframework:spring-test:'+springVersion
57+
testImplementation 'org.slf4j:slf4j-simple:1.7.21'
5958
}
6059

6160
test{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)