Skip to content

Commit

Permalink
Minor clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
breskeby committed Nov 8, 2024
1 parent e2a9822 commit 137d0f1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ private void configureJavadocForConfiguration(Project project, boolean shadow, C
}

private void configureDependency(Project project, boolean shadowed, ProjectDependency dep) {
// we should use variant aware dependency management to reoslve artifacts required for javadoc here
// we should use variant aware dependency management to resolve artifacts required for javadoc here
Project upstreamProject = project.project(((ProjectDependencyInternal) dep).getIdentityPath().getPath());
if (upstreamProject == null) {
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ public void apply(final Project project) {
return;
}

// testPluginMetadata.getAttributes().attribute(Attribute.of("artifactType", String.class), "plugin-metadata");
Configuration testImplementationConfig = project.getConfigurations().getByName("testImplementation");
testImplementationConfig.getDependencies().all(dep -> {
if (dep instanceof ProjectDependency && dep.getGroup().contains("plugin")) {
Expand Down

0 comments on commit 137d0f1

Please sign in to comment.