美文网首页
Jenkins配置自定义checkstyle

Jenkins配置自定义checkstyle

作者: perfect_jimmy | 来源:发表于2017-04-27 13:46 被阅读135次

    在pom中加入,checkstyle.xml文件必须和pom文件同级目录

    <plugin>    
        <groupId>org.apache.maven.plugins</groupId>    
        <artifactId>maven-checkstyle-plugin</artifactId>    
        <version>2.17</version>  
        <configuration>  
            <consoleOutput>true</consoleOutput>  
            <outputFileFormat>xml</outputFileFormat>  
            <configLocation>checkstyle.xml</configLocation>  
            <linkXRef>false</linkXRef>  
        </configuration>  
        <dependencies>    
            <dependency>    
                <groupId>com.puppycrawl.tools</groupId>    
                <artifactId>checkstyle</artifactId>    
                <version>6.9</version>    
            </dependency>    
        </dependencies>    
    </plugin>   
    

    (本邮件是程序自动下发的,请勿回复,<span style="color:red">请相关人员fix it,重新提交到git 构建</span>)



    a
    项目名称:$PROJECT_NAME

    构建编号:$BUILD_NUMBER


    GIT版本号:${GIT_REVISION}


    构建状态:$BUILD_STATUS


    触发原因:${CAUSE}


    构建日志地址:<a href="${BUILD_URL}console">${BUILD_URL}console</a>


    构建地址:<a href="$BUILD_URL">$BUILD_URL</a>


    变更集:${JELLY_SCRIPT,template="html"}


    相关文章

      网友评论

          本文标题:Jenkins配置自定义checkstyle

          本文链接:https://www.haomeiwen.com/subject/tiggzttx.html