Maven打包时执行指定的方法

Posted 商商-77

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Maven打包时执行指定的方法相关的知识,希望对你有一定的参考价值。

有时候需要在maven打包的时候执行指定的方法,可以通过以下配置来实现

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.1.1</version>
    <executions>
        <execution>
            <phase>test</phase>
            <goals>
                <goal>java</goal>
            </goals>
            <configuration>
                <mainClass>com.umgsai.core.MetaProvider</mainClass>
                <arguments>
                    <argument>xxx-1r</argument>
                    <!--<argument>arg1</argument>-->
                </arguments>
            </configuration>
        </execution>
    </executions>
</plugin>

以上配置表示在maven执行test阶段,去执行com.umgsai.core.MetaProvider类的main方法,arguments中配置的是main方法的参数。

参考 https://my.oschina.net/u/2474629/blog/983784

以上是关于Maven打包时执行指定的方法的主要内容,如果未能解决你的问题,请参考以下文章

使用maven打包指定目录

Maven打包可执行jar

maven项目打包插件:将maven项目打包成一个可执行的jar(瘦jar)

jenkins指定pom打包

maven 打包成 .jar 文件执行:没有主清单属性错误

Maven打包所有依赖到一个可执行jar中