This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/struts.git
commit d07a496d5c37808318eb64deea0cc1aec964f581 Author: Lukasz Lenart <lukaszlen...@apache.org> AuthorDate: Wed May 4 10:45:02 2022 +0200 Uses common Maven Compiler plugin to set proper source and target version --- pom.xml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/pom.xml b/pom.xml index ff125dbbe..50914ed36 100644 --- a/pom.xml +++ b/pom.xml @@ -105,7 +105,8 @@ <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.outputTimestamp>2022-02-24T06:11:22Z</project.build.outputTimestamp> - <java.version>1.8</java.version> + <maven.compiler.source>1.8</maven.compiler.source> + <maven.compiler.target>1.8</maven.compiler.target> <!-- dependency versions in alphanumeric order --> <asm.version>9.2</asm.version> @@ -409,14 +410,6 @@ </pluginManagement> <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>${java.version}</source> - <target>${java.version}</target> - </configuration> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId>