blob: ee1c649008220f4cf2ab8cc9b743c931e1f171f8 (
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
|
dependencies {
compile('com.google.guava:guava:17.0') {
exclude group: 'com.google.code.findbugs', module: 'jsr305'
}
compileOnly project(path: ':sonar-plugin-api', configuration: 'shadow')
compileOnly 'javax.servlet:javax.servlet-api:3.0.1'
}
jar {
manifest {
attributes(
'Plugin-Key': 'baseauthplugin',
'Plugin-Version': version,
'Plugin-Class': 'FakeBaseAuthPlugin',
'Plugin-ChildFirstClassLoader': 'false',
'Sonar-Version': '7.1-SNAPSHOT',
'SonarLint-Supported': 'false',
'Plugin-Name': 'Plugins :: Fake Base Authentication Plugin',
'Plugin-License': 'GNU LGPL 3'
)
}
into('META-INF/lib') {
from configurations.compile
}
}
|