-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
39 lines (31 loc) · 985 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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
repositories {
mavenCentral()
}
defaultTasks 'clean', 'test', 'shadowJar'
jar {
manifest {
attributes 'Main-Class': 'com.tomczarniecki.s3.Main'
}
}
configurations.all {
exclude(group: 'commons-logging')
}
dependencies {
implementation 'org.slf4j:slf4j-simple:1.6.6'
implementation 'org.slf4j:jcl-over-slf4j:1.6.6'
implementation 'commons-io:commons-io:2.4'
implementation 'commons-cli:commons-cli:1.2'
implementation 'commons-lang:commons-lang:2.6'
implementation 'joda-time:joda-time:2.1'
implementation 'com.formdev:flatlaf:1.1.1'
implementation 'com.jgoodies:jgoodies-forms:1.9.0'
implementation 'com.amazonaws:aws-java-sdk-s3:1.11.1030'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:3.10.0'
testImplementation 'org.hamcrest:hamcrest-all:1.3'
testImplementation 'com.googlecode.windowlicker:windowlicker-swing:r268'
}