forked from CodelyTV/java-ddd-example-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
58 lines (47 loc) · 1.02 KB
/
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
49
50
51
52
53
54
55
56
57
58
buildscript {
repositories {
mavenCentral()
jcenter()
}
}
allprojects {
apply plugin: 'java'
sourceCompatibility = 11
targetCompatibility = 11
repositories {
mavenCentral()
}
sourceSets {
main {
java { srcDirs = [ 'main' ] }
}
test {
java { srcDirs = [ 'test' ] }
}
}
task hello {
doLast { task ->
println "I'm $task.project.name"
}
}
}
subprojects {
group = "tv.codely.${rootProject.name}"
dependencies {
// Prod
implementation 'io.projectreactor:reactor-bus:2.0.8.RELEASE'
// Test
testCompile "org.mockito:mockito-core:2.+"
testCompile 'org.junit.jupiter:junit-jupiter-api:5.+'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.+'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
reports {
html.enabled = true
}
}
}