forked from electric-cloud/EC-Azure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
61 lines (50 loc) · 1.39 KB
/
Copy pathbuild.gradle
File metadata and controls
61 lines (50 loc) · 1.39 KB
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
// -*- Groovy -*-
// build.gradle
//
// Gradle build script for EC-Azure 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-Azure"
version = "1.1.7"
apply plugin: 'flow-gradle-plugin'
apply plugin: 'license'
apply plugin: 'java'
license {
header = file ('shortHeader.txt')
exclude "**/project.xml"
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}
gwt {
modules 'ecplugins.azure.ConfigurationManagement','ecplugins.azure.CreateDeploymentParameterPanel','ecplugins.azure.CreateHostedServiceParameterPanel','ecplugins.azure.CreateStorageAccountParameterPanel','ecplugins.azure.PutBlobParameterPanel'
}
dependencies {
testCompile "junit:junit:4.12"
testCompile "org.hamcrest:hamcrest-library:1.3"
testCompile "com.googlecode.json-simple:json-simple:1.1"
testCompile "org.apache.httpcomponents:httpclient:4.5.2"
}
test
{
systemProperties['PLUGIN_VERSION'] = version
}