mirror of https://github.com/apache/kafka.git
KAFKA-1490 remove gradlew initial setup output from source distribution patch by Ivan Lyutov reviewed by Joe Stein
This commit is contained in:
parent
6d7057566f
commit
d2d1ef357b
|
@ -2,6 +2,13 @@ Apache Kafka
|
|||
=================
|
||||
See our [web site](http://kafka.apache.org) for details on the project.
|
||||
|
||||
You need to have [gradle](http://www.gradle.org/installation) installed.
|
||||
|
||||
### First bootstrap and download the wrapper ###
|
||||
gradle
|
||||
|
||||
Now everything else will work
|
||||
|
||||
### Building a jar and running it ###
|
||||
./gradlew jar
|
||||
|
||||
|
|
|
@ -29,10 +29,15 @@ allprojects {
|
|||
}
|
||||
}
|
||||
|
||||
ext {
|
||||
gradleVersion = "2.0"
|
||||
}
|
||||
|
||||
def isVerificationRequired(project) {
|
||||
project.gradle.startParameter.taskNames.contains("uploadArchives")
|
||||
}
|
||||
|
||||
apply from: file('wrapper.gradle')
|
||||
apply from: file('gradle/license.gradle')
|
||||
apply from: file('scala.gradle')
|
||||
|
||||
|
|
Binary file not shown.
|
@ -1,6 +0,0 @@
|
|||
#Thu Jul 11 22:18:11 PDT 2013
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=http\://services.gradle.org/distributions/gradle-2.0-bin.zip
|
Loading…
Reference in New Issue