-
Notifications
You must be signed in to change notification settings - Fork 21
/
build.gradle
44 lines (35 loc) · 1009 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
plugins {
id "com.gradle.plugin-publish" version "0.14.0"
}
apply plugin: 'java-gradle-plugin'
repositories {
jcenter()
}
ext {
awsApiVersion = '1.11.1015'
}
dependencies {
implementation "com.amazonaws:aws-java-sdk-elasticbeanstalk:$awsApiVersion"
implementation "com.amazonaws:aws-java-sdk-s3:$awsApiVersion"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
group = 'fi.evident.gradle.beanstalk'
version '0.3.3'
test {
useJUnitPlatform {
includeEngines 'junit-jupiter'
}
}
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'
}
}
}