import org.jetbrains.kotlin.gradle.tasks.KotlinCompile import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask import org.gradle.api.tasks.testing.logging.TestExceptionFormat import org.gradle.api.tasks.testing.logging.TestLogEvent plugins { id("com.github.ben-manes.versions") version "0.50.0" id("io.gitlab.arturbosch.detekt") version "1.23.3" id("java") id("maven-publish") id("org.jetbrains.dokka") version "1.9.10" id("org.jetbrains.kotlinx.kover") version "0.7.4" id("org.sonarqube") version "4.4.1.3373" id("signing") kotlin("jvm") version "1.9.21" } group = "net.thauvin.erik" version = "1.1.1-SNAPSHOT" description = "A small library for posting to Pinboard" val gitHub = "ethauvin/$name" val mavenUrl = "https://github.com/$gitHub" val deployDir = "deploy" var isRelease = "release" in gradle.startParameter.taskNames val publicationName = "mavenJava" object Versions { const val OKHTTP = "4.12.0" } fun isNonStable(version: String): Boolean { val stableKeyword = listOf("RELEASE", "FINAL", "GA").any { version.uppercase().contains(it) } val regex = "^[0-9,.v-]+(-r)?$".toRegex() val isStable = stableKeyword || regex.matches(version) return isStable.not() } repositories { mavenCentral() maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") } } dependencies { implementation(platform(kotlin("bom"))) implementation("com.squareup.okhttp3:okhttp:${Versions.OKHTTP}") implementation("com.squareup.okhttp3:logging-interceptor:${Versions.OKHTTP}") testImplementation("org.testng:testng:7.8.0") } java { sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 withSourcesJar() } detekt { //toolVersion = "main-SNAPSHOT" baseline = project.rootDir.resolve("config/detekt/baseline.xml") } koverReport { defaults { xml { onCheck = true } html { onCheck = true } } } sonarqube { properties { property("sonar.projectKey", "ethauvin_$name") property("sonar.organization", "ethauvin-github") property("sonar.host.url", "https://sonarcloud.io") property("sonar.sourceEncoding", "UTF-8") property("sonar.coverage.jacoco.xmlReportPaths", "${layout.buildDirectory.get()}/reports/kover/report.xml") } } val javadocJar by tasks.creating(Jar::class) { dependsOn(tasks.dokkaJavadoc) from(tasks.dokkaJavadoc) archiveClassifier.set("javadoc") description = "Assembles a JAR of the generated Javadoc." group = JavaBasePlugin.DOCUMENTATION_GROUP } tasks { withType { testLogging { exceptionFormat = TestExceptionFormat.FULL events = setOf(TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED) } useTestNG() } withType { kotlinOptions.jvmTarget = java.targetCompatibility.toString() } withType { destination = file("$projectDir/pom.xml") } withType { rejectVersionIf { isNonStable(candidate.version) } } clean { doLast { project.delete(fileTree(deployDir)) } } val copyToDeploy by registering(Copy::class) { from(configurations.runtimeClasspath) { exclude("annotations-*.jar") exclude("kotlin-*.jar") } from(jar) into(deployDir) } register("deploy") { description = "Copies all needed files to the $deployDir directory." group = PublishingPlugin.PUBLISH_TASK_GROUP dependsOn(clean, build, jar) outputs.dir(deployDir) inputs.files(copyToDeploy) mustRunAfter(clean) } val gitIsDirty by registering(Exec::class) { description = "Fails if git has uncommitted changes." group = "verification" commandLine("git", "diff", "--quiet", "--exit-code") } val gitTag by registering(Exec::class) { description = "Tags the local repository with version ${project.version}" group = PublishingPlugin.PUBLISH_TASK_GROUP dependsOn(gitIsDirty) if (isRelease) { commandLine("git", "tag", "-a", project.version, "-m", "Version ${project.version}") } } register("release") { description = "Publishes version ${project.version} to local repository." group = PublishingPlugin.PUBLISH_TASK_GROUP dependsOn(wrapper, "deploy", gitTag, publishToMavenLocal) } } publishing { publications { create(publicationName) { from(components["java"]) artifact(javadocJar) pom { name.set(project.name) description.set(project.description) url.set(mavenUrl) licenses { license { name.set("BSD 3-Clause") url.set("https://opensource.org/licenses/BSD-3-Clause") } } developers { developer { id.set("ethauvin") name.set("Erik C. Thauvin") email.set("erik@thauvin.net") url.set("https://erik.thauvin.net/") } } scm { connection.set("scm:git:https//github.com/$gitHub.git") developerConnection.set("scm:git:git@github.com:$gitHub.git") url.set(mavenUrl) } issueManagement { system.set("GitHub") url.set("$mavenUrl/issues") } } } } repositories { maven { name = "ossrh" url = if (project.version.toString().contains("SNAPSHOT")) uri("https://oss.sonatype.org/content/repositories/snapshots/") else uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/") credentials(PasswordCredentials::class) } } } signing { useGpgCmd() sign(publishing.publications[publicationName]) }