We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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'm trying to do myproject/pack, but I don't want myproject.jar to be included. All the dependencies of myproject.jar must be included.
myproject/pack
myproject.jar
The cause is that I prefer to use WEB-INF/classes instead of WEB-INF/lib/myproject.jar in my webapp, in order to have hot swapping.
WEB-INF/classes
WEB-INF/lib/myproject.jar
I've tried but doesn't work:
packExcludeJars := Seq("myproject.jar")
packExclude := Seq("myproject")
The text was updated successfully, but these errors were encountered:
Solution is to create a symbolic link to target/pack/lib, and to delete manually myproject.jar.
target/pack/lib
Sorry, something went wrong.
No branches or pull requests
I'm trying to do
myproject/pack
, but I don't wantmyproject.jar
to be included. All the dependencies ofmyproject.jar
must be included.The cause is that I prefer to use
WEB-INF/classes
instead ofWEB-INF/lib/myproject.jar
in my webapp, in order to have hot swapping.I've tried but doesn't work:
packExcludeJars := Seq("myproject.jar")
packExclude := Seq("myproject")
, but depedent jars aren't included.The text was updated successfully, but these errors were encountered: