blob: 5d04060f3d8ce3e0edafbe25e90c081c0fda75a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
publishing {
publications {
register<MavenPublication>("kotlin-as-java-plugin") {
artifactId = "kotlin-as-java-plugin"
from(components["java"])
}
}
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
compileOnly(project(":coreDependencies", configuration = "shadow"))
testImplementation(project(":core"))
testImplementation(project(":coreDependencies", configuration = "shadow"))
testImplementation(project(":testApi"))
testImplementation("junit:junit:4.13")
}
|