From 8c735eea31fe1a3510f2527ee46d8789cf7b91d0 Mon Sep 17 00:00:00 2001 From: Gabriel Burt Date: Thu, 25 Apr 2013 17:29:26 -0500 Subject: [PATCH 1/2] remove transitive=false from build.gradle makes this repo buildable w/ just a JDK and Gradle installed --- loganalysis/build.gradle | 4 ++-- logparser/build.gradle | 4 ++-- wordcount/build.gradle | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/loganalysis/build.gradle b/loganalysis/build.gradle index 3c68dbd..cd42ab6 100644 --- a/loganalysis/build.gradle +++ b/loganalysis/build.gradle @@ -23,7 +23,7 @@ repositories { dependencies { compile('cascading:cascading-core:2.0.+') { exclude group: 'log4j' } compile('cascading:cascading-xml:2.0.+') - compile('cascading:cascading-hadoop:2.0.+') { transitive = false } + compile('cascading:cascading-hadoop:2.0.+') } jar { @@ -58,4 +58,4 @@ task dist(type: Tar, dependsOn: distCopy) { classifier = new SimpleDateFormat("yyyyMMdd").format(new Date()) from "${buildDir}/dist/" -} \ No newline at end of file +} diff --git a/logparser/build.gradle b/logparser/build.gradle index 3c68dbd..cd42ab6 100644 --- a/logparser/build.gradle +++ b/logparser/build.gradle @@ -23,7 +23,7 @@ repositories { dependencies { compile('cascading:cascading-core:2.0.+') { exclude group: 'log4j' } compile('cascading:cascading-xml:2.0.+') - compile('cascading:cascading-hadoop:2.0.+') { transitive = false } + compile('cascading:cascading-hadoop:2.0.+') } jar { @@ -58,4 +58,4 @@ task dist(type: Tar, dependsOn: distCopy) { classifier = new SimpleDateFormat("yyyyMMdd").format(new Date()) from "${buildDir}/dist/" -} \ No newline at end of file +} diff --git a/wordcount/build.gradle b/wordcount/build.gradle index 3c68dbd..cd42ab6 100644 --- a/wordcount/build.gradle +++ b/wordcount/build.gradle @@ -23,7 +23,7 @@ repositories { dependencies { compile('cascading:cascading-core:2.0.+') { exclude group: 'log4j' } compile('cascading:cascading-xml:2.0.+') - compile('cascading:cascading-hadoop:2.0.+') { transitive = false } + compile('cascading:cascading-hadoop:2.0.+') } jar { @@ -58,4 +58,4 @@ task dist(type: Tar, dependsOn: distCopy) { classifier = new SimpleDateFormat("yyyyMMdd").format(new Date()) from "${buildDir}/dist/" -} \ No newline at end of file +} From c859bab3d1f1e2198cd947e6c5da11aeadc53004 Mon Sep 17 00:00:00 2001 From: Gabriel Burt Date: Thu, 25 Apr 2013 17:30:01 -0500 Subject: [PATCH 2/2] add a README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..76be72d --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +## Build + +1. Install a Java JDK +2. Install Gradle +3. `gradle build`