欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Maven常用命令

程序员文章站 2022-03-04 14:47:45
...

mvn clean:清理
mvn compile:编译
mvn test:测试
mvn surefire-report:report:测试成功率
mvn cobertura:cobertura:测试覆盖率

  • CheckStyle

mvn checkstyle:checkstyle:代码规范检查

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-checkstyle-plugin</artifactId>
    <version>${maven.checkstyle.version}</version>
</plugin>
  • JavaDoc

mvn javadoc:jar:生成说明文档

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <version>2.6.1</version>
            <configuration>
                <encoding>UTF-8</encoding>
            </configuration>
        </plugin>
    </plugins>
</build>
相关标签: maven