-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/pr/469' into manual-merge-nebula
Conflicts: gradle.properties
- Loading branch information
Showing
27 changed files
with
101 additions
and
614 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,45 @@ | ||
ext.githubProjectName = rootProject.name | ||
|
||
buildscript { | ||
repositories { | ||
mavenLocal() | ||
mavenCentral() // maven { url 'http://jcenter.bintray.com' } | ||
jcenter() | ||
} | ||
dependencies { | ||
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:2.0.1' | ||
} | ||
apply from: file('gradle/buildscript.gradle'), to: buildscript | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
mavenCentral() // maven { url: 'http://jcenter.bintray.com' } | ||
} | ||
plugins { | ||
id 'nebula.netflixoss' version '2.2.3' | ||
} | ||
|
||
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') | ||
ext { | ||
githubProjectName = rootProject.name | ||
} | ||
|
||
subprojects { | ||
apply plugin: 'nebula.netflixoss' | ||
apply plugin: 'java' | ||
apply plugin: 'nebula.provided-base' | ||
|
||
repositories { | ||
jcenter() | ||
} | ||
|
||
group = "com.netflix.${githubProjectName}" | ||
|
||
sourceSets.test.java.srcDir 'src/main/java' | ||
eclipse { | ||
classpath { | ||
// include 'provided' dependencies on the classpath | ||
plusConfigurations += [configurations.provided] | ||
downloadSources = true | ||
downloadJavadoc = true | ||
} | ||
} | ||
|
||
tasks.withType(Javadoc).each { | ||
it.classpath = sourceSets.main.compileClasspath | ||
|
||
idea { | ||
module { | ||
// include 'provided' dependencies on the classpath | ||
scopes.COMPILE.plus += [configurations.provided] | ||
} | ||
} | ||
} | ||
|
||
// Prevent contrib project from being published | ||
project('hystrix-contrib').task('uploadMavenCentral', overwrite:true) { } |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +0,0 @@ | ||
version=1.4.0-RC7-SNAPSHOT | ||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Wed Nov 19 11:13:37 PST 2014 | ||
#Thu Jan 08 16:14:23 PST 2015 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-1.12-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-bin.zip |
Oops, something went wrong.