Skip to content

Commit

Permalink
Bump version to 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
airsquared committed Oct 7, 2023
1 parent d0daaec commit 9e3aae4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pluginVersionMajor = 3
pluginVersionMinor = 0
pluginVersionPatch = 0
pluginVersionPatch = 1
#pluginVersionLabel = rc-1
pluginReleaseBuild = true
pluginReleaseBuild = false
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9e3aae4

Please sign in to comment.