You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by as...@apache.org on 2007/03/20 03:42:44 UTC

svn commit: r520234 - /incubator/ode/trunk/Rakefile

Author: assaf
Date: Mon Mar 19 19:42:44 2007
New Revision: 520234

URL: http://svn.apache.org/viewvc?view=rev&rev=520234
Log:
Keeping up with Buildr

Modified:
    incubator/ode/trunk/Rakefile

Modified: incubator/ode/trunk/Rakefile
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/Rakefile?view=diff&rev=520234&r1=520233&r2=520234
==============================================================================
--- incubator/ode/trunk/Rakefile (original)
+++ incubator/ode/trunk/Rakefile Mon Mar 19 19:42:44 2007
@@ -193,7 +193,8 @@
 
     compile.with project("ode:bpel-api"), project("ode:bpel-compiler"),
       project("ode:bpel-obj"), project("ode:jacob"), project("ode:utils"),
-    compile.sources << jjtree_out << javacc_out
+      jjtree_out, javacc_out
+    compile.from jjtree_out, javacc_out
       
     package :jar
   end
@@ -213,7 +214,7 @@
     prepare Java.apt_task(generated=>path_to(:java_src_dir, "org/apache/ode/bpel/runtime/channels")).
       using(:classpath=>compile.classpath, :source=>compile.options.source)
     # Include the generated sources.
-    compile.sources << generated
+    compile.from generated
 
 =begin
     tests.resources do |task| 
@@ -399,7 +400,7 @@
     prepare Java.apt_task(generated=>path_to(:java_src_dir)).
       using(:classpath=>compile.classpath, :source=>compile.options.source)
     # Include the generated sources.
-    compile.sources << generated
+    compile.from generated
 
     package :jar
   end