-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
72 lines (59 loc) · 1.51 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
group 'cs4224'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
wrapper {
gradleVersion = '7.2'
}
apply plugin: 'java'
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
dependencies {
annotationProcessor(
'org.projectlombok:lombok:1.18.12',
'com.datastax.oss:java-driver-mapper-processor:4.13.0'
)
implementation (
'org.apache.logging.log4j:log4j-api:2.14.1',
'org.apache.logging.log4j:log4j-core:2.14.1',
'org.apache.logging.log4j:log4j-slf4j-impl:2.14.1',
'com.datastax.oss:java-driver-core:4.13.0',
'com.datastax.oss:java-driver-query-builder:4.13.0',
'com.datastax.oss:java-driver-mapper-runtime:4.13.0',
'commons-cli:commons-cli:1.4',
'com.google.inject:guice:5.0.1',
'com.opencsv:opencsv:4.1'
)
compileOnly(
'org.projectlombok:lombok:1.18.12'
)
testImplementation(
'org.junit.jupiter:junit-jupiter-api:5.8.0'
)
testRuntimeOnly(
'org.junit.jupiter:junit-jupiter-engine:5.8.0'
)
}
shadowJar {
mergeServiceFiles()
zip64 true
manifest {
attributes(
'Main-Class': 'cs4224.Main',
'version': project.version
)
}
}
test {
useJUnitPlatform()
beforeTest { descriptor ->
logger.lifecycle('Running test: ' + descriptor)
}
}