2
です。どのようにしてproject.execまたはExecタスクを実行すると、コマンドラインに関するすべての情報が表示されないのですか?Gradle Execタスクのパスワードは
コード
project.exec {
workingDir = exeDir.absolutePath
executable = starter.absolutePath
args = commandLine.split().toList()
environment << envVars
project.logging.captureStandardOutput LogLevel.INFO
standardOutput = outputStream
errorOutput = outputStream
}
出力
Starting process 'command 'regexIdentifier''. Working directory:
/home/code/ Command: /home/code/bin/regexIdentifier server username
password ...
Successfully started process 'command '/home/code/bin/regexIdentifier''
私はGradleのExecのタスクを経由してパスワードでcmdを実行する必要があるとのGradleは、実行時にコマンドラインを表示しないようにしたいです