What's the proper way to change the name of out.jar resulting from assembly? #5451
Answered
by
lihaoyi
andrea-corradetti
asked this question in
Q&A
-
The result of |
Beta Was this translation helpful? Give feedback.
Answered by
lihaoyi
Jul 4, 2025
Replies: 1 comment 3 replies
-
Typically you would do something like override def assembly = Task{
os.copy(super.assembly().path, Task.dest / "my-custom-name.jar")
PathRef(Task.dest / "my-custom-name.jar")
} |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
lefou
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Typically you would do something like