我想在gradle自定义任务中使用Apache ant sshexec
任务。问题是此任务不起作用(输出未显示在控制台中,并且sshexec操作未执行)。这就是我使用它的方式:
configurations {
sshexecAntTask
}
repositories {
mavenCentral()
}
dependencies {
sshexecAntTask 'org.apache.ant:ant-jsch:1.7.0'
}
// ----------------------------------------------------
import java.nio.file.FileAlreadyExistsException;
import java.nio.file.Files
class MyCustomTask extends DefaultTask {
@TaskAction
def build() {
String command = ""
command = 'cmd.exe /C mdir C:\\aadd'
runSshCommand(command)
}
private void runSshCommand(String command) {
String host = "host"
String username = "username"
String password = "password"
ant.taskdef(name: 'sshexec', classname: 'org.apache.tools.ant.taskdefs.optional.ssh.SSHExec', classpath: project.configurations.sshexecAntTask.asPath)
// this command is not executed; why?
ant.sshexec(host: host, username: username, password: password, command: command, trust: 'true', failonerror: 'true')
}
}
[编辑] 我测试了sshexec,这些是我的结果:
cmd.exe /C echo test > C:\testresult.txt
正常工作,输出返回到文件。cmd.exe /C echo test > C:\testresult.txt
正常工作,输出返回到文件。太好了!cmd.exe /C echo test
正常工作,输出返回到stdout。的 <!/强> cmd.exe /C echo test
正常工作但输出未返回到stdout。的 <!/强> cmd.exe /C mkdir C:\\\\Inetpub\\\\ftproot\\\\temp\\\\jakisnowykatalog
正常工作并创建了目录(我需要使用\\\\
作为路径分隔符,因为\\
,\
,/
没有工作)cmd.exe /C mkdir C:\\\\Inetpub\\\\ftproot\\\\temp\\\\jakisnowykatalog
不起作用,并且未创建目录。我应该补充一点,我想连接windows ssh服务器(不是unix / mac),但我也用mac shh测试了这些命令但没有成功。请帮忙!
[另一个编辑] 我已经创建了groovy测试代码,它使用jsch库来执行命令并且它可以工作。我仍然不知道为什么蚂蚁任务不起作用。
import com.jcraft.jsch.*
import java.util.Properties;
private void jschTest() {
Session session = null
Channel channel = null
try {
JSch jsch = new JSch()
session = jsch.getSession("host", "login", 22)
session.setPassword("password")
Properties config = new Properties()
config.put("StrictHostKeyChecking", "no")
session.setConfig(config)
session.connect()
String command = "cmd.exe /C mkdir C:\\gradledir"
channel = session.openChannel("exec");
((ChannelExec)channel).setCommand(command);
channel.connect()
}
catch (Exception e) {
println e.getMessage()
}
finally {
if (session!=null) {
session.disconnect()
}
if (channel!=null) {
channel.disconnect()
}
}
}
答案 0 :(得分:1)
假设您声明了一个MyCustomTask类型的任务并正确执行它,我认为没有理由不执行Ant任务。这个问题在其他地方更有可能发生(例如Ant任务的错误配置)。