Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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