forked from jkennedy1980/clang-scanbuild-plugin
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathbuild.gradle
43 lines (36 loc) · 1.16 KB
/
build.gradle
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
41
42
43
plugins {
id 'org.jenkins-ci.jpi' version '0.17.0'
id 'com.github.hierynomus.license' version '0.12.1'
}
group = 'org.jenkins-ci.plugins'
version = '1.9-SNAPSHOT'
description = 'Provides an easy way to execute and report Clang scan-build errors using jenkins'
license {
header = file('LICENSE.mit')
}
jenkinsPlugin {
// version of Jenkins core this plugin depends on
coreVersion = '1.609.3'
shortName = 'clang-scanbuild'
displayName = 'Clang Scan-Build Plugin'
url = 'https://wiki.jenkins-ci.org/display/JENKINS/Clang+Scan-Build+Plugin'
gitHubUrl = 'https://github.com/jenkinsci/clang-scanbuild-plugin.git'
fileExtension = 'jpi'
// the developers section is optional, and corresponds to the POM developers section
developers {
developer {
id 'jkennedy1980'
name 'Joshua Kennedy'
email '[email protected]'
}
developer {
id 'rodrigc'
name 'Craig Rodrigues'
email '[email protected]'
}
}
}
dependencies {
jenkinsTest 'org.jenkins-ci.plugins:matrix-project:1.6@jar'
}
defaultTasks 'jpi', 'test'