-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (25 loc) · 756 Bytes
/
build.gradle
File metadata and controls
35 lines (25 loc) · 756 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
plugins {
id 'groovy'
id 'java'
}
group 'viccomx.projects'
version '0.1.1'
repositories {
mavenCentral()
}
dependencies {
compileOnly "org.projectlombok:lombok:1.18.22"
annotationProcessor "org.projectlombok:lombok:1.18.22"
implementation 'org.codehaus.groovy:groovy-all:3.0.10',
'net.sourceforge.barbecue:barbecue:1.5-beta1',
'com.google.zxing:javase:3.4.1',
'io.vavr:vavr:0.10.4',
'org.slf4j:slf4j-api:1.7.36'
testCompileOnly "org.projectlombok:lombok:1.18.22"
testAnnotationProcessor "org.projectlombok:1.18.22"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
test {
useJUnitPlatform()
}