-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Restore precedence as it was in Maven3: - basedir - buildTime - prefixed model - user props - model props - system props - env - prefixless model --- https://issues.apache.org/jira/browse/MNG-8469
- Loading branch information
Showing
5 changed files
with
86 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
...t-suite/src/test/java/org/apache/maven/it/MavenITmng8469InterpolationPrecendenceTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* 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.nio.file.Path; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
/** | ||
* This is a test set for <a href="https://issues.apache.org/jira/browse/MNG-8469">MNG-8469</a>. | ||
*/ | ||
class MavenITmng8469InterpolationPrecendenceTest extends AbstractMavenIntegrationTestCase { | ||
|
||
MavenITmng8469InterpolationPrecendenceTest() { | ||
super("[4.0.0-rc-3-SNAPSHOT,)"); | ||
} | ||
|
||
/** | ||
* Verify project is buildable. | ||
*/ | ||
@Test | ||
void testIt() throws Exception { | ||
Path basedir = extractResources("/mng-8469").getAbsoluteFile().toPath(); | ||
|
||
Verifier verifier = newVerifier(basedir.toString()); | ||
verifier.addCliArgument("help:effective-pom"); | ||
verifier.execute(); | ||
verifier.verifyErrorFreeLog(); | ||
|
||
// 4.0.0-rc-2 fails as | ||
// [ERROR] Some problems were encountered while processing the POMs | ||
// [ERROR] The build could not read 1 project -> [Help 1] | ||
// [ERROR] | ||
// [ERROR] The project org.apache.maven.its.mng8469:test:1.0 (...pom.xml) has 1 error | ||
// [ERROR] recursive variable reference: scm.connection | ||
|
||
verifier.verifyTextInLog("<connection>foobar</connection>"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.1.0" root="true"> | ||
<groupId>org.apache.maven.its.mng8469</groupId> | ||
<artifactId>test</artifactId> | ||
<version>1.0</version> | ||
<packaging>pom</packaging> | ||
|
||
<name>Maven Integration Test :: MNG-8469</name> | ||
<description>Test interpolation considers prefix-less model last</description> | ||
|
||
<scm> | ||
<!-- Maven 4.0.0-rc-2 (MNG-8469) would fail on this POM --> | ||
<connection>${scm.connection}</connection> | ||
</scm> | ||
|
||
<properties> | ||
<scm.connection>foobar</scm.connection> | ||
</properties> | ||
</project> |