Skip to content

Commit

Permalink
[MCOMPILER-550] make outputDirectory in testCompile writeable as well
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarwell committed Oct 22, 2023
1 parent f9decf2 commit c848d27
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,11 @@ public class TestCompilerMojo extends AbstractCompilerMojo {

/**
* The directory where compiled test classes go.
* <p>
* This parameter should only be modified in special cases.
* See the {@code compile}-Mojo for more information.
*/
@Parameter(defaultValue = "${project.build.testOutputDirectory}", required = true, readonly = true)
@Parameter(defaultValue = "${project.build.testOutputDirectory}", required = true, readonly = false)
private File outputDirectory;

/**
Expand Down

0 comments on commit c848d27

Please sign in to comment.