在 Maven 中,使用编译器插件,我们可以做到
mvn compile
并编译项目。我需要的是编译项目并做一些其他的事情。
例如,在 ANT 中,我可以这样做:
public class Main extends Javac13 {
@Override
public boolean execute() throws BuildException {
System.out.println("Main::execute");
attributes.log("Using modern compiler", Project.MSG_VERBOSE);
Commandline cmd = setupModernJavacCommand();
try {
int result = com.sun.tools.javac.Main.compile(cmd.getArguments());
return result == 0;
} catch (Exception ex) {
if (ex instanceof BuildException) {
throw (BuildException) ex;
} else {
throw new BuildException("Error starting modern compiler", ex, location);
}
}
}
@Override
public void setJavac(Javac javac) {
System.out.println("Main::setJavac " + javac);
super.setJavac(javac);
}
}
以这种方式启动它:
ant -Dbuild.compiler=com.moc.Main ...
上面的类变成了编译器,我可以用 ANT 给我的命令行做任何我想做的事情。另外,最棒的是我不需要接触 build.xml 文件。我只需要设置一个系统属性。
Maven中有这样的东西吗?