Must-share information (formatted with Markdown):
- SonarQube 7.8.0.26217, Developer Edition, 500K LOC license
- Change location of the scanned source without doubling LOC license count
- I currently have the following properties in the scanner:
sonar.projectKey=SQLServer_Trunk_StoredProcs
sonar.projectName=SQLServer_Trunk_StoredProcs
sonar.projectVersion=1.0
sonar.sources= C:/src/ SQLServer_trunk/stored_procs
sonar.projectBaseDir= C:/src/ SQLServer_trunk/stored_procs
I need to automate the scanner by checking out the same source tree under Jenkins (CI server) workarea so that my configuration would have to become the following:
sonar.projectKey=SQLServer_Trunk_StoredProcs
sonar.projectName=SQLServer_Trunk_StoredProcs
sonar.projectVersion=1.0
sonar.sources= C:/Jenkins/workarea/ SQLServer_trunk/stored_procs
sonar.projectBaseDir= C:/Jenkins/workarea/ SQLServer_trunk/stored_procs
Will this create a problem with licensing? Meaning, would it cause SonarQube to double LOC license count? If it would, what can I do to move the code to the new location without impacting the license LOC count?
Thank you