16 lines
317 B
Plaintext
Executable File
16 lines
317 B
Plaintext
Executable File
import org.plutoengine.Versions
|
|
|
|
subprojects {
|
|
apply(plugin = "java")
|
|
apply(plugin = "application")
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
configure<JavaPluginExtension> {
|
|
sourceCompatibility = Versions.javaTargetVersion
|
|
targetCompatibility = Versions.javaTargetVersion
|
|
}
|
|
}
|