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 80d8166 commit b160e62Copy full SHA for b160e62
devtools/gradle/src/main/java/io/quarkus/gradle/ResolvedGradleArtifactDeps.java
@@ -67,7 +67,7 @@ public ResolvedGradleArtifactDeps(Project project) {
67
private List<AppDependency> extractDependencies(Project project) {
68
Set<AppDependency> dependencies = new HashSet<>();
69
70
- Configuration configuration = project.getConfigurations().getByName("compileOnly");
+ Configuration configuration = project.getConfigurations().getByName("compileClasspath");
71
ResolutionResult resolutionResult = configuration.getIncoming().getResolutionResult();
72
ResolvedComponentResult root = resolutionResult.getRoot();
73
0 commit comments