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

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

Author: boisvert
Date: Tue Jul  3 11:04:27 2007
New Revision: 552933

URL: http://svn.apache.org/viewvc?view=rev&rev=552933
Log:
Remove mentions of quartz

Modified:
    incubator/ode/trunk/Rakefile

Modified: incubator/ode/trunk/Rakefile
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/Rakefile?view=diff&rev=552933&r1=552932&r2=552933
==============================================================================
--- incubator/ode/trunk/Rakefile (original)
+++ incubator/ode/trunk/Rakefile Tue Jul  3 11:04:27 2007
@@ -249,7 +249,7 @@
     package :jar
   end
 
-  desc "ODE Quartz Interface"
+  desc "ODE Simple Scheduler"
   define "scheduler-simple" do
     compile.with projects("bpel-api", "utils"), COMMONS.collections, COMMONS.logging, JAVAX.transaction
     package :jar
@@ -351,13 +351,13 @@
   define "dao-jpa-ojpa-derby" do
     %w{ derby mysql }.each do |db|
       db_xml = _("src/main/descriptors/persistence.#{db}.xml")
-      quartz_sql = _("src/main/scripts/simplesched-#{db}.sql")
+      scheduler_sql = _("src/main/scripts/simplesched-#{db}.sql")
       partial_sql = file("target/partial.#{db}.sql"=>db_xml) do |task|
         mkpath _("target"), :verbose=>false
         Buildr::OpenJPA.mapping_tool :properties=>db_xml, :action=>"build", :sql=>task.name,
           :classpath=>projects("bpel-store", "dao-jpa", "bpel-api", "bpel-dao", "utils" )
       end
-      sql = concat(_("target/#{db}.sql")=>[partial_sql, quartz_sql])
+      sql = concat(_("target/#{db}.sql")=>[partial_sql, scheduler_sql])
       build sql
     end
     derby_db = Derby.create(_("target/derby/jpadb")=>_("target/derby.sql"))