Browse Source

Fix tests

Lortseam 4 năm trước cách đây
mục cha
commit
c31af887d2
1 tập tin đã thay đổi với 5 bổ sung1 xóa
  1. 5 1
      lib/build.gradle

+ 5 - 1
lib/build.gradle

@@ -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"
 }