`
wade6
  • 浏览: 273519 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

maven plugins

 
阅读更多

maven-compiler-plugin

在pom.xml中没有声明的加入这个plugin时,是按照1.3来进行编译的。
可以在这个plugin中指定source和target的版本,当指定的版本是1.5,而用到的编译器确实jdk1.6时,即使源码中用到了JDK1.6库中的方法,照样可以编译通过。
当然,如果source中有泛型,设定版本为1.3,还是编译不过的。
这里source和target版本的含义应该是指定java虚拟机所能识别的版本号。
在上面这个case中,jdk1.6编译的,目标版本1.5编译后,在1.5的虚拟机上运行错误,提示所用1.6库中的方法不存在。
可如果编译目标版本是1.6,然后在1.5虚拟机上运行错误提示Bad version number in .class file。
所以,如果希望在1.5编译时就发现错误,就要用1.5的编译器。

maven-antrun-plugin

ant是一个老牌的项目打包管理系统了,目前虽然已经慢慢被maven取代,但其功能的强大仍然是很多场合下的首选,尤其是众多的task可以基本满足任何需求。其实在maven中也有使用ant的需求,比如不同环境打包编译时使用不同的配置信息等,或者是说做一些文件删除、复制之类的事情,这有些是maven做不来的,而ant就可以了,况且maven中已经有了maven-antrun-plugin插件,专门为在maven中运行ant做好了准备。 
      使用这个插件,只需要在项目的pom文件中定义如下插件片段: 
Java代码  收藏代码
  1. <plugin>   
  2.    <artifactId>maven-antrun-plugin</artifactId>    
  3.      <executions>       
  4.         <execution>         
  5.              <phase>compile</phase>        
  6.                    <goals>            
  7.                          <goal>run</goal>        
  8.                    </goals>             
  9.                    <configuration>       
  10.                          <tasks>          
  11.                              <delete file="${project.build.directory}/classes/abc.properties" />        
  12.                          </tasks>          
  13.                    </configuration>        
  14.         </execution>    
  15.      </executions>  
  16. </plugin>  
   
这里,我们在maven的编译阶段执行一些文件的删除操作,比如将测试环境的配置文件删除,复制生产环境的配置文件等等,我们都可以使用ant的task来定义。通过ant的maven插件,可以将ant的强大功能也都引入到maven中来,实现二者的强强结合。 

参考文档: 
1、maven-antrun-plugin插件:http://maven.apache.org/plugins/maven-antrun-plugin/ 
2、ant的task列表总览:http://ant.apache.org/manual/tasksoverview.html 


maven-surefire-plugin

The Surefire Plugin is used during the test phase of the build lifecycle to execute the unit tests of an application. It generates reports in 2 different file formats:

  • Plain text files (*.txt)
  • XML files (*.xml)

By default, these files are generated at ${basedir}/target/surefire-reports.

Goals Overview

The Surefire Plugin has only 1 goal:

  • surefire:test runs the unit tests of an application.

maven-eclipse-plugin

Maven Eclipse plugin是用来生成eclipse的project文件的,如(.classpath、.project等)。



maven-source-plugin

The Source Plugin creates a jar archive of the source files of the current project. The jar file is, by default, created in the project's target directory.

当使用一个普通的jar包时,集成环境(比如Eclipse)没有足够的信息用来显示类的javadoc,连接口参数的名称都会变成arg0,arg1等等这样的样式。为了显示javadoc,我们必须手工指定库的源码所在。而像我这么懒的程序员,怎么可能靠手工解决问题呢?
我们可以用Maven的source plugin来方便的解决这个问题。在编译jar包的时候,plugin可以编一个源码包。
把它部署到你的Maven源中,用Maven的eclipse plugin就可以直接将源码加到classpath并在集成环境使用了。
分享到:
评论

相关推荐

    maven工具包 maven plugins

    `org.apache.maven.plugins`是Maven官方提供的插件包,包含了众多常用的插件。 **2. Maven插件** Maven插件是Maven生态系统中的重要部分,它们扩展了Maven的功能,使得开发者能够执行特定的任务,如资源复制、打包...

    Apache MyFaces Trinidad Maven Plugins.zip

    Apache MyFaces Trinidad Maven Plugins则是为MyFaces Trinidad库专门设计的一系列Maven插件。 这些插件的主要作用包括: 1. **构建与部署**:Maven插件可以帮助开发人员构建MyFaces Trinidad项目,编译源代码,...

    Example project using GitHub Maven Plugins.zip

    Example project using GitHub Maven Plugins

    Apache.Maven.Cookbook.1785286129

    Discover when and how to use the various Apache Maven plugins Generate and publish your project documentation using Apache Maven Analyze and control code quality and code coverage using Apache Maven ...

    Jenkins编译报错Failed to execute goal org.apache.maven.plugins_maven-clean-plugin

    Failed to execute goal org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean) on project

    eclipse maven插件

    在你的 eclipse 安装的根目录下创建两个文件夹:links,mavenPlugins(文件夹名称可自定义),把eclipse-maven3-plugin.7z解压后的features和plugins文件夹放到mavenPlugins文件夹下(必须如此,注意解压后文件夹的...

    maven-plugins:[不建议使用] Apache Maven插件的镜像

    "MavenPlugins-trunk"通常指的是该镜像包含了Maven插件的主开发分支,"trunk"在版本控制系统中通常表示主要的开发分支,意味着这些插件可能是最新的开发版本,但同时也可能包含未稳定或未发布的特性。 在Maven的...

    2020年解决:IDEA中已配置阿里镜像,但maven无法下载jar包的问题.doc

    ### 2020年解决:IDEA中已配置阿里镜像,但maven无法下载jar包的问题 #### 问题背景及描述 在IntelliJ IDEA(简称IDEA)环境中,用户配置了阿里云的Maven镜像后,仍然遇到了maven无法下载特定的jar包的情况。具体...

    Failed to execute goal org.apache.maven.plugins:maven-compiler

    在&lt;plugins&gt;&lt;/plugins&gt;中添加 &lt;groupId&gt;org.apache.maven.plugins &lt;artifactId&gt;maven-compiler-plugin &lt;version&gt;3.8.1 &lt;source&gt;1.8 &lt;target&gt;1.8 &lt;/plugin&gt;

    maven插件包下载

    Maven项目对象模型(POM),可以通过一小段描述信息来管理项目的构建,报告和文档的软件项目管理工具

    Android代码-maven-plugins

    GitHub Maven Plugins Collection of Maven plugins that integrate with GitHub. These plugins are built on top of API v3 through the GitHub Java library. Released builds are available from Maven Central...

    maven-shade-plugin-3.1.0.jar

    &lt;groupId&gt;org.apache.maven.plugins &lt;artifactId&gt;maven-shade-plugin &lt;version&gt;3.1.0 &lt;phase&gt;package &lt;goal&gt;shade implementation="org.apache.maven.plugins.shade.resource....

    eclipse4.5 mars 64位 自带Maven插件

    Eclipse Mars集成了Maven插件,即M2E (Maven Integration for Eclipse),使得开发者无需离开Eclipse环境就能方便地进行Maven相关的操作,如构建项目、管理依赖、运行测试等。 集成Maven插件后,Eclipse Mars允许...

    maven 常用命令集合

    Some Maven plugins may not work when importing projects or updating source folders。 解决方式是:创建一个 Eclipse 的启动的快捷方式,在其启动路径后添加-vm 你的 JDK 安装路径\bin\javaw.exe,然后在 ...

    hadoop 使用 maven3.3 仓库 5

    hadoop 使用 maven3.3 仓库 5hadoop 使用 maven3.3 仓库 5

    docker-compose-maven-plugin:使用Maven运行docker-compose

    &lt; groupId&gt;com.dkanejs.maven.plugins&lt;/ groupId&gt; &lt; artifactId&gt;docker-compose-maven-plugin $VERSION 关于 Maven插件,用于通过Maven运行基本的docker-compose命令。 它可以用作Maven生命周期的一部分,也...

Global site tag (gtag.js) - Google Analytics