blob: fae23ee37eab42415a0ead1731682aa927c7eefd [file] [log] [blame]
plugins {
`java-platform`
`publishing-conventions`
}
description = "${rootProject.description} (Bill of Materials)"
dependencies {
constraints {
val mavenizedProjects: List<Project> by rootProject.extra
mavenizedProjects.sorted()
.filter { it.name != "junit-platform-console-standalone" }
.forEach { api("${it.group}:${it.name}:${it.version}") }
}
}
publishing.publications.named<MavenPublication>("maven") {
from(components["javaPlatform"])
pom {
description.set("This Bill of Materials POM can be used to ease dependency management " +
"when referencing multiple JUnit artifacts using Gradle or Maven.")
withXml {
val filteredContent = asString().replace("\\s*<scope>compile</scope>".toRegex(), "")
asString().clear().append(filteredContent)
}
}
}
tasks.withType<GenerateMavenPom>().configureEach {
doLast {
val xml = destination.readText()
require(xml.indexOf("<dependencies>") == xml.lastIndexOf("<dependencies>")) {
"BOM must contain exactly one <dependencies> element but contained multiple:\n$destination"
}
require(xml.contains("<dependencyManagement>")) {
"BOM must contain a <dependencyManagement> element:\n$destination"
}
require(!xml.contains("<scope>")) {
"BOM must not contain <scope> elements:\n$destination"
}
}
}