> On May 25, 2020, at 2:27 PM, Stefan Seelmann <[email protected]> wrote:
> 
> PS: fortress-core fails to compile with Java 14 because java.xml.bind is
> no longer part of the JDK and needs to be added as dependency.

Hi Stefan,

Good catch. A profile was in the core’s pom. But, it only activated on jdk11. 

Will change to activate for jdk 9 and beyond...

<profile>
  <id>jdk-9+</id>
  <activation>
    <jdk>[9,]</jdk>   
   </activation>
   <dependencies>
     <dependency>
       <groupId>javax.xml.bind</groupId>
       <artifactId>jaxb-api</artifactId>           
      </dependency>. 
   </dependencies>
</profile>

Thanks for pointing it out.

—
Shawn
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to