diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java b/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java index 07ee74a815..7806ce072c 100644 --- a/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java +++ b/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java @@ -315,8 +315,6 @@ public class IntegrationTestSuite suite.addTestSuite( MavenIT0009Test.class ); suite.addTestSuite( MavenIT0008Test.class ); suite.addTestSuite( MavenIT0007Test.class ); - suite.addTestSuite( MavenIT0005Test.class ); - suite.addTestSuite( MavenIT0004Test.class ); /* * Add tests in reverse alpha order above. diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0004Test.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0004Test.java deleted file mode 100644 index 598fd0a581..0000000000 --- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0004Test.java +++ /dev/null @@ -1,48 +0,0 @@ -package org.apache.maven.it; - -/* - * 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. - */ - -import org.apache.maven.it.Verifier; -import org.apache.maven.it.util.ResourceExtractor; - -import java.io.File; - -public class MavenIT0004Test - extends AbstractMavenIntegrationTestCase -{ - - /** - * The simplest of pom installation. We have a pom and we install it in - * local repository. - */ - public void testit0004() - throws Exception - { - File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/it0004" ); - Verifier verifier = new Verifier( testDir.getAbsolutePath() ); - verifier.deleteArtifact( "org.apache.maven", "maven-it-it0004", "1.0", "pom" ); - verifier.executeGoal( "install:install" ); - verifier.assertArtifactPresent( "org.apache.maven.its.it0004", "maven-it-it0004", "1.0", "pom" ); - verifier.verifyErrorFreeLog(); - verifier.resetStreams(); - - } -} - diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0005Test.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0005Test.java deleted file mode 100644 index c68bdde8da..0000000000 --- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0005Test.java +++ /dev/null @@ -1,48 +0,0 @@ -package org.apache.maven.it; - -/* - * 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. - */ - -import org.apache.maven.it.Verifier; -import org.apache.maven.it.util.ResourceExtractor; - -import java.io.File; - -public class MavenIT0005Test - extends AbstractMavenIntegrationTestCase -{ - - /** - * The simplest of pom installation. We have a snapshot pom and we install - * it in local repository. - */ - public void testit0005() - throws Exception - { - File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/it0005" ); - Verifier verifier = new Verifier( testDir.getAbsolutePath() ); - verifier.deleteArtifact( "org.apache.maven", "maven-it-it0005", "1.0-SNAPSHOT", "pom" ); - verifier.executeGoal( "install:install" ); - verifier.assertArtifactPresent( "org.apache.maven.its.it0005", "maven-it-it0005", "1.0-SNAPSHOT", "pom" ); - verifier.verifyErrorFreeLog(); - verifier.resetStreams(); - - } -} - diff --git a/its/core-it-suite/src/test/resources/it0004/pom.xml b/its/core-it-suite/src/test/resources/it0004/pom.xml deleted file mode 100644 index 2ced21e9b1..0000000000 --- a/its/core-it-suite/src/test/resources/it0004/pom.xml +++ /dev/null @@ -1,11 +0,0 @@ - - 4.0.0 - Maven Integration Test :: it0004 - org.apache.maven.its.it0004 - maven-it-it0004 - The simplest of pom installation. We have a pom and we install it in - local repository. - - pom - 1.0 - diff --git a/its/core-it-suite/src/test/resources/it0005/pom.xml b/its/core-it-suite/src/test/resources/it0005/pom.xml deleted file mode 100644 index 1a3bfc5b3f..0000000000 --- a/its/core-it-suite/src/test/resources/it0005/pom.xml +++ /dev/null @@ -1,10 +0,0 @@ - - 4.0.0 - Maven Integration Test :: it0005 - org.apache.maven.its.it0005 - maven-it-it0005 - The simplest of pom installation. We have a snapshot pom and we install - it in local repository. - pom - 1.0-SNAPSHOT -