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.
2 parents ecfdd46 + b160e62 commit 0488a08Copy full SHA for 0488a08
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