If you want to support Java 11, that can happen too.  You will want spring
boot 2.1.x and you’ll need to add some dependencies (this is what we are
using):

<properties>

    <jaf.version>1.2.0</jaf.version>
    <jaxb.version>2.3.1</jaxb.version>
    <jaxb.runtime.version>2.3.1</jaxb.runtime.version>
    <jaxws.version>2.3.1</jaxws.version>

</properties>

<dependency>
    <groupId>javax.xml.bind</groupId>
    <artifactId>jaxb-api</artifactId>
    <version>${jaxb.version}</version>
</dependency>

<dependency>
    <groupId>org.glassfish.jaxb</groupId>
    <artifactId>jaxb-runtime</artifactId>
    <version>${jaxb.runtime.version}</version>
</dependency>

<dependency>
    <groupId>javax.activation</groupId>
    <artifactId>javax.activation-api</artifactId>
    <version>${jaf.version}</version>
</dependency>

<dependency>
    <groupId>javax.xml.ws</groupId>
    <artifactId>jaxws-api</artifactId>
    <version>${jaxws.version}</version>
</dependency>



On Thu, Dec 20, 2018 at 12:33 PM [email protected] <
[email protected]> wrote:

> Ok, i will have to check my runtime i guess.
> Thanks for the help.
>

Reply via email to