-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (33 loc) · 1021 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
plugins {
id 'java'
id 'groovy'
}
group = 'net.woroniecki'
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
// utils
implementation 'commons-io:commons-io:2.18.0'
implementation 'com.google.guava:guava:33.3.1-jre'
implementation 'org.javatuples:javatuples:1.2'
implementation 'one.util:streamex:0.8.3'
// visuals
implementation 'com.googlecode.lanterna:lanterna:3.1.2'
// lombok
compileOnly 'org.projectlombok:lombok:1.18.34'
annotationProcessor 'org.projectlombok:lombok:1.18.34'
testCompileOnly 'org.projectlombok:lombok:1.18.34'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.34'
// logs
implementation 'org.slf4j:slf4j-api:1.7.+'
implementation 'ch.qos.logback:logback-classic:1.+'
// tests
implementation platform('org.apache.groovy:groovy-bom:4.0.22')
implementation 'org.apache.groovy:groovy'
testImplementation 'org.spockframework:spock-core:2.4-M4-groovy-4.0'
}
test {
useJUnitPlatform()
}