参照したサイト
・https://maven.apache.org/surefire/maven-surefire-plugin/examples/system-properties.html
・https://stackoverflow.com/questions/3231797/specify-system-property-to-maven-project
メモ
・環境変数のfile.encoding設定
変数名:JAVA_TOOL_OPTIONS
変数値:-Dfile.encoding=UTF-8
・maven コマンド
// テストファイルスキップ
mvn -Dmaven.test.skip=true
// システムプロパティ設定
例:file.encoding設定
mvn -Dfile.encoding=sjis 要検証
//mavenのclean package
mvn clean package