You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ro...@apache.org on 2022/07/04 10:03:13 UTC

[activemq-artemis-native] branch master updated: ARTEMIS-3882: some cleanup for prior commits

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

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis-native.git


The following commit(s) were added to refs/heads/master by this push:
     new d053f9a  ARTEMIS-3882: some cleanup for prior commits
d053f9a is described below

commit d053f9a357f7c61575a3814c2234aba1d76c4ee7
Author: Robbie Gemmell <ro...@apache.org>
AuthorDate: Mon Jul 4 10:58:10 2022 +0100

    ARTEMIS-3882: some cleanup for prior commits
    
    - Remove now-unused dep version properties
    - Restore the compiler -release flag
    - Update related enforcer check
---
 pom.xml | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/pom.xml b/pom.xml
index 3d43076..5a5e994 100644
--- a/pom.xml
+++ b/pom.xml
@@ -33,9 +33,6 @@
     <url />
 
     <properties>
-        <slf4j.version>1.7.36</slf4j.version>
-        <log4j.version>2.17.2</log4j.version>
-
         <version.org.jacoco>0.8.6</version.org.jacoco>
         <version.org.jacoco.plugin>0.8.6</version.org.jacoco.plugin>
         <surefire.version>2.22.2</surefire.version>
@@ -49,9 +46,9 @@
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
 
-        <!-- See also maven.compiler.release in the java9on profile -->
         <maven.compiler.source>11</maven.compiler.source>
         <maven.compiler.target>11</maven.compiler.target>
+        <maven.compiler.release>11</maven.compiler.release>
 
         <activemq-surefire-argline>
             -Dtest.stress.time=${test.stress.time} -Djava.library.path="${activemq.basedir}/target/lib/linux-${os.arch}"
@@ -353,8 +350,8 @@
                             <configuration>
                                 <rules>
                                     <requireJavaVersion>
-                                    <version>[1.8,)</version>
-                                    <message>You must use Java 8+ to build</message>
+                                    <version>[11,)</version>
+                                    <message>You must use Java 11+ to build</message>
                                     </requireJavaVersion>
                                 </rules>
                             </configuration>