forked from OpenFeign/feign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (23 loc) · 740 Bytes
/
build.gradle
File metadata and controls
28 lines (23 loc) · 740 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
buildscript {
repositories { jcenter() }
dependencies {
classpath 'be.insaneprogramming.gradle:animalsniffer-gradle-plugin:1.4.0'
}
}
plugins {
id 'nebula.netflixoss' version '2.2.9'
}
ext {
githubProjectName = rootProject.name // Change if github project name is not the same as the root project's name
}
subprojects {
apply plugin: 'nebula.netflixoss'
repositories {
jcenter()
}
group = "com.netflix.${githubProjectName}" // TEMPLATE: Set to organization of project
apply plugin: 'be.insaneprogramming.gradle.animalsniffer'
animalsniffer { // Don't use apis that may not be available on Android
signature = "org.codehaus.mojo.signature:java16:+@signature"
}
}