-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Difficulty Building on Linux #30
Comments
Maybe your eclipse configuration is set up to include the javafx sdk. |
This is more than likely caused by a combination of openjfx and differences in versions of Maven between the two machines, and not something that should be addressed here I just wanted to give you as heads up since building on a recent linux blend would not be uncommon. Fedora ships with Maven 3.5.2 I believe the problem I had building in Win10 was simply due to Netbeans using it's bundled version (3.0.5) of Maven with it's plugin (as it should by default) and me not selecting the 3.6.0 installed version. Once set everything built without error in Win10. |
Since this is not time critical, let me think about it a little bit mote and address this issue at a later time. Without doing any testing or in depth research: Maybe explicitly defining a version range of FX in both the actual library and the utility code is all that is needed. Currently we use the transitive dependency of the utility code which apparently breaks the code. The specified error is linked to the compiler version as specified by maven. In this instance Java 1.8 is required.
Or with newer versions of maven
Or the maven version itself was linked to an older JVM instance. I'll set up a fedora build myself and see if I can reproduce the issues. |
I ran into the same issue using a docker container built using
I see that javafx-graphics is resolved to |
I am not happy about the overall dependencies of this project and javafx has caused more issue than it has done good in the past. Maybe it's time to rethink the imports and modularize the project. |
I just ran into the same issue. |
It would be awesome with a separate library with only the algorithms and some matcher utils. |
Unable to build under current openjdk + javafx (openjfx), producing
Fedora 28
openjdk version "1.8.0_191"
OpenJDK Runtime Environment (build 1.8.0_191-b13)
OpenJDK 64-Bit Server VM (build 25.191-b13, mixed mode)
Windows build was successful after getting the Oracle Java JDK and Maven to play nice with each other, but only from within Eclipse for some reason (likely local default maven config missing some things).
The text was updated successfully, but these errors were encountered: