apache commons-exec を使用して git clone コマンドを実行しようとしましたが、スタックしました。パスワード入力のプロンプトが表示されず、そこでブロックされました。
DefaultExecutor executor = new DefaultExecutor();
executor.setStreamHandler( new PumpStreamHandler( System.out, System.err, System.in ) );
executor.execute( "git clone --progress -v https://xxx/prj.git" );
これを解決するためのアイデアはありますか?