blob: 236efe4fd99154287d9145964129eff652f35811 (
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
|
configurations {
testImplementation.extendsFrom(compileOnlyApi)
}
dependencies {
compileOnlyApi 'org.sonarsource.api.plugin:sonar-plugin-api'
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.version,
'SonarLint-Supported': 'true',
'Plugin-Name': 'Education'
)
}
}
artifactoryPublish.skip = false
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
if (release) {
artifact sourcesJar
artifact javadocJar
}
}
}
}
|