Skip to content

Commit

Permalink
[MCOMPILER-501] compileSourceRoots parameter should be writable
Browse files Browse the repository at this point in the history
Make compileSourceRoots read/write so that it can be used in multi-release jars without issuing a warning
  • Loading branch information
gnodet committed Dec 9, 2022
1 parent 752a1fa commit 8daad08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class CompilerMojo
/**
* The source directories containing the sources to be compiled.
*/
@Parameter( defaultValue = "${project.compileSourceRoots}", readonly = true, required = true )
@Parameter( defaultValue = "${project.compileSourceRoots}", readonly = false, required = true )
private List<String> compileSourceRoots;

/**
Expand Down

0 comments on commit 8daad08

Please sign in to comment.