You are viewing a plain text version of this content. The canonical link for it is here.
Posted to s4-commits@incubator.apache.org by le...@apache.org on 2012/02/23 00:22:31 UTC

[5/7] git commit: Fixed bug in build script.

Fixed bug in build script.


Project: http://git-wip-us.apache.org/repos/asf/incubator-s4/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-s4/commit/7c2688f1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-s4/tree/7c2688f1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-s4/diff/7c2688f1

Branch: refs/heads/piper
Commit: 7c2688f1b5e1da48936dac14c73d6d4e3c28b1b1
Parents: 406925d
Author: Leo Neumeyer <le...@apache.org>
Authored: Mon Feb 6 12:21:19 2012 -0800
Committer: Leo Neumeyer <le...@apache.org>
Committed: Mon Feb 6 12:21:19 2012 -0800

----------------------------------------------------------------------
 build.gradle                       |    1 -
 subprojects/s4-edsl/s4-edsl.gradle |    3 ++-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-s4/blob/7c2688f1/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index adeda07..106dd2b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -98,7 +98,6 @@ subprojects {
     
     dependencies {
         
-        compile('javax.jms:jms:1.1')
         /* Google. */
         compile( libraries.guava )
         compile( libraries.guice )

http://git-wip-us.apache.org/repos/asf/incubator-s4/blob/7c2688f1/subprojects/s4-edsl/s4-edsl.gradle
----------------------------------------------------------------------
diff --git a/subprojects/s4-edsl/s4-edsl.gradle b/subprojects/s4-edsl/s4-edsl.gradle
index f80e103..4568799 100644
--- a/subprojects/s4-edsl/s4-edsl.gradle
+++ b/subprojects/s4-edsl/s4-edsl.gradle
@@ -12,7 +12,7 @@ dependencies {
 
 sourceSets {
     generated {
-        java { srcDir $generatedSourceDir }
+        java { srcDir generatedSourceDir }
     }
 }
 
@@ -38,3 +38,4 @@ task generateSources << {
 }
 
 compileJava.source generateSources.outputs.files, sourceSets.main.java
+