This is an automated email from the ASF dual-hosted git repository.
kpvdr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-interop-test.git
The following commit(s) were added to refs/heads/main by this push:
new 829b2c7 Changed config for maven-compiler-plugin from
<release>11</release> to <source>11</source> and <target>11</target>
829b2c7 is described below
commit 829b2c7e8cb7e2488162bc8aea77fe1d6811fefd
Author: Kim van der Riet <[email protected]>
AuthorDate: Wed May 5 10:48:35 2021 -0400
Changed config for maven-compiler-plugin from <release>11</release> to
<source>11</source> and <target>11</target>
---
pom.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/pom.xml b/pom.xml
index 4c06a71..024d39f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,7 +50,6 @@
<maven.compiler.target>11</maven.compiler.target>
<maven-assembly-plugin-version>3.3.0</maven-assembly-plugin-version>
<surefire.version>3.0.0-M5</surefire.version>
- <maven-compiler-plugin-version>3.8.0</maven-compiler-plugin-version>
<!-- Dependency versions -->
<geronimo.jms.2.spec-version>1.0-alpha-2</geronimo.jms.2.spec-version>
@@ -100,9 +99,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>${maven-compiler-plugin-version}</version>
+ <version>3.8.0</version>
<configuration>
- <release>11</release>
+ <source>11</source>
+ <target>11</target>
<optimize>true</optimize>
<debug>true</debug>
<showDeprecation>true</showDeprecation>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]