|
|
@@ -10,7 +10,7 @@ def moduleNames = subprojects.findAll {
|
|
|
}
|
|
|
|
|
|
dependencies {
|
|
|
- compile project(":connector-app")
|
|
|
+ implementation project(":connector-app")
|
|
|
}
|
|
|
|
|
|
// create fat JAR
|
|
|
@@ -46,10 +46,10 @@ allprojects {
|
|
|
}
|
|
|
|
|
|
dependencies {
|
|
|
- compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.12.0'
|
|
|
- compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.12.0'
|
|
|
+ implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.12.4'
|
|
|
+ implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.12.4'
|
|
|
|
|
|
- testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.8.0-M1'
|
|
|
+ testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.8.0-M1'
|
|
|
}
|
|
|
|
|
|
task unitTest(type: Test) {
|
|
|
@@ -68,28 +68,28 @@ subprojects {
|
|
|
|
|
|
project("connector-app") {
|
|
|
dependencies {
|
|
|
- compile project(":connector-core")
|
|
|
- compile group: 'com.beust', name: 'jcommander', version: '1.78'
|
|
|
+ implementation project(":connector-core")
|
|
|
+ implementation group: 'com.beust', name: 'jcommander', version: '1.78'
|
|
|
}
|
|
|
}
|
|
|
|
|
|
project(":connector-core") {
|
|
|
|
|
|
dependencies {
|
|
|
-// compile group: 'io.vertx', name: 'vertx-core', version: '4.0.3'
|
|
|
- compile group: 'io.vertx', name: 'vertx-web', version: '4.0.3'
|
|
|
- compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.9'
|
|
|
- compile group: 'org.yaml', name: 'snakeyaml', version: '1.24'
|
|
|
+// implementation group: 'io.vertx', name: 'vertx-core', version: '4.0.3'
|
|
|
+ implementation group: 'io.vertx', name: 'vertx-web', version: '4.0.3'
|
|
|
+ implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.9'
|
|
|
+ implementation group: 'org.yaml', name: 'snakeyaml', version: '1.24'
|
|
|
|
|
|
- compile group: 'io.vertx', name: 'vertx-junit5', version: '4.0.3'
|
|
|
- compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.3'
|
|
|
+ implementation group: 'io.vertx', name: 'vertx-junit5', version: '4.0.3'
|
|
|
+ implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.3'
|
|
|
}
|
|
|
}
|
|
|
|
|
|
project(":connector-model") {
|
|
|
|
|
|
dependencies {
|
|
|
- compile group: 'io.vertx', name: 'vertx-core', version: '4.0.3'
|
|
|
+ implementation group: 'io.vertx', name: 'vertx-core', version: '4.0.3'
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -97,8 +97,8 @@ project(":connector-model") {
|
|
|
configure(moduleNames) {
|
|
|
|
|
|
dependencies {
|
|
|
- compile project(":connector-core")
|
|
|
- compile project(":connector-model")
|
|
|
+ implementation project(":connector-core")
|
|
|
+ implementation project(":connector-model")
|
|
|
}
|
|
|
|
|
|
task integrationTest(type: Test) {
|
|
|
@@ -119,8 +119,8 @@ configure(moduleNames) {
|
|
|
project(":connector-module-senslog1") {
|
|
|
|
|
|
dependencies {
|
|
|
- compile group: 'org.jdbi', name: 'jdbi3-core', version: '3.18.0'
|
|
|
-// compile group: 'org.jdbi', name: 'jdbi3-postgres', version: '3.18.0'
|
|
|
- compile group: 'org.postgresql', name: 'postgresql', version: '42.2.19'
|
|
|
+ implementation group: 'org.jdbi', name: 'jdbi3-core', version: '3.18.0'
|
|
|
+// implementation group: 'org.jdbi', name: 'jdbi3-postgres', version: '3.18.0'
|
|
|
+ implementation group: 'org.postgresql', name: 'postgresql', version: '42.2.19'
|
|
|
}
|
|
|
}
|