forked from jenkinsci/multiple-scms-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (31 loc) · 1001 Bytes
/
build.gradle
File metadata and controls
36 lines (31 loc) · 1001 Bytes
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
plugins {
id 'org.jenkins-ci.jpi' version '0.18.0'
// id 'com.github.hierynomus.license' version '0.12.1'
}
version = '0.7-SNAPSHOT'
description = 'Allows multiple SCM plugins to be used in a job.'
//license {
// header = file('LICENSE')
//}
group = 'org.jenkins-ci.plugins'
jenkinsPlugin {
// version of Jenkins core this plugin depends on, must be 1.420 or later
coreVersion = '1.580.1'
shortName = 'multiple-scms'
displayName = 'Jenkins Multiple SCMs plugin'
url = 'https://wiki.jenkins-ci.org/display/JENKINS/Multiple+SCMs+Plugin'
gitHubUrl = 'https://github.com/jenkinsci/multiple-scms-plugin'
// the developers section is optional, and corresponds to the POM developers section
developers {
developer {
id 'kbell'
name 'Kevin Bell'
email 'kbell6397@gmail.com'
}
developer {
id 'rodrigc'
name 'Craig Rodrigues'
email 'rodrigc@FreeBSD.org'
}
}
}