使用Maven

Maven是一个开源的、功能强大的 Project Management工具,虽然使用起来很简单,但是由于项目管理本身的复杂性和Maven的可配置性,所以不熟悉Maven的人一开始往往不能正确的使 用它来实现自己想要的功能。这篇随笔意在记录如何在Maven中实现一些功能,此随笔的内容会不断更新,所有内容基于Maven 2。

此随笔不会介绍Maven是什么,以及如何install之类的基础话题,有关信息请参考Maven Getting Started Guide

如何产生Project Report

在pom.xml中配置
<reporting>
    <plugins>
       
<plugin>
           
<groupId>org.codehaus.mojo</groupId>
            <artifactId>surefire-report-maven-plugin</artifactId>
       
</plugin>
    
</plugins>
</reporting>

在src/site/site.xml中添加
${reports}

然后运行mvn site重新生成site,就会看到Project Report的信息了。




posted on 2006-03-22 18:14  Allen Young  阅读(498)  评论(0编辑  收藏  举报