Skip to content

Commit

Permalink
Force usage of version '2.10.0' of 'smallrye-graphql-*' projects
Browse files Browse the repository at this point in the history
  • Loading branch information
jmini committed Oct 7, 2024
1 parent 7eaae3b commit 6167f8d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions superheroes-graphql-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,13 @@ spotless {
removeUnusedImports()
}
}

//upgrade 'smallrye-graphql-*' projects, see https://github.com/quarkusio/quarkus/issues/43756
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.group == 'io.smallrye' && details.requested.name.startsWith('smallrye-graphql') && details.requested.version == '2.9.2') {
details.useVersion '2.10.0'
details.because 'See issue #43756'
}
}
}

0 comments on commit 6167f8d

Please sign in to comment.