Skip to content

Commit

Permalink
Upgrade to JDK 13 (#5427)
Browse files Browse the repository at this point in the history
  • Loading branch information
LinusDietz authored and koppor committed Nov 11, 2019
1 parent ceddb8a commit a72a23b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 12.0.2
java-version: 13
- uses: actions/cache@v1
with:
path: ~/.gradle/caches
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: java
jdk:
- openjdk12
- openjdk13

# we test at Ubuntu Trusty (Ubuntu 14.04 LTS)
# see https://docs.travis-ci.com/user/trusty-ci-environment/
Expand Down
8 changes: 5 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
id 'com.github.ben-manes.versions' version '0.27.0'
id 'org.javamodularity.moduleplugin' version '1.5.0'
id 'org.openjfx.javafxplugin' version '0.0.8'
id 'org.beryx.jlink' version '2.16.2'
id 'org.beryx.jlink' version '2.16.3'
}

gradle.startParameter.showStacktrace = org.gradle.api.logging.configuration.ShowStacktrace.ALWAYS
Expand All @@ -42,8 +42,10 @@ apply from: 'eclipse.gradle'

group = "org.jabref"
version = "5.0.0"
sourceCompatibility = 12
targetCompatibility = 12

sourceCompatibility = 13
targetCompatibility = 13

mainClassName = "$moduleName/org.jabref.JabRefLauncher"

// TODO: Ugly workaround to temporarily ignore build errors to dependencies of latex2unicode
Expand Down

0 comments on commit a72a23b

Please sign in to comment.