Skip to content

Commit

Permalink
remove yarn artifact from main build
Browse files Browse the repository at this point in the history
relates to elastic#154
  • Loading branch information
costin committed Feb 26, 2014
1 parent eb93c8f commit b31e00f
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions build.gradle
Expand Up @@ -384,12 +384,6 @@ jar {
manifest.attributes['Repository-Revision'] = rev
}

configure(jar) {
if (hadoopDistro == "hadoopYarn") {
classifier = 'yarn'
}
}

// this is in just as a convenience - the official docs are generated through an external process
asciidoctor {
//logDocuments = true
Expand Down Expand Up @@ -472,19 +466,6 @@ task distZip(type: Zip, dependsOn: [jar, sourcesJar, javadocJar]) {
}
}

artifacts {

// include YARN is available
ext.yarn = file("$libsDir/$name-$version-yarn.jar")
if (yarn.exists()) {
archives yarn
}

//files(subprojects.configurations.archives.artifacts.file).each { File file ->
// archives file
//}
}

task wrapper(type: Wrapper) {
description = 'Generates gradlew[.bat] scripts'
gradleVersion = '1.8'
Expand Down

0 comments on commit b31e00f

Please sign in to comment.