Skip to content

Commit

Permalink
♻️ refactor: refactor codebase #4
Browse files Browse the repository at this point in the history
  • Loading branch information
pnguyen215 committed Aug 11, 2024
1 parent fe575e7 commit 77f9472
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,14 @@ apply plugin: 'java'
apply plugin: 'eclipse'

// Set the Java version compatibility for the project
// sourceCompatibility = '1.8'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8) // Set this to 8, 11, or 17 based on your requirement
}
// Set target compatibility for Java 8
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}

repositories {
// Use Maven Central for resolving dependencies.
Expand Down

0 comments on commit 77f9472

Please sign in to comment.