[MNG-6377] switch from Git-WIP to Gitbox

This commit is contained in:
Hervé Boutemy 2018-03-19 23:24:31 +01:00
parent 3ec8c65cc4
commit 151554797f
2 changed files with 23 additions and 6 deletions

View File

@ -19,7 +19,7 @@ under the License.
Maven Core Integration Tests Maven Core Integration Tests
======== ========
<http://maven.apache.org/core-its/> <https://maven.apache.org/core-its/>
If you want to run the integration tests against a custom build of Maven use the following command: If you want to run the integration tests against a custom build of Maven use the following command:

View File

@ -1,4 +1,21 @@
<!-- - Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at <http://www.apache.org/licenses/LICENSE-2.0> Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
# Integration Test Environments # Integration Test Environments
@ -13,9 +30,9 @@ The test procedure will typically be something like this:
``` ```
$ ID=$(docker build -q .) && docker run --rm -t -i $ID bash $ ID=$(docker build -q .) && docker run --rm -t -i $ID bash
$ cd $HOME $ cd $HOME
$ git clone https://git-wip-us.apache.org/repos/asf/maven.git $ git clone https://gitbox.apache.org/repos/asf/maven.git
$ ( cd maven && mvn clean verify ) $ ( cd maven && mvn clean verify )
$ git clone https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git $ git clone https://gitbox.apache.org/repos/asf/maven-integration-testing.git
$ ( cd maven-integration-testing && mvn clean install -Prun-its -Dmaven.repo.local=$HOME/work/repo -DmavenDistro=$HOME/maven/apache-maven/target/apache-maven-...-bin.zip ) $ ( cd maven-integration-testing && mvn clean install -Prun-its -Dmaven.repo.local=$HOME/work/repo -DmavenDistro=$HOME/maven/apache-maven/target/apache-maven-...-bin.zip )
``` ```
@ -31,8 +48,8 @@ For most unixes the test procedure will be something like:
``` ```
$ vagrant ssh $ vagrant ssh
$ git clone https://git-wip-us.apache.org/repos/asf/maven.git $ git clone https://gitbox.apache.org/repos/asf/maven.git
$ ( cd maven && mvn clean verify ) $ ( cd maven && mvn clean verify )
$ git clone https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git $ git clone https://gitbox.apache.org/repos/asf/maven-integration-testing.git
$ ( cd maven-integration-testing && mvn clean install -Prun-its -Dmaven.repo.local=$HOME/work/repo -DmavenDistro=$HOME/maven/apache-maven/target/apache-maven-...-bin.zip ) $ ( cd maven-integration-testing && mvn clean install -Prun-its -Dmaven.repo.local=$HOME/work/repo -DmavenDistro=$HOME/maven/apache-maven/target/apache-maven-...-bin.zip )
``` ```