mirror of https://github.com/apache/maven.git
[MNG-8465] Add support for project.rootDirectory in repositories and fix other expressions (#2007)
Valid expressions in repositories are: * ${project.basedir} * ${project.basedir.uri} * ${project.rootDirectory} * ${project.rootDirectory.uri}
This commit is contained in:
parent
bebc3d4a2e
commit
98dedaf0e3
|
@ -211,7 +211,7 @@ public class DefaultModelInterpolator implements ModelInterpolator {
|
|||
return projectDir.toAbsolutePath().toString();
|
||||
} else if (subExpr.startsWith("basedir.")) {
|
||||
try {
|
||||
Object value = ReflectionValueExtractor.evaluate(subExpr, projectDir.toAbsolutePath(), false);
|
||||
Object value = ReflectionValueExtractor.evaluate(subExpr, projectDir.toAbsolutePath(), true);
|
||||
if (value != null) {
|
||||
return value.toString();
|
||||
}
|
||||
|
|
|
@ -1343,13 +1343,19 @@ public class DefaultModelValidator implements ModelValidator {
|
|||
// only allow ${basedir} and ${project.basedir}
|
||||
Matcher m = EXPRESSION_NAME_PATTERN.matcher(repository.getUrl());
|
||||
while (m.find()) {
|
||||
if (!("basedir".equals(m.group(1)) || "project.basedir".equals(m.group(1)))) {
|
||||
validateStringNoExpression(
|
||||
prefix + prefix2 + "[" + repository.getId() + "].url",
|
||||
String expr = m.group(1);
|
||||
if (!("basedir".equals(expr)
|
||||
|| "project.basedir".equals(expr)
|
||||
|| expr.startsWith("project.basedir.")
|
||||
|| "project.rootDirectory".equals(expr)
|
||||
|| expr.startsWith("project.rootDirectory."))) {
|
||||
addViolation(
|
||||
problems,
|
||||
Severity.ERROR,
|
||||
Version.V40,
|
||||
repository.getUrl(),
|
||||
prefix + prefix2 + "[" + repository.getId() + "].url",
|
||||
null,
|
||||
"contains an unsupported expression (only expressions starting with 'project.basedir' or 'project.rootDirectory' are supported).",
|
||||
repository);
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -805,7 +805,7 @@ class DefaultModelValidatorTest {
|
|||
SimpleProblemCollector result = validateFile("raw-model/repository-with-expression.xml");
|
||||
assertViolations(result, 0, 1, 0);
|
||||
assertEquals(
|
||||
"'repositories.repository.[repo].url' contains an expression but should be a constant.",
|
||||
"'repositories.repository.[repo].url' contains an unsupported expression (only expressions starting with 'project.basedir' or 'project.rootDirectory' are supported).",
|
||||
result.getErrors().get(0));
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,52 @@
|
|||
/*
|
||||
* 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 java.util.List;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
/**
|
||||
* This is a test set for <a href="https://issues.apache.org/jira/browse/MNG-8465">MNG-8465</a>.
|
||||
*/
|
||||
class MavenITmng8465RepositoryWithProjectDirTest extends AbstractMavenIntegrationTestCase {
|
||||
|
||||
MavenITmng8465RepositoryWithProjectDirTest() {
|
||||
super("[4.0.0-rc-3-SNAPSHOT,)");
|
||||
}
|
||||
|
||||
/**
|
||||
* Verify various supported repository URLs.
|
||||
*/
|
||||
@Test
|
||||
void testProjectDir() throws Exception {
|
||||
Path basedir = extractResources("/mng-8465").getAbsoluteFile().toPath();
|
||||
|
||||
Verifier verifier = newVerifier(basedir.toString());
|
||||
verifier.addCliArgument("help:effective-pom");
|
||||
verifier.execute();
|
||||
List<String> urls = verifier.loadLogLines().stream()
|
||||
.filter(s -> s.trim().contains("<url>file://"))
|
||||
.toList();
|
||||
assertEquals(4, urls.size());
|
||||
}
|
||||
}
|
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.1.0" root="true">
|
||||
<groupId>org.apache.maven.its.mng8465</groupId>
|
||||
<artifactId>test</artifactId>
|
||||
<version>1.0</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Maven Integration Test :: MNG-8465</name>
|
||||
<description>Test repositories can be defined using ${project.basedir} and ${project.rootDirectory}.</description>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>test</id>
|
||||
<url>file://${project.basedir}/repo</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>test2</id>
|
||||
<url>${project.basedir.uri}repo</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>test3</id>
|
||||
<url>file://${project.rootDirectory}/repo</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>test4</id>
|
||||
<url>${project.rootDirectory.uri}repo</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
</project>
|
Loading…
Reference in New Issue