mirror of
https://github.com/jlengrand/detekt.git
synced 2026-03-10 08:11:23 +00:00
* Extract detekt related build logic to own script in buildSrc * Add buildSrc/build folder to excludes * Extract github release to own releasing build file * Extract common and publishing build part * Extract versions and sonar plugins to housekeeping script * Move dokka plugin to buildSrc * Move jacoco setup to commons plugin * Automate version updates * Rename publishing to packaging to avoid conflict with org.gradle.publishing * Do not increment the version on build configuration phase * State why build scan is left in settings build file * Implement task to generate the doc version * Implement task to update the self analysis version * Revert dryRun
16 lines
287 B
Kotlin
16 lines
287 B
Kotlin
plugins {
|
|
commons
|
|
apps
|
|
packaging
|
|
releasing
|
|
detekt
|
|
id("org.jetbrains.dokka") apply false
|
|
id("com.github.ben-manes.versions")
|
|
id("org.sonarqube")
|
|
}
|
|
|
|
buildScan {
|
|
termsOfServiceUrl = "https://gradle.com/terms-of-service"
|
|
termsOfServiceAgree = "yes"
|
|
}
|