blob: 2b65d26cbf6a0917b320053f41bd897061b90073 (
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
28
29
30
31
32
33
34
35
|
sonarqube {
skipProject = true
}
dependencies {
// please keep the list grouped by configuration and ordered by name
compile 'com.codeborne:selenide:4.8'
// required version 23.0 for selenide
compile 'com.google.guava:guava:23.0'
compile 'org.assertj:assertj-core'
compile 'org.sonarsource.orchestrator:sonar-orchestrator'
compile project(':sonar-ws')
compileOnly 'com.google.code.findbugs:jsr305'
}
artifactoryPublish.skip = false
// Required for core plugins
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
if (release) {
artifact sourcesJar
artifact javadocJar
pom.withXml {
asNode().appendNode('description', description)
asNode().children().last() + pomConfig
}
}
}
}
}
|