Skip to content

Commit 627c04e

Browse files
committed
[MCOMPILER-550] make outputDirectory in testCompile writable as well
1 parent 92b766f commit 627c04e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/main/java/org/apache/maven/plugin/compiler/TestCompilerMojo.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,13 @@ public class TestCompilerMojo extends AbstractCompilerMojo {
7575

7676
/**
7777
* The directory where compiled test classes go.
78+
* <p>
79+
* This parameter should only be modified in special cases.
80+
* See the {@link CompilerMojo#outputDirectory} for more information.
81+
*
82+
* @see CompilerMojo#outputDirectory
7883
*/
79-
@Parameter(defaultValue = "${project.build.testOutputDirectory}", required = true, readonly = true)
84+
@Parameter(defaultValue = "${project.build.testOutputDirectory}", required = true, readonly = false)
8085
private File outputDirectory;
8186

8287
/**

0 commit comments

Comments
 (0)