java

位置:IT落伍者 >> java >> 浏览文章

关于build tool的构想 从Ant说起[4]


发布日期:2021年06月15日
 
关于build tool的构想 从Ant说起[4]

FailCommand负责报告错误

java代码

class FailCommand implements Command{

private final String msg;

public Object execute(CommandContext ctxt){

throw new CommandException(msg);

}

FailCommand (String msg){thismsg=msg;}

}

如此等等这样的基本元件还有很多比如file copy javac zip jar等

但是如果仅仅如此那么这个工具的能力最多也就和ant一样

我们最需要的是把不同的command组合起来的能力

而组合最常见的就是顺序执行

[] [] [] [] [] [] [] [] [] [] []

               

上一篇:关于build tool的构想 从Ant说起[5]

下一篇:关于build tool的构想 从Ant说起[3]