Commit c923d19b authored by skylot's avatar skylot

Merge pull request #63 from jpstotz/master

Make jadx-gui.jar runnable
parents 78b39a60 bff95973
......@@ -19,6 +19,15 @@ applicationDistribution.with {
}
}
jar {
manifest {
attributes(
"Main-Class": mainClassName,
"Class-Path": configurations.compile.collect { it.getName() }.join(' ')
)
}
}
test {
jacoco {
// coveralls plugin not support multi-project
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment