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