diff --git a/build.gradle b/build.gradle index af8856a5..f787faf3 100644 --- a/build.gradle +++ b/build.gradle @@ -49,7 +49,7 @@ repositories { } dependencies { - implementation 'org.ow2.asm:asm:9.5' + implementation 'org.ow2.asm:asm:9.6' testImplementation 'org.spockframework:spock-core:2.4-M1-groovy-3.0' diff --git a/gradle.properties b/gradle.properties index bfa7222b..5a81a381 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ pluginVersionMajor = 3 pluginVersionMinor = 0 -pluginVersionPatch = 0 +pluginVersionPatch = 1 #pluginVersionLabel = rc-1 -pluginReleaseBuild = true +pluginReleaseBuild = false diff --git a/src/main/groovy/org/beryx/jlink/util/ServiceLoaderUseScanner.groovy b/src/main/groovy/org/beryx/jlink/util/ServiceLoaderUseScanner.groovy index 92a6147d..6db28a20 100644 --- a/src/main/groovy/org/beryx/jlink/util/ServiceLoaderUseScanner.groovy +++ b/src/main/groovy/org/beryx/jlink/util/ServiceLoaderUseScanner.groovy @@ -109,7 +109,7 @@ class ServiceLoaderUseScanner { String invocation = "$lastClassName.$lastMethodName" if(!(invocation in unresolvedInvocations)) { unresolvedInvocations.add(invocation) - LOGGER.warn( "Cannot derive uses clause from service loader invocation in: $invocation().") + LOGGER.warn("Cannot derive uses clause from service loader invocation in: $invocation(). If you get an error at runtime, please add the `uses` clause to the `mergedModule` block for the class that is being referenced by this method.") } } else { usedServices << lastType.className