-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (29 loc) · 877 Bytes
/
Copy pathbuild.gradle
File metadata and controls
37 lines (29 loc) · 877 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
36
37
plugins {
id("java")
}
dependencies {
implementation project(":Utility")
}
subprojects {
apply plugin: "java-library"
}
allprojects {
group = "dev.coffeelessprogrammer.dsalgo"
version = '0.0.1-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
compileOnly("org.projectlombok:lombok:${lombokVersion}")
annotationProcessor("org.projectlombok:lombok:${lombokVersion}")
// ----- Testing -----
// testCompileOnly("org.projectlombok:lombok:${lombokVersion}")
// testAnnotationProcessor("org.projectlombok:lombok:${lombokVersion}")
testImplementation platform("org.junit:junit-bom:${junitVersion}")
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
test {
useJUnitPlatform()
}
}