Is there an easier way to specify multiple System Properties on the command line to a java program rather than having multiple -D statements?
Trying to avoid this:
java -jar -DNAME="myName" -DVERSION="1.0" -DLOCATION="home" program.jar
I thought I had seen an example of someone using one -D and some quoted string after that, but I can't find the example again.
Thanks!
NOTE: ring bearer's comment is the right answer, but I can't accept a comment.