I'm trying to get the classpath with maven to a file, using the command:
mvn dependency:build-classpath -Dmdep.ouputFile=test.txt
but the result is in one line separated with ';'.
The problem is when I try to read the line with windows batch I'm not getting results because the line is larger than 8192 characters.
can I get the results in multiple lines instead of one?
If there is a way to use /P as @Squashman suggested but getting the parts based on the delimiter it will be great, otherwise, I prefer to get the dependencies list as multiple lines by the maven command if there is any.