cstamas commented on code in PR #2007: URL: https://github.com/apache/maven/pull/2007#discussion_r1894912103
########## its/core-it-suite/src/test/resources/mng-8465/pom.xml: ########## @@ -0,0 +1,33 @@ +<?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>${project.baseUri}repo</url> Review Comment: ```suggestion <url>${project.basedir.uri}repo</url> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
