gradle task to rename the fxlauncher.jar and launcher without own ui

This commit is contained in:
2016-10-06 15:33:00 +02:00
parent 48c657b648
commit e9e71b5474
4 changed files with 14 additions and 6 deletions

View File

@@ -14,7 +14,8 @@ even in a "normal" CSV editor. So I decided to write this simple JavaFX applicat
[Wiki & Documentation](https://github.com/frosch95/SmartCSV.fx/wiki) [Wiki & Documentation](https://github.com/frosch95/SmartCSV.fx/wiki)
binary distribution of the [latest release (0.8)](https://github.com/frosch95/SmartCSV.fx/releases/download/0.8/SmartCSV.fx-0.8-SNAPSHOT.zip) binary distribution of the [SmartCSV.fx launcher](http://www.javafx.ninja/SmartCSV.fx/SmartCSV.fx.jar)
copy the jar to an appropriate place and start the application with a double click on the jar (or java -jar SmartCSV.fx.jar on command line)
##Talks ##Talks
[Introduction](http://javafx.ninja/talks/introduction/) [Introduction](http://javafx.ninja/talks/introduction/)

View File

@@ -1,5 +1,5 @@
group 'ninja.javafx' group 'ninja.javafx'
version '0.8-SNAPSHOT' version '0.9-SNAPSHOT'
buildscript { buildscript {
repositories { repositories {
@@ -52,6 +52,13 @@ dependencies {
} }
task wrapper(type: Wrapper) { task wrapper(type: Wrapper) {
gradleVersion = '2.14.1' //version required gradleVersion = '3.1' //version required
} }
task buildSmartCSV(dependsOn: 'embedApplicationManifest') {
def pathName = getBuildDir().absolutePath + File.separatorChar + 'fxlauncher' + File.separatorChar
def file = new File(pathName + 'fxlauncher.jar')
file.renameTo(pathName + 'SmartCSV.fx.jar')
}
defaultTasks 'buildSmartCSV'

View File

@@ -1,6 +1,6 @@
#Sat Jul 23 09:35:51 CEST 2016 #Thu Oct 06 15:00:38 CEST 2016
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip

View File

@@ -1,5 +1,5 @@
application.name = SmartCSV.fx application.name = SmartCSV.fx
application.version = 0.8 application.version = 0.9
# fxml views # fxml views
fxml.smartcvs.view = /ninja/javafx/smartcsv/fx/smartcsv.fxml fxml.smartcvs.view = /ninja/javafx/smartcsv/fx/smartcsv.fxml