Spring

maven(从零实现一个自定义插件)

2019-01-24  本文已影响0人  半数的年
1、常用插件

具体常用的有以下这些:

2、自定义插件

文档
https://maven.apache.org/guides/plugin/guide-java-plugin-development.html

实现自定义扫描项目中java文件个数

<!-- 将打包形式改为plugin -->
<packaging>maven-plugin</packaging>
    <dependencies>
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-plugin-api</artifactId>
            <version>3.5.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.maven.plugin-tools</groupId>
            <artifactId>maven-plugin-annotations</artifactId>
            <version>3.6.0</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>
@Mojo(name = "findtype", defaultPhase = LifecyclePhase.PACKAGE)
public class ZJYMojo extends AbstractMojo {
    /**
     * 默认读project下src文件下的文件
     */
    @Parameter(property = "project.directory")
    private String path;
    /**
     * 默认判断文件类型是java
     */
    @Parameter(property = "type", defaultValue = "java")
    private String type;
    public void execute() throws MojoExecutionException, MojoFailureException {
        System.out.println("xiaoyuan define plugin " + path);
        // 读取路径下的java文件个数
        // 递归实现
        System.out.println(type + " Files' number in project (Recursive)" + readRecursive(path, ".*?\\."+ type +"$"));
        // 非递归实现
        System.out.println(type + " Files' number in project " + read(path, ".*?\\."+ type +"$"));
    }
    // 递归实现某路径下 存在regex字符串的文件个数
    private int readRecursive(String path, String regex) {}
    // 非递归实现某路径下 存在regex字符串的文件个数
    private int read(String path, String regex) {}
}
<plugins>
    <plugin>
        <groupId>com.xiaoyuan</groupId>
        <artifactId>yuan-maven-plugin</artifactId>
        <version>1.0-SNAPSHOT</version>
        <configuration>
            <!--配置传给插件的参数-->
            <path>${basedir}</path>
        </configuration>
        <!--挂载在package时运行-->
        <executions>
            <execution>
                <phase>package</phase>
                    <goals>
                        <goal>xiaoyuan</goal>
                    </goals>
           </execution>
        </executions>
    </plugin>
</plugins>
上一篇 下一篇

猜你喜欢

热点阅读