gpt4 book ai didi

java - 有什么方法可以对单个文件运行 Sonar 分析?

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:47:00 24 4
gpt4 key购买 nike

我的项目太大,在整个项目上运行 Sonar 会占用大量时间和内存。所以我想知道是否有任何方法可以在单个 java 文件上运行 Sonar 。

最佳答案

您也可以直接使用包含或排除(或两者),而不是安装此插件。

在执行的 pom.xml 中,您可以编写 pathToInclude(在属性部分中),并且在控制台中,您必须使用 -Dsonar.inclusions=pathToInclude 添加属性/p>

-Dsonar.inclusions=file:/path_to_my_project/MyProject.java
//only the file above will be analyzed

-Dsonar.exclusions=file:/path_to_my_project_root/another_directory/**/*
//all subfolders and files within "another_directory" are exclued / ignored.

-Dsonar.inclusions=file:/path_to_my_project/another_directory/MyProject.java
-Dsonar.exclusions=file:/path_to_my_project/another_directory/**/*
//all subfolders and files within "another_directory" are exclued / ignored EXCEPT MyProject.java.

关于java - 有什么方法可以对单个文件运行 Sonar 分析?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23513697/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com