-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (38 loc) · 992 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
45
46
47
apply plugin: 'application'
apply plugin: 'java-library'
mainClassName = 'org.iot.dsa.dynamodb.Main'
sourceCompatibility = 1.8
targetCompatibility = 1.8
version = '0.2.2'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:1.0.9.RELEASE"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'com.amazonaws:aws-java-sdk-bom:1.11.1034'
}
}
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://jitpack.io' }
}
wrapper {
gradleVersion = '6.8'
}
dependencies {
compile 'com.amazonaws:aws-java-sdk-dynamodb:1.11.1034'
implementation 'commons-io:commons-io:2.11.0'
implementation 'com.github.iot-dsa:dslink-java-etsdb:0.19.9'
}
run {
args System.getProperty("exec.args", "").split()
workingDir project.buildDir
}
applicationDistribution.from(new File(project.projectDir, "/dslink.json"))