Skip to content

Commit

Permalink
Merge pull request #23 from terrestris/add-ntp-option
Browse files Browse the repository at this point in the history
feat: add -ntp option
  • Loading branch information
simonseyock authored Sep 6, 2023
2 parents 58ffd21 + ab64d7f commit e4634a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/maven.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async function deploy(logger, nextVersion, mavenTarget, settingsPath, clean) {
try {
await exec(
'mvn',
[...cleanTarget, ...mavenTarget.split(' '), '--batch-mode', '-DskipTests', '--settings', settingsPath]
[...cleanTarget, ...mavenTarget.split(' '), '--batch-mode', '--no-transfer-progress', '-DskipTests', '--settings', settingsPath]
);
} catch (e) {
logger.error('failed to deploy to maven');
Expand Down

0 comments on commit e4634a8

Please sign in to comment.