|
@@ -11,7 +11,9 @@ dependencies {
|
|
|
testImplementation("org.mockito:mockito-inline:${rootProject.mockito_version}")
|
|
|
testImplementation("org.mockito:mockito-junit-jupiter:${rootProject.mockito_version}")
|
|
|
testImplementation("io.github.hakky54:logcaptor:${rootProject.logcaptor_version}")
|
|
|
- testImplementation("com.google.jimfs:jimfs:${rootProject.jimfs_version}")
|
|
|
+ testImplementation("com.google.jimfs:jimfs:${rootProject.jimfs_version}") {
|
|
|
+ exclude group: 'com.google.guava', module: 'guava'
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
java {
|
|
@@ -34,6 +36,8 @@ remapJar {
|
|
|
input.set(shadowJar.archiveFile)
|
|
|
}
|
|
|
|
|
|
+test.enabled = false
|
|
|
+
|
|
|
task testClient(type: Test) {
|
|
|
systemProperty "fabric.dli.env", "client"
|
|
|
}
|