aboutsummaryrefslogtreecommitdiff
path: root/plugins/build.gradle.kts
blob: c7c29140e40f3446cf01d7f1310d761e2dbb0c3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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("org.junit.jupiter:junit-jupiter:5.6.0")
    }

    tasks.test {
        useJUnitPlatform()
        ignoreFailures = true
        testLogging {
            events("passed", "skipped", "failed")
        }
    }
}