forked from electric-cloud/EC-Chef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (39 loc) · 893 Bytes
/
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
// -*- Groovy -*-
// build.gradle
//
// Gradle build script for EC-Chef plugin.
//
// Copyright (c) 2015 Electric Cloud, Inc.
// All rights reserved
buildscript {
repositories {
maven {
url 'http://dl.bintray.com/ecpluginsdev/maven'
}
jcenter()
}
dependencies {
classpath group: 'com.electriccloud.plugins', name: 'flow-gradle-plugin', version: '+'
classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.11.0'
}
}
repositories {
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
}
group = "com.electriccloud"
description = "Plugins : EC-Chef"
version = "1.1.4"
apply plugin: 'flow-gradle-plugin'
apply plugin: 'license'
license {
header = file ('shortHeader.txt')
exclude "**/project.xml"
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}
gwt {
modules 'ecplugins.EC_Chef.ConfigurationManagement'
}