This is an automated email from the ASF dual-hosted git repository. hboutemy pushed a commit to branch maven-deploy-plugin-3.x in repository https://gitbox.apache.org/repos/asf/maven-deploy-plugin.git
commit b4e8aed4806f8c20198aec9bc4eed5fd52dbfa3d Author: Hervé Boutemy <[email protected]> AuthorDate: Sat Jun 13 17:40:57 2026 +0200 work around Maven 4 CLI lack of interpolation --- src/it/deploy-attached-sources/test.properties | 10 +++++----- src/it/deploy-default-packaging/test.properties | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/it/deploy-attached-sources/test.properties b/src/it/deploy-attached-sources/test.properties index c1c2cd3..2caa287 100644 --- a/src/it/deploy-attached-sources/test.properties +++ b/src/it/deploy-attached-sources/test.properties @@ -16,10 +16,10 @@ # under the License. # Properties passed to invocations of the deploy plugin -pomFile = ${basedir}/pom.xml +pomFile = pom.xml -file = ${basedir}/target/${project.artifactId}-${project.version}.jar -sources = ${basedir}/target/${project.artifactId}-${project.version}-sources.jar -javadoc = ${basedir}/target/${project.artifactId}-${project.version}-javadoc.jar +file = target/test-1.0-SNAPSHOT.jar +sources = target/test-1.0-SNAPSHOT-sources.jar +javadoc = target/test-1.0-SNAPSHOT-javadoc.jar -url = file://${basedir}/target/repo +url=file:./target/repo diff --git a/src/it/deploy-default-packaging/test.properties b/src/it/deploy-default-packaging/test.properties index d663c30..ff7989d 100644 --- a/src/it/deploy-default-packaging/test.properties +++ b/src/it/deploy-default-packaging/test.properties @@ -19,5 +19,5 @@ groupId = org.apache.maven.test artifactId = test version = 1.1 -file = ${basedir}/lib/test-1.1.jar -url = file://${basedir}/target/repo +file = lib/test-1.1.jar +url = file:./target/repo
