-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (35 loc) · 1.13 KB
/
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
buildscript {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath "gradle.plugin.com.github.johnrengelman:shadow:7.1.2"
}
}
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
repositories {
mavenLocal()
mavenCentral()
}
var awsPluginVersion = "2.17.238"
dependencies {
implementation("software.amazon.awssdk:url-connection-client:${awsPluginVersion}") {
exclude(group: "software.amazon.awssdk", module: "netty-nio-client")
exclude(group: "software.amazon.awssdk", module: "apache-client")
}
implementation "software.amazon.awssdk:s3:${awsPluginVersion}"
implementation "software.amazon.awssdk:sts:${awsPluginVersion}"
implementation group: 'org.slf4j', name: 'slf4j-simple', version: '2.0.3'
implementation("software.amazon.awssdk:apache-client:${awsPluginVersion}") {
exclude(group: "commons-logging", module: "commons-logging")
}
implementation "software.amazon.awssdk:netty-nio-client:${awsPluginVersion}"
}
jar {
manifest {
attributes 'Main-Class': 'ca.Main'
}
}