This is an automated email from the ASF dual-hosted git repository.
olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git
The following commit(s) were added to refs/heads/master by this push:
new 01b7f44 fix typo on profile id
01b7f44 is described below
commit 01b7f44f6870ebe7f7e95b67d94fc6ce7bab69bd
Author: olivier lamy <[email protected]>
AuthorDate: Mon Jun 1 16:32:58 2020 +1000
fix typo on profile id
Signed-off-by: olivier lamy <[email protected]>
---
README.md | 2 +-
run-its.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index b6c4fca..e2e0cb7 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ mvn verify -P local-it -f "$MAVENCODEBASE"
Now run (don't forget to update the versions!)
```
-mvn clean install -Prun-its,embdedded -Dmaven.repo.local=`pwd`/repo
-DmavenDistro="$MAVENCODEBASE/apache-maven/target/apache-maven-<VERSION>-bin.zip"
-DwrapperDistroDir="$MAVENCODEBASE/apache-maven/target"
-DmavenWrapper="$MAVENCODEBASE/maven-wrapper/target/maven-wrapper.jar"
+mvn clean install -Prun-its,embedded -Dmaven.repo.local=`pwd`/repo
-DmavenDistro="$MAVENCODEBASE/apache-maven/target/apache-maven-<VERSION>-bin.zip"
-DwrapperDistroDir="$MAVENCODEBASE/apache-maven/target"
-DmavenWrapper="$MAVENCODEBASE/maven-wrapper/target/maven-wrapper.jar"
```
or if behind a proxy
diff --git a/run-its.sh b/run-its.sh
index c44ae38..b5832b9 100755
--- a/run-its.sh
+++ b/run-its.sh
@@ -26,7 +26,7 @@ if [ -z "$MAVENCODEBASE" ] ; then
echo Please export MAVENCODEBASE
else
mvn verify -P versionlessMavenDist -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 clean test -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