blob: e29f13553734bc4bb32f1e2020676adc3a781e54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
subprojects {
apply {
plugin("maven-publish")
}
dependencies {
compileOnly(project(":core"))
compileOnly(kotlin("stdlib-jdk8"))
// compileOnly(project(":coreDependencies", configuration = "shadow")) // uncomment if IntelliJ does not recognize pacakges from IntelliJ
testImplementation(project(":testApi"))
testImplementation(kotlin("stdlib-jdk8"))
testImplementation("junit:junit:4.13")
}
}
|