Skip to content

Commit

Permalink
bump sourceCompatibility to java 11 (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
topi314 authored Mar 23, 2024
1 parent d3a184a commit 4232036
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ features and fixes from [Walkyst's fork](/~https://github.com/Walkyst/lavaplayer-f

**Please read the [FAQ](FAQ.md) in case of issues.**

> [Note]
> This fork requires Java 11 or newer. If you need Java 8 support you should update as java 8 was released 10 years ago.
#### Maven package

Replace `x.y.z` with the latest version
Expand Down
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ subprojects {
apply<MavenPublishPlugin>()

configure<JavaPluginExtension> {
sourceCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

configure<PublishingExtension> {
Expand Down

0 comments on commit 4232036

Please sign in to comment.