Skip to content

Commit

Permalink
♻️ refactor: refactor codebase #3
Browse files Browse the repository at this point in the history
  • Loading branch information
pnguyen215 committed Sep 1, 2024
1 parent fc9825b commit ed83bd0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ apply plugin: 'java'
apply plugin: 'eclipse'

// Set the Java version compatibility for the project
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'
}
//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 ed83bd0

Please sign in to comment.