This is an automated email from the ASF dual-hosted git repository.

gk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/turbine-parent.git


The following commit(s) were added to refs/heads/master by this push:
     new 2ea528b  adapt java profiles
2ea528b is described below

commit 2ea528bedced3373b4fc7ff08cd69da0274ccb24
Author: Georg Kallidis <[email protected]>
AuthorDate: Mon Oct 24 11:32:01 2022 +0200

    adapt java profiles
---
 pom.xml | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/pom.xml b/pom.xml
index aa3c56a..5fa16c5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -561,24 +561,13 @@
       if using java 8 or above -->
     <!-- Use java 8 compatible version of FindBugs -->
     <profile>
-      <id>java11</id>
+      <id>javaBugsUpdate</id>
       <activation>
-        <jdk>[11,)</jdk>
+        <jdk>[9,)</jdk>
       </activation>
       <properties>
         <doclint>none</doclint><!-- since javadoc v.3 this is required instead 
of -Xdoclint:none -->
       </properties>
-    </profile>
-    <profile>
-      <id>java12</id>
-      <activation>
-        <jdk>[12,)</jdk>
-      </activation>
-      <properties>
-        <java.version>12</java.version>
-        
<turbine.compiler.compilerVersion>1.12</turbine.compiler.compilerVersion>
-        <maven.compiler.release>12</maven.compiler.release>
-      </properties>
       <reporting>
           <plugins>
             <plugin>
@@ -591,10 +580,21 @@
            </plugins>
       </reporting>
     </profile>
+    <profile>
+      <id>java12</id>
+      <activation>
+        <jdk>[12,)</jdk>
+      </activation>
+      <properties>
+        <java.version>12</java.version>
+        <turbine.compiler.compilerVersion>12</turbine.compiler.compilerVersion>
+        <maven.compiler.release>12</maven.compiler.release>
+      </properties>
+    </profile>
     <profile>
       <id>findbugs-legacy</id>
       <activation>
-        <jdk>[11,12)</jdk>
+        <jdk>[8,10)</jdk>
       </activation>
       <reporting>
           <plugins>

Reply via email to