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

Maven 的常用插件

时间:2019-01-07 10:36:13      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:apach   under   编译   mave   方式   范围   XML   ati   com   

设置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 的常用插件

标签:apach   under   编译   mave   方式   范围   XML   ati   com   

原文地址:https://www.cnblogs.com/ys951207/p/10231267.html

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