AuthMe / ConfigMe

A simple configuration management library for any Java project!
MIT License
37 stars 14 forks source link

Switch to Java 11 #347

Open ljacqu opened 1 year ago

ljacqu commented 1 year ago

Not planning to switch soon, but to keep some improvements/adjustments that we could make after switching:

gamerover98 commented 10 months ago

Hi, updating to Java 11 just to use these methods doesn't make much sense. Additionally, compatibility with Java 8 is more important in my opinion, as there are older projects that require the use of this JDK version.

However, if there is a way to create a second Jar file that is compatible with Java 8, as they do, for example, with HSQLDB, then you can proceed with the modification.

<dependency>
    <groupId>org.hsqldb</groupId>
    <artifactId>hsqldb</artifactId>
    <version>2.7.1</version>
    <classifier>jdk8</classifier>
    <type>jar</type>
</dependency>

Thank you.