Skip to content

Commit ec75f49

Browse files
committed
♻️ refactor: refactor codebase #3
1 parent 76a5dfe commit ec75f49

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Diff for: plugin/build.gradle

+8-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,14 @@ apply plugin: 'java'
2626
apply plugin: 'eclipse'
2727

2828
// Set the Java version compatibility for the project
29-
// sourceCompatibility = '1.8'
29+
java {
30+
toolchain {
31+
languageVersion = JavaLanguageVersion.of(8) // Set this to 8, 11, or 17 based on your requirement
32+
}
33+
// Set target compatibility for Java 8
34+
sourceCompatibility = '1.8'
35+
targetCompatibility = '1.8'
36+
}
3037

3138
repositories {
3239
// Use Maven Central for resolving dependencies.

0 commit comments

Comments
 (0)