Added png to jar

This commit is contained in:
Georgy Litvinov 2020-07-30 12:32:24 +02:00
parent c849df7240
commit 387b29bce7

View file

@ -11,14 +11,6 @@ properties.setProperty('releaseVersion', releaseVersion )
propertyFile.withWriter { properties.store(it, null) }
sourceCompatibility = 1.8
jar {
manifest {
attributes("Implementation-Title": rootProject.name,
"Implementation-Version": releaseVersion,
"Main-Class" : "w2phtml.Application",
"Class-Path" : "jasp.jar parser.jar")
}
}
configurations{
bundledLibs
}
@ -38,6 +30,13 @@ dependencies{
configurations.compile.extendsFrom(configurations.bundledLibs)
}
jar {
manifest {
attributes("Implementation-Title": rootProject.name,
"Implementation-Version": releaseVersion,
"Main-Class" : "w2phtml.Application",
"Class-Path" : "jasp.jar parser.jar")
}
from {
configurations.bundledLibs.collect { it.isDirectory() ? it : zipTree(it) }
}
@ -45,6 +44,7 @@ jar {
include '**/*.properties'
include '**/*.rdf'
include '**/*.xml'
include 'pro/litvinovg/w2phtml/gui/resources/*.png'
exclude '**/*Test.class'
exclude '**/AllTests.class'
exclude 'org/openoffice/**/*'