kamilkrzywanski commented on PR #2272: URL: https://github.com/apache/maven/pull/2272#issuecomment-2828834033
@gnodet I've created an example like this: However, it fails with: org.apache.maven.api.services.InterpolatorException: recursive variable reference: release. I'll investigate further. ``` <project xmlns="http://maven.apache.org/POM/4.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.1.0 http://maven.apache.org/xsd/maven-4.1.0.xsd" > <modelVersion>4.0.0</modelVersion> <groupId>de.g667.m4-demo</groupId> <artifactId>m4-demo-revision</artifactId> <version>${revision}</version> <packaging>pom</packaging> <properties> <versionCore>0.1.0</versionCore> <release>${release:--DEVELOPER}</release> <revision>${versionCore}${release}</revision> </properties> </project> ``` -- 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: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org