Maven 自定义插件的研发

一、自定义插件研发 Pom.xml如下:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.plugin.test</groupId><!-- 项目包名 -->
    <artifactId>maven-plugin-test</artifactId><!-- 项目名称 -->
    <version>1.0</version><!-- 版本 -->

    <packaging>maven-plugin</packaging><!-- 打包的方式 (war、jar、maven-plugin(自定义开发的方式))-->

    <!-- FIXME change it to the project's website -->
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <!-- maven 开发插件需要的依赖 start -->
        <dependency><!--使用doc的方式-->
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-plugin-api</artifactId>
            <version>2.0</version>
        </dependency>
        <dependency><!--使用注解的方式-->
            <groupId>org.apache.maven.plugin-tools</groupId>
            <artifactId>maven-plugin-annotations</artifactId>
            <version>3.2</version>
            <scope>provided</scope>
        </dependency>
        <!-- maven 开发插件需要的依赖 end -->
        <dependency>
            <groupId>org.codehaus.plexus</groupId>
            <artifactId>plexus-utils</artifactId>
            <version>3.0.8</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.2</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <!-- 自定义插件的使用示例 -->
    <!--
        maven 执行自定义插件goal命令调用的顺序有两种:
        第一种:
                groupId:artifactId:version:goal
        当前示例:com.plugin.test:maven-plugin-test:1.0:sayhi
        需要加插件(如果需要设置自定义插件依赖的参数,方可添加,否则的话,不需要添加)
                1).maven-plugin-test(自定义开发插件、设置自定义插件依赖的参数)
        第二种:
                goalPrefix:goal
        当前示例:statis:sayhi
        需要加插件
                1).maven-plugin-plugin(可以定义前缀、和goal执行时所需参数)
                2).maven-plugin-test(自定义开发插件、设置自定义插件依赖的参数)

        在例子里已经有,自行查看
    -->
    <build>
        <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-plugin-plugin</artifactId>
                <version>3.2</version>
                <executions>
                    <execution>
                        <id>default-descriptor</id>
                        <goals>
                            <goal>descriptor</goal>
                        </goals>
                        <phase>process-classes</phase>
                    </execution>
                    <execution>
                        <id>help-descriptor</id>
                        <goals>
                            <goal>helpmojo</goal>
                        </goals>
                        <phase>process-classes</phase>
                    </execution>
                </executions>
                <configuration>
                    <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
                    <goalPrefix>statis</goalPrefix><!-- 插件执行命令前缀 -->
                </configuration>
            </plugin>
            <plugin>
                <groupId>com.plugin.test</groupId>
                <artifactId>maven-plugin-test</artifactId>
                <version>1.0</version>
                <configuration>
                    <age>28</age><!-- goal执行所需参数指定位置,必须与goal目标的属性一致 -->
                </configuration>
            </plugin>
        </plugins>
        </pluginManagement>
    </build>


</project>

说明:具体解释,都在POM文件中,可以查看,在这里推荐第二种goal的方式

二、继承AbstractMojo,编写自己的goal,以下是用注解的方式

package com.plugin.test;

import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;


@Mojo(name = "sayhi", defaultPhase = LifecyclePhase.COMPILE)
public class MyMojo extends AbstractMojo {

    @Parameter
    private String age;

    public void execute() throws MojoExecutionException {
        System.out.println("ok le ....");

        System.out.println("age:" + age);

    }

    public String getAge() {
        return age;
    }

    public void setAge(String age) {
        this.age = age;
    }
}
    

三、具体的执行方式:

1)com.plugin.test:maven-plugin-test:1.0:sayhi

2)statis:sayhi

四、代码地址:

https://github.com/tuonioooo/maven-plugin






  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值