-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (38 loc) · 1.08 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
plugins {
id "groovy"
id "eclipse"
id "idea"
id "nu.studer.plugindev" version "1.0.0"
}
group = 'com.terrafolio'
repositories {
mavenCentral()
}
dependencies {
compile gradleApi()
compile localGroovy()
compile('org.codehaus.groovy.modules.http-builder:http-builder:0.5.2') {
exclude(module: 'groovy')
}
compile 'commons-chain:commons-chain:1.2'
testCompile 'xmlunit:xmlunit:1.3'
}
plugindev {
pluginId = 'com.terrafolio.glu'
pluginImplementationClass 'com.terrafolio.gradle.plugins.glu.GluPlugin'
pluginDescription 'Gradle plugin for programatically configuring the Glu automated deployment platform.'
pluginLicenses 'Apache-2.0'
pluginTags 'gradle', 'plugin', 'glu'
authorId 'ghale'
authorName 'Gary Hale'
authorEmail '[email protected]'
projectUrl 'https://github.com/ghale/gradle-glu-plugin'
projectInceptionYear '2013'
done()
}
// make sure to define the bintray properties after the 'plugindev' extension
bintray {
user = "${bintrayUsername}"
key = "${bintrayApiKey}"
pkg.repo = 'gradle-plugins'
}