aboutsummaryrefslogtreecommitdiff
path: root/plugins/build.gradle.kts
blob: a95b612e1009fd3d49ce518fc0334fdf0b2fa781 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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(":testApi"))
        testImplementation("junit:junit:4.13")
    }
}