Skip to content

Commit

Permalink
Updated to Gradle 6.0-rc-1 and Java 13
Browse files Browse the repository at this point in the history
  • Loading branch information
bwRavencl committed Oct 18, 2019
1 parent 6f1c654 commit d5d0e46
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install JDK
uses: actions/setup-java@v1
with:
java-version: 12
java-version: 13
- name: Install JDK with jpackage support
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ usage: ControllerBuddy [-autostart <arg>] [-profile <arg>] [-tray]
If an instance of ControllerBuddy is already running, launching a second instance with the `-profile` parameter can be used to trigger the loading of the specified profile in the first instance. This enables profile switching from any other application that can execute shell commands.

#### Dependencies:
- [OpenJDK 12](https://jdk.java.net/12/)
- [OpenJDK 13](https://jdk.java.net/13/)
- [OpenJDK with jpackage support](https://jdk.java.net/jpackage/)
- [Apache Commons CLI](https://commons.apache.org/proper/commons-cli)
- [Gson](https://github.com/google/gson)
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ plugins {
mainClassName = 'de.bwravencl.controllerbuddy.gui.Main'
version = "${org.ajoberstar.grgit.Grgit.open(dir: projectDir).describe(longDescr: true).replaceFirst(java.util.regex.Pattern.quote('-'), '.').replaceFirst(java.util.regex.Pattern.quote('-g'), '-')}"

sourceCompatibility = 12
targetCompatibility = 12
sourceCompatibility = 13
targetCompatibility = 13

ext {
jnaVersion = '5.4.0'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0-rc-1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit d5d0e46

Please sign in to comment.