You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by sm...@apache.org on 2023/05/08 12:01:51 UTC

[directory-fortress-realm] 01/01: requires >= java 11

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

smckinney pushed a commit to branch jakarta3
in repository https://gitbox.apache.org/repos/asf/directory-fortress-realm.git

commit 9e72bc9be1ae96a186cb4917956662d82c218315
Author: Shawn McKinney <sm...@symas.com>
AuthorDate: Mon May 8 07:01:44 2023 -0500

    requires >= java 11
---
 README.md | 14 ++------------
 pom.xml   |  5 +++--
 2 files changed, 5 insertions(+), 14 deletions(-)

diff --git a/README.md b/README.md
index bcad6c0..4279a49 100644
--- a/README.md
+++ b/README.md
@@ -58,9 +58,9 @@ Minimum hardware requirements:
  * 1GB RAM
 
 Minimum software requirements (to build):
- * Java SDK 8++
  * git
- * Apache Maven3++
+ * Java SDK >= 11
+ * Apache Maven >= 3
 
 -------------------------------------------------------------------------------
 ## SECTION 2. Download & Install
@@ -83,20 +83,10 @@ Minimum software requirements (to build):
 
 2. Build the source
 
-a. Java 8 target
-
  ```
  mvn clean install
  ```
 
--- OR --
-
-b. Java 11 target
-
- ```
- mvn clean install -Djava.version=11
- ```
-
 3. Now build the javadoc:
 
  ```
diff --git a/pom.xml b/pom.xml
index 8283ea0..a9a2258 100644
--- a/pom.xml
+++ b/pom.xml
@@ -85,7 +85,7 @@
   <!-- ====================================================== -->
   <properties>
 
-    <java.version>1.8</java.version>
+    <java.version>11</java.version>
     <additionalparam>-Xdoclint:none</additionalparam>
     <projectName>apache-directory-fortress-realm</projectName>
     <distMgmtSiteUrl>
@@ -93,7 +93,8 @@
     </distMgmtSiteUrl>
 
     <!-- Set versions for depending jars -->
-    <fortress-core.version>2.0.8</fortress-core.version>
+<!--    <fortress-core.version>2.0.8</fortress-core.version>-->
+    <fortress-core.version>2.0.9-SNAPSHOT</fortress-core.version>
     <junit.version>4.13.2</junit.version>
     <checkstyle-configuration.version>0.1</checkstyle-configuration.version>
     <slf4j.api.version>1.7.36</slf4j.api.version>