Skip to content

Commit

Permalink
Allow aggregate-javadoc on java projects
Browse files Browse the repository at this point in the history
fixes #1296
  • Loading branch information
larsgrefer committed Feb 5, 2025
1 parent 2ff0984 commit 2346aa9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void apply(Project project) {
project.getPlugins().apply(JavaBasePlugin.class);

project.getPlugins().withType(JavaPlugin.class, jp -> {
throw new IllegalStateException("The aggregate-javadoc plugin should not be used on a java project");
project.getLogger().warn("The aggregate-javadoc plugin should not be used on a java project");
});

createConfigurations(project);
Expand Down

0 comments on commit 2346aa9

Please sign in to comment.