This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-parent.git
commit 291d40117cd77433282d437f70ddf4b74d461c0e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Apr 23 09:47:03 2023 -0400 Workaround MCOMPILER-534 MCOMPILER-534: Broken command line generated on Java 8 when maven.compiler.release is set --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 5a02cc3..0c07a91 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ </parent> <groupId>org.apache.commons</groupId> <artifactId>commons-parent</artifactId> - <version>57</version> + <version>57-SNAPSHOT</version> <packaging>pom</packaging> <name>Apache Commons Parent</name> <description>The Apache Commons Parent POM provides common settings for all Apache Commons components.</description> @@ -114,7 +114,7 @@ <maven.compiler.target>1.3</maven.compiler.target> <!-- Java >= 9 --> - <maven.compiler.release>8</maven.compiler.release> + <commons.compiler.release>8</commons.compiler.release> <!-- compiler and surefire plugin settings for "java" profiles --> <commons.compiler.fork>false</commons.compiler.fork> @@ -1932,7 +1932,7 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> - <release>${maven.compiler.release}</release> + <release>${commons.compiler.release}</release> </configuration> </plugin> </plugins>