made runtime build for JDK8 under all JDKs (8++) (#109)

* Update pom.xml

made runtime build for JDK8 under all JDKs (8++)

* Update runtime/pom.xml

use more-standard syntax

Co-authored-by: David Renshaw <dwrenshaw@gmail.com>
This commit is contained in:
paxel 2021-08-18 16:02:33 +02:00 committed by GitHub
parent a36bf2e6bd
commit 9e114cf26d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,7 +33,6 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.release>8</maven.compiler.release>
</properties>
<dependencies>
<dependency>
@ -60,7 +59,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<version>3.6.2</version>
<configuration>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
@ -69,6 +68,15 @@
</build>
<profiles>
<profile>
<id>jdk9FF</id>
<activation>
<jdk>(1.8,)</jdk>
</activation>
<properties>
<maven.compiler.release>8</maven.compiler.release>
</properties>
</profile>
<profile>
<id>release</id>
<build>