blob: da9560a10dd3cebb2357f9c2f6bddab6c635edd5 (
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': 'posttask-plugin',
'Plugin-Version': version,
'Plugin-Class': 'PostTaskPlugin',
'Plugin-ChildFirstClassLoader': 'false',
'Sonar-Version': '7.1-SNAPSHOT',
'SonarLint-Supported': 'false',
'Plugin-Name': 'SonarQube Integration Tests :: Plugins :: PostTask',
'Plugin-License': 'GNU LGPL 3'
)
}
}
|