You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by mr...@apache.org on 2008/05/20 17:02:54 UTC

svn commit: r658269 - /ode/trunk/Rakefile

Author: mriou
Date: Tue May 20 08:02:54 2008
New Revision: 658269

URL: http://svn.apache.org/viewvc?rev=658269&view=rev
Log:
Forgot to commit the dao-jpa-ojpa-derby change in the Rakefile.

Modified:
    ode/trunk/Rakefile

Modified: ode/trunk/Rakefile
URL: http://svn.apache.org/viewvc/ode/trunk/Rakefile?rev=658269&r1=658268&r2=658269&view=diff
==============================================================================
--- ode/trunk/Rakefile (original)
+++ ode/trunk/Rakefile Tue May 20 08:02:54 2008
@@ -157,7 +157,7 @@
       WOODSTOX, WSDL4J, WS_COMMONS.axiom, WS_COMMONS.neethi, WS_COMMONS.xml_schema, XALAN, XERCES, XMLBEANS
 
     package(:war).with(:libs=>libs).path("WEB-INF").tap do |web_inf|
-      web_inf.merge project("dao-jpa-ojpa-derby").package(:zip)
+      web_inf.merge project("dao-jpa-db").package(:zip)
       web_inf.merge project("dao-hibernate-db").package(:zip)
       web_inf.include project("axis2").path_to("src/main/wsdl/*")
       web_inf.include project("bpel-schemas").path_to("src/main/xsd/pmapi.xsd")
@@ -188,7 +188,7 @@
       mkdir_p _("target/test-classes/webapp/WEB-INF/processes")
       rm_rf Dir[_("target/test-classes/webapp") + "/**/.svn"]
     end
-    test.setup unzip(_("target/test-classes/webapp/WEB-INF")=>project("dao-jpa-ojpa-derby").package(:zip))
+    test.setup unzip(_("target/test-classes/webapp/WEB-INF")=>project("dao-jpa-db").package(:zip))
   end
 
   desc "ODE APIs"
@@ -371,7 +371,7 @@
   end
 
   desc "ODE OpenJPA Derby Database"
-  define "dao-jpa-ojpa-derby" do
+  define "dao-jpa-db" do
     %w{ derby mysql oracle }.each do |db|
       db_xml = _("src/main/descriptors/persistence.#{db}.xml")
       scheduler_sql = _("src/main/scripts/simplesched-#{db}.sql")
@@ -430,7 +430,7 @@
       jbi.component :class_name=>"org.apache.ode.jbi.OdeComponent", :delegation=>:self, :libs=>libs
       jbi.bootstrap :class_name=>"org.apache.ode.jbi.OdeBootstrap", :libs=>libs
       jbi.merge project("dao-hibernate-db").package(:zip)
-      jbi.merge project("dao-jpa-ojpa-derby").package(:zip)
+      jbi.merge project("dao-jpa-db").package(:zip)
       jbi.include path_to("src/main/jbi/ode-jbi.properties")
     end
 
@@ -441,7 +441,7 @@
       JAVAX.transaction, JAXEN, JBI, OPENJPA, SAXON, SERVICEMIX, SPRING, TRANQL,
       XALAN, XBEAN, XMLBEANS, XSTREAM
     test.using :properties=>{ "jbi.install"=>_("target/smixInstallDir"),  "jbi.examples"=>_("../distro/src/examples-jbi/") }
-    test.setup unzip(_("target/smixInstallDir/install/ODE")=>project("dao-jpa-ojpa-derby").package(:zip))
+    test.setup unzip(_("target/smixInstallDir/install/ODE")=>project("dao-jpa-db").package(:zip))
   end
 
   desc "ODE JCA Resource Archive"
@@ -532,7 +532,7 @@
       zip.include(project.path_to("target/LICENSE"))
 
       # Include supported database schemas
-      Dir["#{project("ode:dao-jpa-ojpa-derby").path_to("target")}/*.sql"].each do |f|
+      Dir["#{project("ode:dao-jpa-db").path_to("target")}/*.sql"].each do |f|
         zip.include(f, :path=>"sql") unless f =~ /partial/
       end