-
Notifications
You must be signed in to change notification settings - Fork 39
/
build.gradle
59 lines (50 loc) · 1.22 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
54
55
56
57
58
59
buildscript {
repositories {
jcenter()
maven {
url "http://repo.jenkins-ci.org/releases/"
}
}
dependencies {
classpath "org.jenkins-ci.tools:gradle-jpi-plugin:0.29.0"
}
}
plugins {
id "net.researchgate.release" version "2.6.0"
}
apply plugin: "org.jenkins-ci.jpi"
repositories {
jcenter()
}
dependencies {
compile "com.fasterxml.jackson.core:jackson-databind:2.4.4"
compile "org.jenkins-ci:symbol-annotation:1.14"
testCompile "org.mockito:mockito-core:1.10.19"
}
group = "org.jenkins-ci.plugins"
version = version
description = "A Jenkins plugin that installs Terraform as a build wrapper for infrastructure creation"
jenkinsPlugin {
coreVersion = "1.580"
shortName = "terraform"
displayName = "Terraform Plugin"
url = "https://github.com/jenkinsci/terraform-plugin"
gitHubUrl = "https://github.com/jenkinsci/terraform-plugin.git"
developers {
developer {
id "dpires"
name "David Pires"
email "[email protected]"
}
}
}
clean {
delete ".gradle/"
delete "work/"
}
tasks.withType(JavaCompile) {
options.warnings = false
}
release {
tagTemplate = "$name-$version"
}