Commit bff95973 authored by Jan Peter Stotz's avatar Jan Peter Stotz

Add Main-Class and Class-Path attributes to MANIFEST.MF of jadx-gui jar file.

parent 78b39a60
......@@ -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