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