-
Notifications
You must be signed in to change notification settings - Fork 311
/
build.gradle
46 lines (38 loc) · 939 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
import org.gradle.api.tasks.testing.Test
buildscript {
repositories {
mavenCentral()
maven {
url = 'https://plugins.gradle.org/m2'
}
}
dependencies {
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.2'
}
}
plugins {
id 'nebula.netflixoss' version '11.5.0'
}
// Establish version and status
ext.githubProjectName = rootProject.name
subprojects {
apply plugin: 'nebula.netflixoss'
apply plugin: 'java-library'
group = "com.netflix.${githubProjectName}"
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
ext {
grpcVersion = "1.9.0"
jUnitVersion = "5.+"
jUnitLegacyVersion = "4.+"
mockitoVersion = "4.+"
slf4jVersion = "1.7.+"
spectatorVersion = "1.+"
springVersion = "5.+"
}
tasks.withType(Test) {
useJUnitPlatform()
}
}