Commit ad0752fe by modmuss50

Fix some IDE's (vsc) not detecting the correct java version to compile for.

parent a126c791
......@@ -3,6 +3,9 @@ plugins {
id 'maven-publish'
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
archivesBaseName = project.archives_base_name
version = project.mod_version
group = project.maven_group
......@@ -41,9 +44,6 @@ tasks.withType(JavaCompile).configureEach {
def targetVersion = 8
if (JavaVersion.current().isJava9Compatible()) {
it.options.release = targetVersion
} else {
it.sourceCompatibility = JavaVersion.toVersion(targetVersion)
it.targetCompatibility = JavaVersion.toVersion(targetVersion)
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment