You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2020/06/06 09:43:53 UTC

[maven-integration-testing] branch MNG-6656 updated: Improve scripts

This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch MNG-6656
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git


The following commit(s) were added to refs/heads/MNG-6656 by this push:
     new 40463eb  Improve scripts
40463eb is described below

commit 40463ebc4ecfde9a54e2ba46558af72f2cc89fd0
Author: rfscholte <rf...@apache.org>
AuthorDate: Sat Jun 6 11:43:40 2020 +0200

    Improve scripts
---
 run-its.bat | 4 ++--
 run-its.sh  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/run-its.bat b/run-its.bat
index ce055c1..d091dd8 100644
--- a/run-its.bat
+++ b/run-its.bat
@@ -23,8 +23,8 @@ if  "%MAVENCODEBASE%" == "" (
  @ECHO ON
 ) else (
  @ECHO ON
- mvn verify -Plocal-it -f "%MAVENCODEBASE%"
- mvn clean install -Prun-its,embdedded -Dmaven.repo.local="%cd%\repo"  -DmavenDistro="%MAVENCODEBASE%\apache-maven\target\apache-maven-bin.zip" -DwrapperDistroDir="%MAVENCODEBASE%\apache-maven\target" -DmavenWrapper="%MAVENCODEBASE%\maven-wrapper\target\maven-wrapper.jar"
+ mvn verify -DdistributionFileName=${project.artifactId} -f "%MAVENCODEBASE%"
+ mvn clean install -Prun-its,embedded -Dmaven.repo.local="%cd%\repo"  -DmavenDistro="%MAVENCODEBASE%\apache-maven\target\apache-maven-bin.zip" -DwrapperDistroDir="%MAVENCODEBASE%\apache-maven\target" -DmavenWrapper="%MAVENCODEBASE%\maven-wrapper\target\maven-wrapper.jar"
 )
 
 @REM If behind a proxy try this..
diff --git a/run-its.sh b/run-its.sh
index 050a617..6c75811 100755
--- a/run-its.sh
+++ b/run-its.sh
@@ -24,8 +24,8 @@
 if [ -z "$MAVENCODEBASE" ] ; then
  echo Please export MAVENCODEBASE
 else
- mvn verify -P local-it -f "$MAVENCODEBASE"
- mvn clean test -Prun-its,embdedded -Dmaven.repo.local=`pwd`/repo  -DmavenDistro="$MAVENCODEBASE\apache-maven\target\apache-maven-bin.zip" -DwrapperDistroDir="$MAVENCODEBASE\apache-maven\target" -DmavenWrapper="$MAVENCODEBASE\maven-wrapper\target\maven-wrapper.jar"
+ mvn verify -DdistributionFileName=${project.artifactId} -f "$MAVENCODEBASE"
+ mvn clean install -Prun-its,embedded -Dmaven.repo.local=`pwd`/repo  -DmavenDistro="$MAVENCODEBASE\apache-maven\target\apache-maven-bin.zip" -DwrapperDistroDir="$MAVENCODEBASE\apache-maven\target" -DmavenWrapper="$MAVENCODEBASE\maven-wrapper\target\maven-wrapper.jar"
 fi