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 2020/05/27 16:41:34 UTC

[directory-fortress-core] branch master updated: FC-284 - JDK14 dependency for xml.bind missing

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 44bf7c9  FC-284 - JDK14 dependency for xml.bind missing
44bf7c9 is described below

commit 44bf7c9e1b6c289f1ede0ad4ea581cce338b9536
Author: Shawn McKinney <sm...@symas.com>
AuthorDate: Wed May 27 11:41:27 2020 -0500

    FC-284 - JDK14 dependency for xml.bind missing
---
 pom.xml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 242c8c6..4ba9518 100644
--- a/pom.xml
+++ b/pom.xml
@@ -770,9 +770,9 @@
 
     <!-- If JDK11++ pull in the JAXB API dependency. -->
     <profile>
-      <id>java-11</id>
+      <id>jdk-11+</id>
       <activation>
-        <jdk>11</jdk>
+        <jdk>[11,]</jdk>
       </activation>
       <dependencies>
         <dependency>
@@ -783,7 +783,6 @@
       </dependencies>
     </profile>
 
-
     <!-- This profile starts the Fortress Console App -->
     <!-- To execute: mvn -Pconsole test -->
     <profile>