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 602B

1234567891011121314151617181920212223242526272829
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Priviledged Plugin Bridge"
  4. }
  5. }
  6. dependencies {
  7. // please keep the list grouped by configuration and ordered by name
  8. compile project(path: ':sonar-plugin-api', configuration: 'shadow')
  9. compile project(':sonar-core')
  10. compileOnly 'com.google.code.findbugs:jsr305'
  11. }
  12. artifactoryPublish.skip = false
  13. // Used by core plugins
  14. publishing {
  15. publications {
  16. mavenJava(MavenPublication) {
  17. from components.java
  18. if (release) {
  19. artifact sourcesJar
  20. artifact javadocJar
  21. }
  22. }
  23. }
  24. }