blob: df7a0be86c4b332b9e4d48720f9ff5c498817579 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
configurations {
testCompile.extendsFrom(compileOnly)
}
dependencies {
compile 'com.google.guava:guava'
compile 'commons-io:commons-io'
compile 'commons-lang:commons-lang'
compileOnly 'com.google.code.findbugs:jsr305'
runtime project(path: ':sonar-plugin-api', configuration: 'shadow')
compileOnly project(path: ':sonar-plugin-api')
testCompile 'junit:junit'
testCompile 'org.assertj:assertj-core'
testCompile 'org.mockito:mockito-core'
}
jar {
manifest {
attributes(
'Plugin-Key': 'xoo',
'Plugin-Version': project.version,
'Plugin-Class': 'org.sonar.xoo.XooPlugin',
'Plugin-ChildFirstClassLoader': 'false',
'Sonar-Version': project.version,
'SonarLint-Supported': 'true',
'Plugin-Name': 'Xoo'
)
}
into('META-INF/lib') {
from configurations.compile
}
}
artifactoryPublish.skip = false
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
if (release) {
artifact sourcesJar
artifact javadocJar
pom.withXml {
asNode().appendNode('description', description)
asNode().children().last() + pomConfig
}
}
}
}
}
|