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