mirror of
https://github.com/GayPizzaSpecifications/concrete.git
synced 2025-08-04 05:31:34 +00:00
More cleanup and support for concrete as part of a project hierarchy.
This commit is contained in:
@ -1,5 +1,3 @@
|
||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||
|
||||
plugins {
|
||||
`kotlin-dsl`
|
||||
kotlin("plugin.serialization") version "1.6.21"
|
||||
@ -33,22 +31,22 @@ gradlePlugin {
|
||||
implementationClass = "lgbt.mystic.foundation.concrete.ConcreteRootPlugin"
|
||||
}
|
||||
|
||||
create("concrete-project") {
|
||||
id = "lgbt.mystic.foundation.concrete-project"
|
||||
create("concrete-plugin") {
|
||||
id = "lgbt.mystic.foundation.concrete-plugin"
|
||||
implementationClass = "lgbt.mystic.foundation.concrete.ConcreteProjectPlugin"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
java {
|
||||
val version = JavaVersion.toVersion("1.8")
|
||||
val version = JavaVersion.toVersion("11")
|
||||
sourceCompatibility = version
|
||||
targetCompatibility = version
|
||||
}
|
||||
|
||||
tasks.withType<KotlinCompile> {
|
||||
tasks.compileKotlin {
|
||||
kotlinOptions {
|
||||
jvmTarget = "1.8"
|
||||
jvmTarget = "11"
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user