Skip to content

Commit

Permalink
fix(java): surpress maven output in cdk.json (#3624)
Browse files Browse the repository at this point in the history
Update the java app init template to use use `--quiet` when running `mvn exec`
so that output can be parsed.

Fixes #3571
  • Loading branch information
Elad Ben-Israel authored and mergify[bot] committed Aug 12, 2019
1 parent 9f1bfae commit 02e097b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk/lib/init-templates/app/java/cdk.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"app": "mvn exec:java"
"app": "mvn -q exec:java"
}

0 comments on commit 02e097b

Please sign in to comment.