Skip to content

Commit

Permalink
[MCOMPILER-562] Add property maven.compiler.outputDirectory to Compil…
Browse files Browse the repository at this point in the history
…erMojo (#213)
  • Loading branch information
jGauravGupta committed Dec 10, 2023
1 parent ea74978 commit 1d05342
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,11 @@ public class CompilerMojo extends AbstractCompilerMojo {
* it is recommended to use the {@code <release>} property
* in conjunction with the ${multiReleaseOutput} parameter instead.
*/
@Parameter(defaultValue = "${project.build.outputDirectory}", required = true, readonly = false)
@Parameter(
property = "maven.compiler.outputDirectory",
defaultValue = "${project.build.outputDirectory}",
required = true,
readonly = false)
private File outputDirectory;

/**
Expand Down

0 comments on commit 1d05342

Please sign in to comment.