美文网首页
maven-checkstyle-plugin插件如何跳过子模块

maven-checkstyle-plugin插件如何跳过子模块

作者: 滴流乱转的小胖子 | 来源:发表于2024-02-06 13:06 被阅读0次

    背景:
    一个项目中 包含两个模块,core、service模块,由于业务需要子模块core跳过chechstyle的检测

    正文:
    在需要跳过的检查的子模块pom中,显示的设置maven插件配置,以局部配置覆盖全局配置

    <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-source-plugin</artifactId>
    <version>2.4</version>
    <executions>
    <execution>
    <id>attach-sources</id>
    <phase>install</phase>
    <goals>
    <goal>jar</goal>
    </goals>
    </execution>
    </executions>
    </plugin>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-checkstyle-plugin</artifactId>
    <configuration>
    <skip>true</skip>
    </configuration>
    </plugin>
    </plugins>

    相关文章

      网友评论

          本文标题:maven-checkstyle-plugin插件如何跳过子模块

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