-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (28 loc) · 881 Bytes
/
build.gradle
File metadata and controls
35 lines (28 loc) · 881 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
group 'org.playground.katas'
version '1.0-SNAPSHOT'
allprojects {
repositories {
mavenCentral()
}
}
subprojects {
apply plugin: "java"
test {
useTestNG()
}
ext {
assertJVersion = "3.13.2"
guavaVersion = "28.1-jre"
lombockVersion = "1.18.10"
testNgVersion = "7.0.0"
vavrVersion = "1.0.0-alpha-3"
}
dependencies {
implementation(group: 'io.vavr', name: 'vavr', version: vavrVersion)
implementation(group: 'com.google.guava', name: 'guava', version: guavaVersion)
testImplementation(group: 'org.assertj', name: 'assertj-core', version: assertJVersion)
testImplementation(group: 'org.testng', name: 'testng', version: testNgVersion)
compileOnly(group: 'org.projectlombok', name: 'lombok', version: lombockVersion)
annotationProcessor(group: 'org.projectlombok', name: 'lombok', version: lombockVersion)
}
}