How to set multiple source locations in Sonar Server?

18,510

you can use sonar-runner to do that. This is more useful.

You can declare two modules. One by source directory. Then you have to configure the execution by declaring a properties file.

This file should look like this

sonar.projectKey=myproject
sonar.projectName=myprojectname
sonar.projectVersion=version
sonar.sourceEncoding=UTF-8


sonar.modules=normalsource-module, generated-module


normalsource-module.sonar.projectName=Normal Sources Module
normalsource-module.sonar.language=java
normalsource-module.sonar.sources=src/main/java
normalsource-module.sonar.binaries=target/classes
normalsource-module.sonar.projectBaseDir=.


generated-module.sonar.projectName=Generated Sources Module (Java)
generated-module.sonar.language=java
generated-module.sonar.sources=src/main/java
generated-module.sonar.binaries=target/classes
generated-module.sonar.projectBaseDir=.

Hope this helps,

Regards

Share:
18,510
Thilina Munasinghe
Author by

Thilina Munasinghe

Updated on July 20, 2022

Comments

  • Thilina Munasinghe
    Thilina Munasinghe almost 2 years

    I'm using Maven 3 and in my java project, the pom file contains one source location as follows.

    <build>
            <sourceDirectory>src/main/java</sourceDirectory>
            <testSourceDirectory>src/test/java</testSourceDirectory>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <configuration>
                        <source>${JDK}</source>
                        <target>${JDK}</target>
                        <excludes>
                            <!--<exclude>**/**/api/notification/**/INotificationProfileManager.java</exclude> -->
                        </excludes>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-ejb-plugin</artifactId>
                    <configuration>
                        <version>1.3</version>
                        <archive>
                            <manifest>
                                <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
                                <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                            </manifest>
                            <manifestEntries>
                                <Class-Path>./MubarsherTradeClasspath-1.0.jar</Class-Path>
                                <Specification-Vendor>Mubasher</Specification-Vendor>
                                <Implementation-Vendor>Mubasher</Implementation-Vendor>
                                <Sealed>false</Sealed>
                            </manifestEntries>
                        </archive>
                    </configuration>
                </plugin>
    

    After compiling, the generated files are located in .../generate/src/main/java/... path. When Sonar analysis is done, it checks these generated classes which themselves have a ../src/main/java/... path, so the analysis fails.

    So I need to know how to define multiple source paths to analyze from sonar ?

  • MKorsch
    MKorsch about 8 years
    This is not a good way if you try to analyze a project with 50+ modules. Is there any generic approach to add source folders in a maven multi-module project? I'd like to keep using the maven-scanner instead of the sonar-scanner.
  • paul
    paul almost 7 years
    Any improvement on this? I have the same issue