forked from er-komaljain/S3Assignment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (34 loc) · 960 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
group 'com.s3'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin : 'idea'
apply plugin: 'groovy'
apply plugin: 'application'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'io.dropwizard', name: 'dropwizard-core', version: '1.3.2'
compile group: 'io.dropwizard', name: 'dropwizard-forms', version: '1.3.2'
compile group: 'com.amazonaws', name: 'aws-java-sdk-s3', version: '1.11.349'
testCompile group: 'org.spockframework', name: 'spock-core', version: '1.1-groovy-2.4'
testCompile group: 'io.dropwizard', name: 'dropwizard-testing', version: '1.3.2'
testCompile group: 'cglib', name: 'cglib', version: '3.2.6'
}
sourceSets {
main {
java {
srcDirs = ['src/main/java']
}
}
test {
groovy {
srcDirs = ['src/test/groovy']
}
}
}
mainClassName = 'com.s3.Main'
run {
args = ['server', 'config/config.yml']
}