Skip to content

Commit

Permalink
Update gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
florin141 committed Mar 5, 2020
1 parent b28892e commit b05fb34
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 16 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language:
java
jdk:
- oraclejdk9
- oraclejdk13
before_install:
- chmod +x gradlew
script:
Expand All @@ -14,4 +14,5 @@ deploy:
file_glob: true
file: "${RELEASE_JAR_FILE}"
skip_cleanup: true
tags: true
on:
tags: true
18 changes: 10 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
apply plugin: 'java'

version '1.0.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
}

repositories {
mavenCentral()
}

dependencies {
testCompile 'junit:junit:4.12'
javafx {
version = "13"
modules = [ 'javafx.controls' ]
}

jar {
manifest {
attributes 'Main-Class': 'com.loan.Main'
}
}
}

mainClassName = 'com.loan.Main'
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 3 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Oct 10 20:56:43 EEST 2017
#Thu Mar 05 12:38:50 CET 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-rc-2-all.zip
zipStoreBase=GRADLE_USER_HOME
6 changes: 3 additions & 3 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS=""
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"

warn ( ) {
warn () {
echo "$*"
}

die ( ) {
die () {
echo
echo "$*"
echo
Expand Down Expand Up @@ -155,7 +155,7 @@ if $cygwin ; then
fi

# Escape application args
save ( ) {
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
Expand Down

0 comments on commit b05fb34

Please sign in to comment.