blob: 0369f649406271739ea4a13cfc634a105175dc27 [file] [log] [blame]
/*
* 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.
*/
package org.apache.maven.it;
import java.io.File;
import java.net.URI;
import org.apache.maven.shared.verifier.Verifier;
import org.apache.maven.shared.verifier.util.ResourceExtractor;
import org.junit.jupiter.api.Test;
/**
* This is a test for <a href="https://issues.apache.org/jira/browse/MNG-6759">MNG-6759</a>.
*/
public class MavenITmng6759TransitiveDependencyRepositoriesTest extends AbstractMavenIntegrationTestCase {
private final String projectBaseDir = "/mng-6759-transitive-dependency-repositories";
public MavenITmng6759TransitiveDependencyRepositoriesTest() {
super("(,3.6.2),(3.6.2,)");
}
/**
* Verifies that a project with a dependency graph like {@code A -> B -> C},
* where C is in a non-Central repository should use B's {@literal <repositories>} to resolve C.
*
* @throws Exception in case of failure
*/
@Test
public void testTransitiveDependenciesAccountForRepositoriesListedByDependencyTrailPredecessor() throws Exception {
installDependencyCInCustomRepo();
File testDir = ResourceExtractor.simpleExtractResources(getClass(), projectBaseDir);
Verifier verifier = newVerifier(testDir.getAbsolutePath());
verifier.addCliArgument("package");
verifier.execute();
verifier.verifyErrorFreeLog();
}
private void installDependencyCInCustomRepo() throws Exception {
File dependencyCProjectDir =
ResourceExtractor.simpleExtractResources(getClass(), projectBaseDir + "/dependency-in-custom-repo");
URI customRepoUri = new File(new File(dependencyCProjectDir, "target"), "repo").toURI();
Verifier verifier = newVerifier(dependencyCProjectDir.getAbsolutePath());
verifier.deleteDirectory("target");
if (getMavenVersion().getMajorVersion() <= 3) {
verifier.addCliArgument("-DaltDeploymentRepository=customRepo::default::" + customRepoUri);
} else {
verifier.addCliArgument("-DaltDeploymentRepository=customRepo::" + customRepoUri);
}
verifier.addCliArgument("deploy");
verifier.execute();
verifier.verifyErrorFreeLog();
}
}