|
1 | 1 | apply plugin: 'java' |
2 | | -// enables 'install' task into repository |
3 | | -apply plugin: 'maven' |
| 2 | + |
4 | 3 | group = 'com.researchspace' |
5 | 4 | sourceCompatibility = 1.8 |
6 | 5 | version = '0.1.10' |
@@ -38,24 +37,24 @@ configurations { |
38 | 37 | } |
39 | 38 |
|
40 | 39 | 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' |
48 | 47 | 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' |
51 | 50 |
|
52 | 51 | //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' |
55 | 54 |
|
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' |
59 | 58 | } |
60 | 59 |
|
61 | 60 | test{ |
|
0 commit comments