我想像这样写mojo插件:
/**
* @goal write-to-fs
*/
public class WriteToFsMojo extends AbstractMojo
{
public void execute() throws MojoExecutionException
{
String relativePathToFile = "resource/my_direcory/my_file.csv"
// find `relativePathToFile` from where goal executes
// write the file using goal arguments
}
}
我想在项目特定的文件中找到,例如菜单.csv并从 mvn goal 参数将行插入到该文件中。
例如:
mvn org.apache.maven.plugins:my-plugin:write-to-fs "-Did=100" "-Dname=New Menu Item"
我感兴趣的是这种方法是否正确?可能吗?你能举个例子吗?
首先,你正在使用用Javadoc doclets注释类的古老方法。该机制已弃用。从Maven 3开始,你应该改用注释。
除此之外,这取决于您要在插件中执行的操作。如果你详细说明你想做什么,我会扩展我的答案。
这是一个骨架:
@Mojo(name = "write-csv")
public class WriteToFsMojo extends AbstractMojo {
@Parameter(defaultValue = "${project}", readonly = true)
private MavenProject project;
@Parameter(property = "outputFile", defaultValue = "someFileName.csv")
private String filePath;
public void execute() throws MojoExecutionException {
File outputFile = new File(project.getBasedir(), filePath);
// now do something with it
}
}
这将注入 Maven 项目定义,并让用户通过命令行或插件配置提供 outputFile 参数。