Exit Full View

FooCAD / foocad-core / build.gradle.kts

// foocad-core
plugins {
    kotlin("jvm")
}

dependencies {
    val jtsVersion: String by project
    val junitVersion: String by project
    implementation("org.locationtech.jts:jts-core:$jtsVersion")
    testImplementation("junit:junit:$junitVersion")
}

tasks.dokkaHtmlPartial {
    dokkaSourceSets {
        configureEach {
            includeNonPublic.set(false)
            skipDeprecated.set(true)
            reportUndocumented.set(false)
            skipEmptyPackages.set(true)
        }
    }
}