Maven 的常用插件
Posted ys951207
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Maven 的常用插件相关的知识,希望对你有一定的参考价值。
设置jre 版本
两种方式:第一种是局部项目修改 pom.xml 设置compiler 插件。第二种是全局修改setting.xml 文件 配 置profile
<!-- 修改compiler 插件已设置jre 源码版本和编译版本-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<!-- 设置setting.xml 文件中 为profile 添加属性-->
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
</properties>
生成一个源码包:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-source</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
测试指定范围
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20</version>
<configuration>
<includes>
<include>**/User*.java</include>
</includes>
</configuration>
</plugin>
以上是关于Maven 的常用插件的主要内容,如果未能解决你的问题,请参考以下文章