-
Notifications
You must be signed in to change notification settings - Fork 62
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
onejar build doesn't include compiled assets #105
Comments
Make sure you've ran Also I always use capsule over onejar (although not entirely sure of the difference). We usually end up with a jar-building script that looks something like this:
@SevereOverfl0w can probably chime in with some more helpful feedback but hopefully that will get you going |
Hi, Thank you very much, using your script compiles everything and the jar includes the assets. Will continue by using your script. |
PR for the docs here: #106 |
Reopening because I think there's an underlying issue here, probably with a double // which java handles differently to onejar's loader. |
I'm trying out edge and I want to use it with clojurescript.
The development part is all working without any issues but when I try to build a production jar, the jar doesn't include the js nor css files. Or at least the requests fails.
I produce the jar by running
and when run the jar I get a 500 for the css file and a 404 for the js file.
Stacktraces:
For the js file:
For the css file:
I get the same result by generating a new app with
--cljs
and build a production artifact directly without any changes, I'm on commit 1d760f4What am I missing?
The text was updated successfully, but these errors were encountered: