Skip to content

Commit

Permalink
Apply JavaPlugin on the deployment project to solve the "Configuratio…
Browse files Browse the repository at this point in the history
…n with name 'annotationProcessor' not found" problem.

fixes quarkusio#32767
  • Loading branch information
peterfortuin committed Jul 24, 2023
1 parent 000c18b commit dc6eb2b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ private void registerTasks(Project project, QuarkusExtensionConfiguration quarku
//This must be run after the extension has been configured
Project deploymentProject = findDeploymentProject(project, quarkusExt);
if (deploymentProject != null) {
deploymentProject.getPlugins().apply(JavaPlugin.class);
ApplicationDeploymentClasspathBuilder.initConfigurations(deploymentProject);
deploymentProject.getPlugins().withType(
JavaPlugin.class,
Expand Down

0 comments on commit dc6eb2b

Please sign in to comment.