Skip to content

Commit

Permalink
added --no-transfer-progress
Browse files Browse the repository at this point in the history
  • Loading branch information
nbauma109 committed May 9, 2024
1 parent d1fb7b2 commit 6b24862
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Example: ./build.sh


mvn clean verify -Dsigning.disabled=true
mvn clean verify -Dsigning.disabled=true --no-transfer-progress
2 changes: 1 addition & 1 deletion jitci-build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
export M3_VERSION=$(curl -Ls -o /dev/null -w %{url_effective} https://github.com/apache/maven/releases/latest | sed 's,https://github.com/apache/maven/releases/tag/maven-,,g')
export JAVA_HOME=$HOME/jdk-17.0.9+9
$HOME/apache-maven-${M3_VERSION}/bin/mvn -B install -DskipTests -Dsigning.disabled=true
$HOME/apache-maven-${M3_VERSION}/bin/mvn -B install -DskipTests -Dsigning.disabled=true --no-transfer-progress
2 changes: 1 addition & 1 deletion jitci-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ export JAVA_HOME=$HOME/jdk-17.0.9+9
export M3_VERSION=$(curl -Ls -o /dev/null -w %{url_effective} https://github.com/apache/maven/releases/latest | sed 's,https://github.com/apache/maven/releases/tag/maven-,,g')
curl -vkL https://archive.apache.org/dist/maven/maven-3/${M3_VERSION}/binaries/apache-maven-${M3_VERSION}-bin.zip -o $HOME/apache-maven-${M3_VERSION}-bin.zip
unzip -o $HOME/apache-maven-${M3_VERSION}-bin.zip -d $HOME
$HOME/apache-maven-${M3_VERSION}/bin/mvn -B de.qaware.maven:go-offline-maven-plugin:resolve-dependencies
$HOME/apache-maven-${M3_VERSION}/bin/mvn -B de.qaware.maven:go-offline-maven-plugin:resolve-dependencies --no-transfer-progress
2 changes: 1 addition & 1 deletion jitci-publish.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
export M3_VERSION=$(curl -Ls -o /dev/null -w %{url_effective} https://github.com/apache/maven/releases/latest | sed 's,https://github.com/apache/maven/releases/tag/maven-,,g')
export JAVA_HOME=$HOME/jdk-17.0.9+9
$HOME/apache-maven-${M3_VERSION}/bin/mvn -B deploy -DskipTests -Dfindbugs.skip=true -Dpmd.skip=true -Dcheckstyle.skip=true -Dsigning.disabled=true -DaltDeploymentRepository=jitci::default::file:///home/jitpack/deploy
$HOME/apache-maven-${M3_VERSION}/bin/mvn -B deploy -DskipTests -Dfindbugs.skip=true -Dpmd.skip=true -Dcheckstyle.skip=true -Dsigning.disabled=true -DaltDeploymentRepository=jitci::default::file:///home/jitpack/deploy --no-transfer-progress
4 changes: 2 additions & 2 deletions update-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ fi

mvn \
org.eclipse.tycho:tycho-versions-plugin:2.7.5:set-version \
-DnewVersion="$VERSION" -Dtycho.mode=maven
-DnewVersion="$VERSION" -Dtycho.mode=maven --no-transfer-progress

mvn \
org.eclipse.tycho:tycho-versions-plugin:2.7.5:update-eclipse-metadata \
-DnewVersion="$VERSION" -Dtycho.mode=maven
-DnewVersion="$VERSION" -Dtycho.mode=maven --no-transfer-progress

0 comments on commit 6b24862

Please sign in to comment.