blob: e21395aa1beeeba97b7c7213b8991100aec6d0e0 (
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': 'batch-plugin',
'Plugin-Version': version,
'Plugin-Class': 'com.sonarsource.BatchPlugin',
'Plugin-ChildFirstClassLoader': 'false',
'Sonar-Version': '7.1-SNAPSHOT',
'SonarLint-Supported': 'false',
'Plugin-Name': 'SonarQube Integration Tests :: Plugins :: Batch',
'Plugin-License': 'GNU LGPL 3'
)
}
}
|