-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·48 lines (38 loc) · 991 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
43
44
45
46
47
48
task wrapper(type: Wrapper) {
gradleVersion = "4.10.2"
}
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.zyxist:chainsaw:0.3.0"
}
}
subprojects {
apply plugin: "java-library"
apply plugin: "com.zyxist.chainsaw"
sourceCompatibility = "11"
group "io.github.udaychandra.susel"
version "0.1.3-SNAPSHOT"
repositories {
mavenCentral()
}
sourceSets {
main {
output.resourcesDir = "build/classes/java/main"
}
test {
output.resourcesDir = "build/classes/java/test"
}
}
dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:$jUnitJupiterVersion"
testRuntime "org.junit.jupiter:junit-jupiter-engine:$jUnitJupiterVersion"
}
test {
useJUnitPlatform()
}
}