This is an automated email from the ASF dual-hosted git repository. sor pushed a commit to branch SUREFIRE-1585 in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
The following commit(s) were added to refs/heads/SUREFIRE-1585 by this push: new d97b8e9 Revert changes made to surefire-its setting.xml d97b8e9 is described below commit d97b8e918bec4d46043a5e4899ee9de55bd48912 Author: Christian Stein <sormu...@gmail.com> AuthorDate: Tue Oct 23 23:51:27 2018 +0200 Revert changes made to surefire-its setting.xml --- surefire-its/src/test/resources/settings.xml | 42 ++++++++++++++++++++++------ 1 file changed, 33 insertions(+), 9 deletions(-) diff --git a/surefire-its/src/test/resources/settings.xml b/surefire-its/src/test/resources/settings.xml index 69a1c2a..991a3e3 100644 --- a/surefire-its/src/test/resources/settings.xml +++ b/surefire-its/src/test/resources/settings.xml @@ -17,13 +17,37 @@ ~ specific language governing permissions and limitations ~ under the License. --> -<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd"> - <localRepository>${maven.repo.local}</localRepository> - <interactiveMode>false</interactiveMode> - <pluginGroups> - <pluginGroup>org.apache.maven.plugins</pluginGroup> - <pluginGroup>org.codehaus.mojo</pluginGroup> - </pluginGroups> +<settings> + <profiles> + <profile> + <id>it-repo</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <repositories> + <repository> + <id>local.central</id> + <url>${localRepositoryUrl}</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>true</enabled> + </snapshots> + </repository> + </repositories> + <pluginRepositories> + <pluginRepository> + <id>local.central</id> + <url>${localRepositoryUrl}</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>true</enabled> + </snapshots> + </pluginRepository> + </pluginRepositories> + </profile> + </profiles> </settings>