Skip to content

Commit

Permalink
GH-294 Add support for use of LiteCommands on Velocity with JDK 11 (#294
Browse files Browse the repository at this point in the history
)

* Add support for use of LiteCommands on Velocity with JDK 11

* Update gradle.yml

---------

Co-authored-by: Norbert Dejlich <[email protected]>
  • Loading branch information
rchomczyk and Rollczi authored Nov 23, 2023
1 parent 934ff38 commit 140d9ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: LiteCommands Java CI with Gradle

on:
push:
branches: [ master ]
branches: [ master, v2.x.x ]
pull_request:
branches: [ master ]
branches: [ master, v2.x.x ]
jobs:
build:
name: "Build with JDK${{ matrix.jdk }}"
Expand Down
4 changes: 2 additions & 2 deletions litecommands-velocity/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ publishing {
}

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

0 comments on commit 140d9ce

Please sign in to comment.