码迷,mamicode.com
首页 > 其他好文 > 详细

POM文件编译打包配置整理

时间:2019-05-12 18:20:09      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:过程   source   exe   ram   build   pre   ring   oal   2.7   

1、整个打包过程就是插件添加过程,添加build插件

2、指定testng.xml路径的编译插件:执行mvn clean package

技术图片
<build>
        <finalName>test</finalName>
        <plugins>
            <!--编译打包配置-->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.7.1</version>
                <configuration>
                    <suiteXmlFiles>
                        <suiteXmlFile>
                            <!--配置testng.xml路径-->
                            ./src/main/resources/testng.xml
                        </suiteXmlFile>
                    </suiteXmlFiles>
                </configuration>
            </plugin>
        </plugins>
    </build>
View Code

3、springboot项目编译打包,包括对应pom依赖

技术图片
<!--springboot项目编译打包-->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <!--指定应用程序入口-->
                    <mainClass>extentreport.TestMethodsDemo</mainClass>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <encoding>UTF-8</encoding>
                    <compilerArguments>
                        <extdirs>${project.basedir}</extdirs>
                    </compilerArguments>
                </configuration>
            </plugin>
View Code

 

POM文件编译打包配置整理

标签:过程   source   exe   ram   build   pre   ring   oal   2.7   

原文地址:https://www.cnblogs.com/wangkc/p/10853092.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!