Skip to content

Commit 0488a08

Browse files
authored
Merge pull request #1583 from stalep/gradle-1533
Supports the implements configuration
2 parents ecfdd46 + b160e62 commit 0488a08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devtools/gradle/src/main/java/io/quarkus/gradle/ResolvedGradleArtifactDeps.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public ResolvedGradleArtifactDeps(Project project) {
6767
private List<AppDependency> extractDependencies(Project project) {
6868
Set<AppDependency> dependencies = new HashSet<>();
6969

70-
Configuration configuration = project.getConfigurations().getByName("compileOnly");
70+
Configuration configuration = project.getConfigurations().getByName("compileClasspath");
7171
ResolutionResult resolutionResult = configuration.getIncoming().getResolutionResult();
7272
ResolvedComponentResult root = resolutionResult.getRoot();
7373

0 commit comments

Comments
 (0)