Skip to content

Commit 2388aaa

Browse files
committed
Make it compilable
1 parent 9306cf3 commit 2388aaa

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

build.gradle.kts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ dependencies {
1414
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.12.2")
1515
// Use Soot as frontend
1616
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")
1818
// Eliminate SLF4J warning
1919
implementation("org.slf4j:slf4j-nop:1.7.5")
20-
20+
implementation("com.google.code.findbugs:jsr305:3.0.2")
2121
testImplementation("junit:junit:4.13")
2222
}
2323

@@ -39,12 +39,12 @@ task("fatJar", type = Jar::class) {
3939
)
4040
from("COPYING", "COPYING.LESSER")
4141
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+
}
4848
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
4949
with(tasks["jar"] as CopySpec)
5050
}

0 commit comments

Comments
 (0)