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) }
|
propertyFile.withWriter { properties.store(it, null) }
|
||||||
|
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 1.8
|
||||||
jar {
|
|
||||||
manifest {
|
|
||||||
attributes("Implementation-Title": rootProject.name,
|
|
||||||
"Implementation-Version": releaseVersion,
|
|
||||||
"Main-Class" : "w2phtml.Application",
|
|
||||||
"Class-Path" : "jasp.jar parser.jar")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
configurations{
|
configurations{
|
||||||
bundledLibs
|
bundledLibs
|
||||||
}
|
}
|
||||||
|
@ -38,6 +30,13 @@ dependencies{
|
||||||
configurations.compile.extendsFrom(configurations.bundledLibs)
|
configurations.compile.extendsFrom(configurations.bundledLibs)
|
||||||
}
|
}
|
||||||
jar {
|
jar {
|
||||||
|
manifest {
|
||||||
|
attributes("Implementation-Title": rootProject.name,
|
||||||
|
"Implementation-Version": releaseVersion,
|
||||||
|
"Main-Class" : "w2phtml.Application",
|
||||||
|
"Class-Path" : "jasp.jar parser.jar")
|
||||||
|
}
|
||||||
|
|
||||||
from {
|
from {
|
||||||
configurations.bundledLibs.collect { it.isDirectory() ? it : zipTree(it) }
|
configurations.bundledLibs.collect { it.isDirectory() ? it : zipTree(it) }
|
||||||
}
|
}
|
||||||
|
@ -45,6 +44,7 @@ jar {
|
||||||
include '**/*.properties'
|
include '**/*.properties'
|
||||||
include '**/*.rdf'
|
include '**/*.rdf'
|
||||||
include '**/*.xml'
|
include '**/*.xml'
|
||||||
|
include 'pro/litvinovg/w2phtml/gui/resources/*.png'
|
||||||
exclude '**/*Test.class'
|
exclude '**/*Test.class'
|
||||||
exclude '**/AllTests.class'
|
exclude '**/AllTests.class'
|
||||||
exclude 'org/openoffice/**/*'
|
exclude 'org/openoffice/**/*'
|
||||||
|
|
Loading…
Add table
Reference in a new issue