我有一个像这样的目录结构:
如何设置我的pom.xml以便它只以粗体处理文件夹?如果可能的话,我希望它们都能在一次mvn sonar:sonar
调用中处理,并在Sonar中显示为单独的项目。我试着查看项目对象模型的文档,但是我发现它很难,并且无法弄清楚如何设置它如我所描述的那样。这就是我的pom.xml,位于base,目前看起来像:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.foo.bar.baz</groupId>
<artifactId>subsubdir2</artifactId>
<name>MyProject</name>
<version>1.0</version>
<build>
<sourceDirectory>subdir3/subsubdir2</sourceDirectory>
<testSourceDirectory>unittests</testSourceDirectory>
</build>
<properties>
<sonar.language>php</sonar.language>
<sonar.phase>generate-sources</sonar.phase>
</properties>
</project>
答案 0 :(得分:0)
您可以构建顶级pom并使用sonar.skippedModules or sonar.includedModules property设置要构建的模块列表。这不会将每个模块显示为声纳顶层的单独项目,但如果您进入项目并选择“模块”,那么您将看到列出的每个模块,就像它是一个单独的项目一样。