2c3a50e4b3
- split into script def and host part - remove bad dependencies - organize it in a way that should be typical for user scenarios
1 line
351 B
Kotlin
1 line
351 B
Kotlin
|
|
apply {
|
|
plugin("kotlin")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":kotlin-scripting-jvm"))
|
|
compile(project(":kotlin-script-util"))
|
|
runtime("com.jcabi:jcabi-aether:0.10.1")
|
|
runtime("org.sonatype.aether:aether-api:1.13.1")
|
|
runtime("org.apache.maven:maven-core:3.0.3")
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { }
|
|
}
|
|
|