forked from ace-han/coordinator
-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
53 lines (46 loc) · 1.14 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
44
45
46
47
48
49
50
51
52
53
buildscript {
repositories {
mavenCentral()
maven {
url 'http://repo.jenkins-ci.org/releases/'
}
}
dependencies {
classpath 'org.jenkins-ci.tools:gradle-jpi-plugin:0.21.0'
}
}
plugins {
id "org.jenkins-ci.jpi" version "0.21.0"
}
apply plugin: 'jpi'
group = "org.jenkins-ci.plugins"
version = "1.4.1-SNAPSHOT"
jenkinsPlugin {
coreVersion = "1.625.3"
displayName = "Jenkins Coordinator Plugin"
url = "http://wiki.jenkins-ci.org/display/JENKINS/Coordinator"
gitHubUrl = "https://github.com/jenkinsci/coordinator-plugin"
shortName = "coordinator"
fileExtension = 'jpi'
developers {
developer {
id "ace-han"
name "Ace Han"
email "[email protected]"
}
developer {
id "kymair"
name "Jindi Wu"
email "[email protected]"
}
}
dependencies {
optionalJenkinsPlugins 'org.jenkins-ci.plugins:matrix-project:1.4.1@jar'
}
}
dependencies {
compile group: 'cglib', name: 'cglib-nodep', version: '3.1'
}
task wrapper(type: Wrapper) {
gradleVersion = '3.1'
}