forked from Netflix/karyon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (29 loc) · 1.08 KB
/
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
ext.githubProjectName = "karyon"
buildscript {
repositories {
//mavenLocal() //Maven local repo can cause issues when the local repo is corrupted. This becomes really difficult to get over on our CI server: cloudbees.
mavenCentral() // maven { url 'http://jcenter.bintray.com' }
}
apply from: file('gradle/buildscript.gradle'), to: buildscript
}
allprojects {
repositories {
//mavenLocal()//Maven local repo can cause issues when the local repo is corrupted. This becomes really difficult to get over on our CI server: cloudbees.
mavenCentral() // maven { url: 'http://jcenter.bintray.com' }
}
}
apply from: file('gradle/convention.gradle')
apply from: file('gradle/maven.gradle')
//apply from: file('gradle/check.gradle')
apply from: file('gradle/license.gradle')
apply from: file('gradle/release.gradle')
subprojects {
group = "com.netflix.karyon"
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
dependencies {
compile 'org.slf4j:slf4j-api:1.7.6'
testCompile 'junit:junit:4.10'
}
}