citerus / dddsample-core

This is the new home of the original DDD Sample app (previously hosted at sf.net)..
MIT License
4.97k stars 1.47k forks source link

Java 9/10 Support #31

Closed misto closed 1 year ago

misto commented 6 years ago

To run the project using Java 9 or 10, I had to add the following configuration;

            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <jvmArguments>--add-modules java.xml.bind,java.xml.ws</jvmArguments>
                </configuration>
            </plugin>

Unfortunately, this will break Java 8 support.

simbo1905 commented 3 years ago

Java 11 is the current long term support and Java 15 is the latest. To make this code helpful to the majority of people it should be tracking the latest LTS at the minimum.

orende commented 1 year ago

We discussed this today and have decided to upgrade to Java 11. In the future, we'll be sticking to the oldest LTS (based on Oracle's Java compiler) for maximum compatibility. We've added a ticket to do the upgrade to our backlog.