Skip to content

Commit

Permalink
Update to BA JLink Gradle plugin 2.14.1
Browse files Browse the repository at this point in the history
* Remove workarounds for BA JLink issues bitcoinj#74 and bitcoinj#75
* Install rpm on GitLab CI so we can build “deb” and “rpm”
  • Loading branch information
msgilligan committed Aug 14, 2019
1 parent ae6e6bf commit 61f511a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ before_script:
- echo $GRADLE_OPTS
- apt-get update
- apt-get -y upgrade
- apt-get -y install openjdk-11-jdk gradle curl fakeroot
- apt-get -y install openjdk-11-jdk gradle curl rpm fakeroot
- curl --silent --show-error -O $JDK14_URL
- tar xf $JDK14_FILENAME
- $BADASS_JLINK_JPACKAGE_HOME/bin/jpackage --version
Expand Down
11 changes: 2 additions & 9 deletions bitcoinj-walletfx-template/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'eclipse'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
id 'org.beryx.jlink' version '2.14.0'
id 'org.beryx.jlink' version '2.14.1'
id 'org.javamodularity.moduleplugin' version "1.5.0"
}

Expand Down Expand Up @@ -76,13 +76,6 @@ jlink {
// (Currently you need to manually install a OpenJDK 14 Early Access Build including jpackage)
jpackageHome = System.getenv('BADASS_JLINK_JPACKAGE_HOME')
skipInstaller = false
if (System.properties['os.name'].toLowerCase() == "mac os x") {
installerType = "dmg"
} else if (System.properties['os.name'].toLowerCase().contains('windows')) {
installerType = "exe"
} else {
installerType = "deb"
}
installerOptions = ["--identifier", appName]
identifier = appName
}
}

0 comments on commit 61f511a

Please sign in to comment.