File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ dependencies {
14
14
implementation(" com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.12.2" )
15
15
// Use Soot as frontend
16
16
implementation(files(" lib/sootclasses-modified.jar" ))
17
- implementation(" org.soot-oss:soot:4.3.0-20211223.212205-256 " )
17
+ implementation(" org.soot-oss:soot:4.3.0" )
18
18
// Eliminate SLF4J warning
19
19
implementation(" org.slf4j:slf4j-nop:1.7.5" )
20
-
20
+ implementation( " com.google.code.findbugs:jsr305:3.0.2 " )
21
21
testImplementation(" junit:junit:4.13" )
22
22
}
23
23
@@ -39,12 +39,12 @@ task("fatJar", type = Jar::class) {
39
39
)
40
40
from(" COPYING" , " COPYING.LESSER" )
41
41
destinationDirectory.set(rootDir.parentFile)
42
- // doLast {
43
- // copy {
44
- // from(archiveFile)
45
- // into(rootProject.projectDir.parentFile )
46
- // into(rootProject.buildDir.parentFile) }
47
- // }
42
+ doLast {
43
+ copy {
44
+ from(archiveFile)
45
+ into(rootProject.buildDir )
46
+ }
47
+ }
48
48
duplicatesStrategy = DuplicatesStrategy .EXCLUDE
49
49
with (tasks[" jar" ] as CopySpec )
50
50
}
You can’t perform that action at this time.
0 commit comments