File tree Expand file tree Collapse file tree 9 files changed +12
-16
lines changed
Expand file tree Collapse file tree 9 files changed +12
-16
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ source "${DIR}/../find_maven.sh"
2020
2121: ${WITH_COVERAGE:= " false" }
2222
23- MAVEN_OPTIONS=' -V -B -Dmaven.javadoc.skip=true -DskipTests --no-transfer-progress '
23+ MAVEN_OPTIONS=' -V -B -Dmaven.javadoc.skip=true -DskipTests'
2424
2525if [[ " ${WITH_COVERAGE} " != " true" ]]; then
2626 MAVEN_OPTIONS=" ${MAVEN_OPTIONS} -Djacoco.skip"
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ REPORT_DIR=${OUTPUT_DIR:-"$DIR/../../target/checkstyle"}
2323mkdir -p " $REPORT_DIR "
2424REPORT_FILE=" $REPORT_DIR /summary.txt"
2525
26- MAVEN_OPTIONS=' -B -fae --no-transfer-progress - Dcheckstyle.failOnViolation=false'
26+ MAVEN_OPTIONS=' -B -fae -Dcheckstyle.failOnViolation=false'
2727
2828declare -i rc
2929${MVN} ${MAVEN_OPTIONS} checkstyle:check | tee " ${REPORT_DIR} /output.log"
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ mkdir -p "$REPORT_DIR"
2929JACOCO_VERSION=$( ${MVN} help:evaluate -Dexpression=jacoco.version -q -DforceStdout)
3030
3131# Install jacoco cli
32- ${MVN} --non-recursive --no-transfer-progress \
32+ ${MVN} --non-recursive \
3333 org.apache.maven.plugins:maven-dependency-plugin:3.6.1:copy \
3434 -Dartifact=org.jacoco:org.jacoco.cli:${JACOCO_VERSION} :jar:nodeps
3535
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ source "${DIR}/../find_maven.sh"
2020
2121: ${WITH_COVERAGE:= " false" }
2222
23- MAVEN_OPTIONS=' -B -fae --no-transfer-progress '
23+ MAVEN_OPTIONS=' -B -fae'
2424
2525if ! type unionBugs > /dev/null 2>&1 || ! type convertXmlToText > /dev/null 2>&1 ; then
2626 # shellcheck disable=SC2086
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ mkdir -p "$REPORT_DIR"
2323
2424REPORT_FILE=" $REPORT_DIR /summary.txt"
2525
26- ${MVN} -B -fn --no-transfer-progress org.apache.rat:apache-rat-plugin:0.13:check
26+ ${MVN} -B -fn org.apache.rat:apache-rat-plugin:0.13:check
2727
2828cd " $DIR /../.." || exit 1
2929
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ source "${DIR}/../find_maven.sh"
2020
2121: ${WITH_COVERAGE:= " false" }
2222
23- MAVEN_OPTIONS=' -V -B -Dmaven.javadoc.skip=true -DskipTests --no-transfer-progress '
23+ MAVEN_OPTIONS=' -V -B -Dmaven.javadoc.skip=true -DskipTests'
2424
2525if [[ " ${WITH_COVERAGE} " != " true" ]]; then
2626 MAVEN_OPTIONS=" ${MAVEN_OPTIONS} -Djacoco.skip"
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ if [ ! "$SONAR_TOKEN" ]; then
2323 exit 1
2424fi
2525
26- ${MVN} -B verify -DskipShade -DskipTests --no-transfer-progress \
26+ ${MVN} -B verify -DskipShade -DskipTests \
2727 org.sonarsource.scanner.maven:sonar-maven-plugin:3.6.0.1398:sonar \
2828 -Dsonar.coverage.jacoco.xmlReportPaths=" $( pwd) /target/coverage/all.xml" \
2929 -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=apache -Dsonar.projectKey=apache-ratis
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ REPORT_DIR=${OUTPUT_DIR:-"$DIR/../../target/unit"}
3434mkdir -p " $REPORT_DIR "
3535
3636export MAVEN_OPTS=" -Xmx4096m"
37- MAVEN_OPTIONS=' -V -B --no-transfer-progress '
37+ MAVEN_OPTIONS=' -V -B'
3838
3939if [[ " ${FAIL_FAST} " == " true" ]]; then
4040 MAVEN_OPTIONS=" ${MAVEN_OPTIONS} --fail-fast -Dsurefire.skipAfterFailureCount=1"
Original file line number Diff line number Diff line change 5151 <id >${distMgmtSnapshotsId} </id >
5252 <name >${distMgmtSnapshotsName} </name >
5353 <url >${distMgmtSnapshotsUrl} </url >
54+ <releases >
55+ <enabled >false</enabled >
56+ </releases >
5457 </repository >
5558 <repository >
5659 <id >repository.jboss.org</id >
9194 <module >ratis-assembly</module >
9295 </modules >
9396
94- <pluginRepositories >
95- <pluginRepository >
96- <id >apache.snapshots</id >
97- <url >https://repository.apache.org/snapshots/</url >
98- </pluginRepository >
99- </pluginRepositories >
100-
10197 <scm >
10298 <connection >scm:git:git://git.apache.org/ratis.git</connection >
10399 <developerConnection >scm:git:https://git-wip-us.apache.org/repos/asf/ratis.git</developerConnection >
11021098 <execution >
11031099 <phase >package</phase >
11041100 <goals >
1105- <goal >makeAggregateBom </goal >
1101+ <goal >makeBom </goal >
11061102 </goals >
11071103 </execution >
11081104 </executions >
You can’t perform that action at this time.
0 commit comments