We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7eeda67 commit c789248Copy full SHA for c789248
1 file changed
build.gradle
@@ -28,7 +28,7 @@ dependencies {
28
implementation files('libs/secp256k1-foreign-0.0.1.jar')
29
implementation 'com.google.code.gson:gson:2.11.0'
30
implementation 'com.google.guava:guava:30.2.0-jre'
31
-
+
32
testImplementation 'org.slf4j:slf4j-api:2.0.13'
33
testRuntimeOnly 'org.slf4j:slf4j-simple:2.0.13'
34
testImplementation 'org.hamcrest:hamcrest-library:3.0'
@@ -42,7 +42,6 @@ test {
42
useJUnitPlatform()
43
testLogging {
44
events 'PASSED', 'FAILED', 'SKIPPED'
45
- showStandardStreams = true
46
}
47
48
@@ -78,12 +77,6 @@ tasks.register('fatJar', Jar) {
78
77
with jar
79
80
81
-task copyNativeLibs(type: Copy) {
82
- from file('libs/native')
83
- into new File(buildDir, 'libs')
84
-}
85
86
87
compileJava.dependsOn copyNativeLibs
88
89
build.dependsOn 'spotlessApply'
0 commit comments