forked from Netflix/dyno-queues
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (30 loc) · 896 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.netflix.nebula:gradle-aggregate-javadocs-plugin:3.0.1'
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:4.0.1'
}
}
plugins {
id 'nebula.netflixoss' version '6.0.3'
}
// Establish version and status
ext.githubProjectName = rootProject.name // Change if github project name is not the same as the root project's name
apply plugin: 'project-report'
subprojects {
apply plugin: 'nebula.netflixoss'
apply plugin: 'java'
apply plugin: 'project-report'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
// oss-candidate for -rc.* verions:
maven {
url "https://dl.bintray.com/netflixoss/oss-candidate"
}
}
group = "com.netflix.${githubProjectName}"
}