dlsc-software-consulting-gmbh / GemsFX

A collection of JavaFX controls and utilities.
Apache License 2.0
436 stars 51 forks source link

Mvn repository does not support jdk11 #137

Closed ljy1058318852 closed 1 month ago

ljy1058318852 commented 1 month ago

MVN pom.xml: `

com.dlsc.gemsfx gemsfx 2.7.5

`

Operating environment: jDK11

Error: com/dlsc/gemsfx/ExpandingTextArea has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file versions up to 55.0

Without changing the JDK, what should I do?

dlemmermann commented 1 month ago

Yes, GemsFX moved to Java 17 .... if you have to stay on 11 then I would suggest that you fork the repository and maintain a Java 11 version of it. Another option would be to simply copy the controls that you use into your project. Apache 2 license allows you to do that.

ljy1058318852 commented 1 month ago

Thanks~