Skip to content

Commit

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

/**
* The directory where compiled test classes go.
* <p>
* This parameter should only be modified in special cases.
* See the {@link CompilerMojo#outputDirectory} for more information.
*
* @see CompilerMojo#outputDirectory
*/
@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 718b07b

Please sign in to comment.