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/19 22:18:14 UTC

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

Author: assaf
Date: Mon Mar 19 14:18:13 2007
New Revision: 520105

URL: http://svn.apache.org/viewvc?view=rev&rev=520105
Log:
Fix to default manifest

Modified:
    incubator/ode/trunk/Rakefile

Modified: incubator/ode/trunk/Rakefile
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/Rakefile?view=diff&rev=520105&r1=520104&r2=520105
==============================================================================
--- incubator/ode/trunk/Rakefile (original)
+++ incubator/ode/trunk/Rakefile Mon Mar 19 14:18:13 2007
@@ -72,11 +72,10 @@
 
 define "ode", :group=>"org.apache.ode", :version=>VERSION_NUMBER do
 
-  manifest({"Implementation-Version"=>VERSION_NUMBER,
-            "Implementation-Vendor"=>"Apache Software Foundation"})
 
   compile.options.source = "1.5"
   compile.options.target = "1.5"
+  manifest["Implementation-Vendor"] = "Apache Software Foundation"
 
   desc "ODE Axis Integration Layer"
   define "axis2" do
@@ -124,8 +123,8 @@
     resources filter(path_to(:base_dir, "../axis2/src/main/wsdl/*")).into(path_to(:target_dir, "resources"))
     resources filter(path_to(:base_dir, "../bpel-schemas/src/main/xsd/pmapi.xsd")).into(path_to(:target_dir, "resources"))
     
-    package(:war).with(:libs=>libs, :manifest=>false).
-      path("WEB-INF").merge(project("ode:dao-jpa-ojpa-derby").package(:zip))
+    package(:war).with(:libs=>libs).path("WEB-INF").
+      merge(project("ode:dao-jpa-ojpa-derby").package(:zip))
 
     webserve.using(:war_path=>package(:war).name, :context_path=>"/ode", 
                    :process_alias=>{"HelloWorld2"=>"distro-axis2/src/examples/HelloWorld2",