Skip to content

Commit

Permalink
feat(#2592): default values
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Nov 16, 2023
1 parent 7e308c3 commit 463412e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions eo-maven-plugin/src/main/java/org/eolang/maven/PrintMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ public final class PrintMojo extends SafeMojo {
*/
@Parameter(
property = "eo.printSourcesDir",
required = true
required = true,
defaultValue = "${project.basedir}/src/main/xmir"
)
private File printSourcesDir;

Expand All @@ -64,7 +65,8 @@ public final class PrintMojo extends SafeMojo {
*/
@Parameter(
property = "eo.printOutputDir",
required = true
required = true,
defaultValue = "${project.build.directory}/generated-sources/eo"
)
private File printOutputDir;

Expand Down

0 comments on commit 463412e

Please sign in to comment.