Merge branch 'master' into tyler/save-reports-fix

This commit is contained in:
Tyler Benson 2018-01-12 06:38:25 +10:00 committed by GitHub
commit 53d7c7a884
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,8 @@ class VersionScanPlugin implements Plugin<Project> {
project.extensions.create("versionScan", VersionScanExtension) project.extensions.create("versionScan", VersionScanExtension)
def scanVersions = project.task('scanVersions') { def scanVersions = project.task('scanVersions') {
description = "Queries for all versions of configured modules and finds key classes" group = 'VersionScan'
description = "Verify instrumentation against runtime classpaths."
} }
def hasRelevantTask = project.gradle.startParameter.taskNames.any { it.contains('scanVersions') } def hasRelevantTask = project.gradle.startParameter.taskNames.any { it.contains('scanVersions') }