Skip to content

Commit

Permalink
Bump gateway and java version
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikl committed Sep 3, 2024
1 parent efbf7e3 commit bba6e25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
strategy:
matrix:
java: [8, 11]
java: [11]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
env:
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ repositories {
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

dependencies {
Expand All @@ -43,7 +43,7 @@ dependencies {
implementation("org.jfree:jfreechart:1.0.19")
implementation("org.swinglabs:swingx:1.6.1")

implementation("org.openmicroscopy:omero-gateway:5.9.1") {
implementation("org.openmicroscopy:omero-gateway:5.9.3") {
// Conflicts with `net.java.dev.jna`
exclude group: "com.sun.jna", module: "jna"
}
Expand Down

0 comments on commit bba6e25

Please sign in to comment.