Skip to content

Commit

Permalink
Add missing POM data
Browse files Browse the repository at this point in the history
- project name
- description
  • Loading branch information
buchner committed Oct 11, 2020
1 parent 276b3c1 commit f7bbd40
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import java.io.ByteArrayOutputStream
import kotlin.streams.toList
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

buildscript { repositories { mavenCentral() } }

Expand Down Expand Up @@ -92,6 +92,11 @@ subprojects {
artifact(dokkaJar)
artifact(sourcesJar)
pom {
name.set("Log Spy Kt")
description.set(
"A Kotlin-centric, Java-friendly, testing framework agnostic library for " +
"unit testing logging in the JVM."
)
url.set("https://github.com/buchner/log-spy-kt-extension")
licenses {
license {
Expand Down

0 comments on commit f7bbd40

Please sign in to comment.