forked from EvidentSolutions/gradle-beanstalk-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (29 loc) · 820 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
plugins {
id "com.gradle.plugin-publish" version "0.9.1"
}
apply plugin: 'java-gradle-plugin'
repositories {
jcenter()
}
ext {
awsApiVersion = '1.11.32'
}
dependencies {
compile "com.amazonaws:aws-java-sdk-elasticbeanstalk:$awsApiVersion"
compile "com.amazonaws:aws-java-sdk-s3:$awsApiVersion"
testCompile "junit:junit:4.12"
}
group = 'fi.evident.gradle.beanstalk'
version '0.1.0'
pluginBundle {
website = 'https://github.com/EvidentSolutions/gradle-beanstalk-plugin'
vcsUrl = 'https://github.com/EvidentSolutions/gradle-beanstalk-plugin'
description = 'Gradle plugin for AWS Elastic Beanstalk'
tags = ['aws', 'beanstalk']
plugins {
beanstalkPlugin {
id = 'fi.evident.beanstalk'
displayName = 'Gradle Beanstalk plugin'
}
}
}