We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2364c64 commit b238301Copy full SHA for b238301
build.gradle
@@ -30,6 +30,7 @@ gradlePlugin {
30
id = 'org.scoverage'
31
implementationClass = 'org.scoverage.ScoveragePlugin'
32
displayName = 'Gradle Scoverage plugin'
33
+ description = 'gradle-scoverage is a Gradle plugin for calculating code coverage using Scoverage'
34
tags.set(['coverage', 'scala', 'scoverage'])
35
}
36
@@ -183,6 +184,7 @@ if (project.properties.containsKey('signing.keyId')) {
183
184
signing {
185
sign publishing.publications.mavenJava
186
187
+ project.tasks.publishMavenJavaPublicationToMavenRepository.inputs.files(project.tasks.signMavenJavaPublication)
188
189
190
// see https://stackoverflow.com/questions/44679007
0 commit comments