Fix missing project descriptions in pom files
This commit is contained in:
parent
b16fb559a1
commit
30b5d918c7
@ -91,7 +91,6 @@ subprojects {
|
||||
publications.withType<MavenPublication> {
|
||||
pom {
|
||||
name.set(project.name)
|
||||
description.set(project.description)
|
||||
url.set("https://github.com/michaelbull/kotlin-result")
|
||||
inceptionYear.set("2017")
|
||||
|
||||
|
@ -39,3 +39,10 @@ kotlin {
|
||||
}
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications.withType<MavenPublication> {
|
||||
pom {
|
||||
description.set(project.description)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -73,3 +73,10 @@ kotlin {
|
||||
}
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications.withType<MavenPublication> {
|
||||
pom {
|
||||
description.set(project.description)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user