-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild.gradle
More file actions
51 lines (43 loc) · 1.28 KB
/
build.gradle
File metadata and controls
51 lines (43 loc) · 1.28 KB
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
48
49
50
51
plugins {
id 'java'
}
repositories {
mavenCentral()
}
// for use with the Gradle Java Plugin
sourceSets {
main {
java {
srcDirs = ['src/']
}
resources {
srcDirs = ['src/resources/']
}
}
test {
java {
srcDirs = ['tst/']
}
resources {
srcDirs = ['tst/resources/']
}
}
}
test {
useJUnitPlatform()
}
dependencies {
implementation 'org.junit.jupiter:junit-jupiter:5.7.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.8'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.10.0'
// Added for AWS Lambda Functions
implementation platform('com.amazonaws:aws-java-sdk-bom:1.11.1000')
implementation 'com.amazonaws:aws-java-sdk-s3'
implementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.154'
implementation 'com.amazonaws:aws-lambda-java-core:1.2.1'
implementation 'com.amazonaws:aws-lambda-java-events:2.2.9'
runtimeOnly 'com.amazonaws:aws-lambda-java-log4j2:1.2.0'
implementation files("$rootDir/LibrariesAndUtilities/ATAResources.jar")
}