Re: Command line argument files

2018-11-19 Thread Remko Popma
Stefan, Jan, Thanks for your response. Understood about avoiding the dependency. As Matt pointed out, there are ways around this - picocli is a single source file for example), but at the end of the day what matters most is how much value this would add. I thought there was a request for

Re: Command line argument files

2018-11-18 Thread Matt Sicker
FWIW, picocli is small enough to simply shade into your project. We do it in Log4j with some CLI tooling that’s included. On Sun, Nov 18, 2018 at 09:19, Stefan Bodewig wrote: > Hi Remko > > On 2018-11-15, Remko Popma wrote: > > > Would there be any interest in using picocli ( > >

Re: Command line argument files

2018-11-18 Thread Stefan Bodewig
Hi Remko On 2018-11-15, Remko Popma wrote: > Would there be any interest in using picocli ( > https://github.com/remkop/picocli) as the command line parser in > `org.apache.tools.ant.Main`? Ant's core has zero dependencies and we value this property. > Picocli has support for @-files

Re: Command line argument files

2018-11-15 Thread Remko Popma
richt- > > Von: Remko Popma [mailto:remko.po...@gmail.com] > > Gesendet: Donnerstag, 15. November 2018 11:14 > > An: dev@ant.apache.org > > Betreff: Command line argument files > > > > Would there be any interest in using picocli ( > > https://github.com/remkop/p

AW: Command line argument files

2018-11-15 Thread jhm
. Jan https://github.com/apache/ant/blame/master/src/main/org/apache/tools/ant/Main.java > -Ursprüngliche Nachricht- > Von: Remko Popma [mailto:remko.po...@gmail.com] > Gesendet: Donnerstag, 15. November 2018 11:14 > An: dev@ant.apache.org > Betreff: Command line argument f

Command line argument files

2018-11-15 Thread Remko Popma
Would there be any interest in using picocli ( https://github.com/remkop/picocli) as the command line parser in `org.apache.tools.ant.Main`? Picocli has support for @-files (https://picocli.info/#AtFiles ) to handle cases where the length of the command line exceeds the OS limitations. (I believe