-
Notifications
You must be signed in to change notification settings - Fork 11
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
How to run the jar bundle #22
Comments
The documentation certainly needs an overhaul; and yes, the manifest should be part of the jar bundle! Currently lsq uses a system call to |
Progress update: Note that |
The main class manifest was added and the documentation at lsq.aksw.org/ updated |
Please confirm whether it works now |
Hi, we are trying to run LSQ with the java build
Unfortunately, the documentation does not reflect the actual code, it says:
But there is no
lsq-bundle
folder in the repository, and unfortunately, there is no further documentation on how to run and use the .jar file (all documentation is for the debian installed package)The debian package documentation mention using
lsq-cli
so we assume there is confusion in the documentation and we should use thelsq-cli
subfolder to run LSQSo we tried running the lsq-cli jar file:
But it does not seem to have been packaged properly:
It is quite a common error in Java packages building, you need to define the main function used when the package will be run
For example here: https://github.com/AKSW/LSQ/blob/develop/lsq-cli/pom.xml#L98
In the build configuration we might need to add something like:
Any idea how we can fix the Jar build and run LSQ with Java?
Note: running on Windows 10 with Java 15
The text was updated successfully, but these errors were encountered: