Skip to content

Commit

Permalink
revert back to java17, as java21 seems to cause issues, when running …
Browse files Browse the repository at this point in the history
…the native executables
  • Loading branch information
patschuh committed Oct 20, 2023
1 parent a54ce33 commit d80d9f8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gradle.yaml
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ macos-12, ubuntu-22.04, windows-2022 ]
java: [ '21' ]
java: [ '17' ]
fail-fast: false
name: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -141,6 +141,6 @@ jobs:
base-branch: main
create-pullrequest: true
tag-name: ${{ steps.extract-version.outputs.tag-name }}
download-url: https://github.com/patschuh/KafkaEsque/releases/download/v${{ steps.extract-version.outputs.tag-name }}/kafkaesque-${{ steps.extract-version.outputs.tag-name }}.dmg
download-url: https://github.com/patschuh/KafkaEsque/releases/download/v${{ steps.extract-version.outputs.tag-name }}/KafkaEsque-${{ steps.extract-version.outputs.tag-name }}.dmg
env:
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}
8 changes: 4 additions & 4 deletions build.gradle
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = 'at.esque.kafka'
version = '2.7.2'
version = '2.7.3'

repositories {
mavenCentral()
Expand Down Expand Up @@ -68,12 +68,12 @@ application {
}

java {
sourceCompatibility = '21'
targetCompatibility = '21'
sourceCompatibility = '17'
targetCompatibility = '17'
}

javafx {
version = '21'
version = '17'
modules = ['javafx.controls', 'javafx.fxml']
}

Expand Down

0 comments on commit d80d9f8

Please sign in to comment.