Skip to content

Commit

Permalink
Fixed release
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazzo committed Nov 28, 2023
1 parent 723d26b commit e9551fe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import java.lang.Thread.sleep

plugins {
alias(libs.plugins.kotlin.jvm)
alias(libs.plugins.kotlin.samReceiver)
Expand All @@ -24,7 +26,7 @@ gradlePlugin {
displayName = name
implementationClass = "io.github.gmazzo.publications.report.ReportPublicationsPlugin"
description = "Decorates the build logs with maven coordinates of artifacts published with `publish` or `publishToMavenLocal`"
tags.addAll("maven", "gradle", "publication", "maven-publish", "report")
tags.addAll("maven", "publication", "maven-publish", "report")
}
}
}
Expand All @@ -45,6 +47,7 @@ testing.suites.withType<JvmTestSuite> {
tasks.test {
systemProperty("projectRootDir", temporaryDir)
finalizedBy(tasks.jacocoTestReport)
doLast { sleep(1000) }
}

tasks.jacocoTestReport {
Expand Down

0 comments on commit e9551fe

Please sign in to comment.