-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (32 loc) · 932 Bytes
/
build.gradle
File metadata and controls
40 lines (32 loc) · 932 Bytes
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
plugins {
id 'java'
id 'application'
}
group = 'com.example.dsql'
version = '1.0.0'
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.postgresql:postgresql:42.7.10'
implementation 'com.zaxxer:HikariCP:7.0.2'
implementation 'software.amazon.dsql:aurora-dsql-jdbc-connector:1.4.0'
implementation 'software.amazon.awssdk:dsql:2.42.14'
testImplementation platform('org.junit:junit-bom:5.11.4')
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
application {
mainClass = 'com.example.dsql.batch_operations.Main'
}
tasks.named('test') {
useJUnitPlatform()
testLogging {
events 'passed', 'skipped', 'failed', 'standardOut', 'standardError'
exceptionFormat = 'FULL'
}
}