-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (29 loc) · 752 Bytes
/
build.gradle
File metadata and controls
35 lines (29 loc) · 752 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
plugins {
id "org.jetbrains.kotlin.jvm" apply false
id 'idea'
}
subprojects {
apply plugin: 'java'
group 'com.athaydes.rawhttp'
repositories {
mavenLocal()
mavenCentral()
}
test {
useJUnitPlatform()
}
dependencies {
testImplementation(platform('org.junit:junit-bom:5.7.2'))
testImplementation('org.junit.jupiter:junit-jupiter')
}
}
subprojects {
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions.jvmTarget = "1.8"
}
}
//task testReport(type: TestReport) {
// destinationDir = file("$buildDir/test-results")
// // Include the results from the `test` task in all subprojects
// reportOn subprojects*.test
//}