-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
27 lines (21 loc) · 794 Bytes
/
build.gradle
File metadata and controls
27 lines (21 loc) · 794 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
plugins {
id 'java'
}
group = 'com.jake.blackjack'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.38'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.38'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.17'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.5.18'
testCompileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.38'
testAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.38'
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}