Files
kotlin-fork/libraries/examples/scripting/jvm-maven-deps/script/build.gradle.kts
T
Ilya Chernikov 2c3a50e4b3 Refactor scripting examples:
- split into script def and host part
- remove bad dependencies
- organize it in a way that should be typical for user scenarios
2018-04-04 16:23:56 +02:00

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" { }
}