You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sonar-project.properties 538B

12345678910111213141516171819
  1. sonar.projectKey=com.foo.project
  2. sonar.projectName=Foo Project
  3. sonar.projectVersion=1.0-SNAPSHOT
  4. sonar.projectDescription=Description of Foo Project
  5. sonar.sources=sources
  6. sonar.tests=tests
  7. sonar.binaries=target/classes
  8. sonar.modules=module1,\
  9. module2
  10. # Mandatory properties for module1 are all inferred from the module ID
  11. module2.sonar.projectKey=com.foo.project.module2
  12. module2.sonar.projectName=Foo Module 2
  13. # redefine some properties
  14. module2.sonar.projectDescription=Description of Module 2
  15. module2.sonar.sources=src