Tagged Questions
3
votes
8answers
442 views
Java command-line launchers
I am working on a .jar file library to implement a bunch of helper classes to interface a PC to a piece of external hardware. I'll also add some simple applications, either command-line or GUI, to ...
2
votes
4answers
60 views
What is a clean / recommended way to terminate a perpetually-running command-line Java application?
More specifically, I have a multithreaded command line Java application which runs and collects data until the user terminates it.
The obvious way for the user to terminate it is by pushing ...
2
votes
2answers
203 views
Add dependency to existing pom.xml via shell
Is there a way to add dependencies to an existing pom.xml via shell script?
Something like:
mvn dependency:add -DgroupID=com.acme -DartifactId=project
[Update]
Clarified that I want to add to an ...