Skip to content

Commit 150512a

Browse files
committed
fix build
1 parent 61d8d6e commit 150512a

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

allure-junit-platform/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@ tasks.test {
3838
exclude("**/features/*")
3939
}
4040

41+
tasks.named<Pmd>("pmdMain") {
42+
// PMD type resolution reads the main compile classpath, which also
43+
// contains this module's published artifact via the Allure adapter setup.
44+
dependsOn(tasks.jar)
45+
}
46+
4147
val spiOffJar: Jar by tasks.creating(Jar::class) {
4248
from(sourceSets.getByName("main").output)
4349
archiveClassifier.set("spi-off")

0 commit comments

Comments
 (0)