-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
39 lines (30 loc) · 864 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
plugins {
id 'groovy'
id 'application'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
application {
mainClass = 'org.example.grooven.App'
}
dependencies {
// Use the latest Groovy version for building this library
implementation 'org.codehaus.groovy:groovy-all:3.0.9'
// This dependency is used by the application.
implementation 'com.google.guava:guava:30.1.1-jre'
//This dependency is used to generate QrCodes
implementation 'com.google.zxing:core:3.3.0'
implementation 'com.google.zxing:javase:3.3.0'
// Use the awesome Spock testing and specification framework even with Java
testImplementation 'org.spockframework:spock-core:2.0-groovy-3.0'
testImplementation 'junit:junit:4.13.2'
}
test {
useJUnitPlatform()
}
javadoc {
source = sourceSets.main.allJava
}