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.

build.gradle 323B

12345678910111213141516171819
  1. sonar {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Scanner Engine Shaded"
  4. }
  5. }
  6. apply plugin: 'com.github.johnrengelman.shadow'
  7. dependencies {
  8. api project(':sonar-scanner-engine')
  9. }
  10. jar {
  11. manifest {
  12. attributes(
  13. 'Main-Class' : "org.sonar.scanner.bootstrap.ScannerMain"
  14. )
  15. }
  16. }