-
Notifications
You must be signed in to change notification settings - Fork 56
/
build.gradle
43 lines (33 loc) · 1003 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
buildscript {
repositories {
mavenCentral()
maven {
url = 'https://plugins.gradle.org/m2'
}
}
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 'com.netflix.nebula.netflixoss' version '11.5.0'
}
// 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-library'
apply plugin: 'project-report'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
// oss-candidate for -rc.* verions:
maven {
url "https://dl.bintray.com/netflixoss/oss-candidate"
}
}
group = "com.netflix.${githubProjectName}"
}