11apply plugin : ' java'
22
3- repositories {
4- jcenter ()
3+ repositories {
4+ mavenCentral ()
55}
66
77sourceSets {
@@ -13,25 +13,26 @@ sourceSets {
1313}
1414
1515def gridstoreVersion = ' 5.6.0'
16+ sourceCompatibility = 1.8
1617
1718dependencies {
18- compile group : ' commons-io' , name : ' commons-io' , version : ' 2.15.1'
19+ implementation group : ' commons-io' , name : ' commons-io' , version : ' 2.15.1'
1920
20- compile group : ' com.fasterxml.jackson.core' , name : ' jackson-annotations' , version : ' 2.16.1'
21+ implementation group : ' com.fasterxml.jackson.core' , name : ' jackson-annotations' , version : ' 2.16.1'
2122
22- compile group : ' com.fasterxml.jackson.core' , name : ' jackson-core' , version : ' 2.16.1'
23+ implementation group : ' com.fasterxml.jackson.core' , name : ' jackson-core' , version : ' 2.16.1'
2324
24- compile group : ' com.fasterxml.jackson.core' , name : ' jackson-databind' , version : ' 2.16.1'
25+ implementation group : ' com.fasterxml.jackson.core' , name : ' jackson-databind' , version : ' 2.16.1'
2526
26- compile group : ' javax.json' , name : ' javax.json-api' , version : ' 1.0'
27+ implementation group : ' javax.json' , name : ' javax.json-api' , version : ' 1.0'
2728
28- compile group : ' com.sun.jersey' , name : ' jersey-client' , version : ' 1.17.1'
29+ implementation group : ' com.sun.jersey' , name : ' jersey-client' , version : ' 1.17.1'
2930
30- // compile group: 'com.sun.jersey', name: 'jersey-core', version: '1.17.1'
31+ // implementation group: 'com.sun.jersey', name: 'jersey-core', version: '1.17.1'
3132
32- compile files(' ../3rd_party/orion-ssh2/orion-ssh2-214.jar' )
33+ implementation files(' ../3rd_party/orion-ssh2/orion-ssh2-214.jar' )
3334
34- compile group : ' com.github.griddb' , name : ' gridstore' , version : " ${ gridstoreVersion} "
35+ implementation group : ' com.github.griddb' , name : ' gridstore' , version : " ${ gridstoreVersion} "
3536}
3637
3738compileJava. options. encoding = ' UTF-8'
0 commit comments