We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61d8d6e commit 150512aCopy full SHA for 150512a
1 file changed
allure-junit-platform/build.gradle.kts
@@ -38,6 +38,12 @@ tasks.test {
38
exclude("**/features/*")
39
}
40
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
+
47
val spiOffJar: Jar by tasks.creating(Jar::class) {
48
from(sourceSets.getByName("main").output)
49
archiveClassifier.set("spi-off")
0 commit comments