blob: 98bab88f73f49a5360f2d029814338796b0ba161 (
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
|
configurations {
testImplementation.extendsFrom(compileOnlyApi)
}
dependencies {
compileOnlyApi 'org.sonarsource.api.plugin:sonar-plugin-api'
compileOnlyApi 'com.github.spotbugs:spotbugs-annotations'
implementation 'commons-io:commons-io'
testImplementation 'junit:junit'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.mockito:mockito-core'
testImplementation project(':sonar-plugin-api-impl')
}
jar {
manifest {
attributes(
'Plugin-Key': 'education',
'Plugin-Version': project.version,
'Plugin-Class': 'org.sonar.education.EducationPlugin',
'Plugin-ChildFirstClassLoader': 'false',
'Sonar-Version': project.pluginApiVersion,
'SonarLint-Supported': 'true',
'Plugin-Name': 'Education'
)
}
into('META-INF/lib') {
from configurations.runtimeClasspath
}
}
artifactoryPublish.skip = !deployCommunity
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
if (release) {
artifact sourcesJar
artifact javadocJar
}
}
}
}
|