-
Notifications
You must be signed in to change notification settings - Fork 43
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
I can't compile on mac m1. #179
Comments
This reply is probably (very) late, but might help future users. I had a similar issue. JavaFX stopped being bundled with Java since Java 11. You have to add the dependencies to pom.xml. Check @Ostera's suggestion at #176. This will allow you to compile, but I still have a problem running the app.: "Error. JavaFX runtime components are missing..." |
I also had a couple of warnings (still have some) that I started solving by adding <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<encoding>UTF-8</encoding>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin> to |
To get rid of the final warning I changed ( At the same time, and since I'm on OTP 25, I had to tweak the Erlang code to not use |
This got rid of all warnings, but it still doesn't allow the application to run. I know I can do
and have it run, but am looking to have those elements in the path, and not have to specify them all the time. |
This might've done the trick (it worked for me). I installed liberica's OpenJDK version (https://bell-sw.com/pages/downloads/) added it to the path and ran (as in the README.md) Now I have other issues, but it'll require debugging Java, since a few years have passed since the code changed so parts of it might be outdated. (will try to post my findings here, if I can move forward) |
I eventually did a lot of stuff and updated a lot of code (for a more recent Java implementation), so I created a fork for this, but I'm not actively recommending it. Changes to make this work, as-is, in this repo. are mostly around FontAwesome and the JDK you use. |
I install java with homebrew, but getting this error
....package javafx.beans.property does not exist
....
....hextstar/DataRow.java:[11,13] cannot find symbol
symbol: class StringProperty
location: class hextstar.DataRow
The text was updated successfully, but these errors were encountered: