blob: 6ce9d77d5eecec36e019e34c11ec1e5630135135 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
dependencies {
compileOnly project(path: ':sonar-plugin-api', configuration: 'shadow')
}
jar {
manifest {
attributes(
'Plugin-Key': 'property-sets-plugin',
'Plugin-Version': version,
'Plugin-Class': 'PropertySetsPlugin',
'Plugin-ChildFirstClassLoader': 'false',
'Sonar-Version': '7.1-SNAPSHOT',
'SonarLint-Supported': 'false',
'Plugin-Name': 'property-sets-plugin',
'Plugin-License': 'GNU LGPL 3'
)
}
}
|