From 387b29bce771ad6332b9f6eea4a47b5c6585bbb0 Mon Sep 17 00:00:00 2001 From: Georgy Litvinov Date: Thu, 30 Jul 2020 12:32:24 +0200 Subject: [PATCH] Added png to jar --- build.gradle | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build.gradle b/build.gradle index bc2cb32..6558d1b 100644 --- a/build.gradle +++ b/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/**/*'