Added png to jar
This commit is contained in:
parent
c849df7240
commit
387b29bce7
1 changed files with 8 additions and 8 deletions
16
build.gradle
16
build.gradle
|
@ -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/**/*'
|
||||
|
|
Loading…
Add table
Reference in a new issue