Author: seanahn
Date: Sat Apr 18 02:15:55 2009
New Revision: 766203

URL: http://svn.apache.org/viewvc?rev=766203&view=rev
Log:
ODE-506, Misplaced and useless resources

Added:
    ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/
    ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/
    
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.hib-derby/
    
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.hib-derby/ode-axis2.properties
    
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.jpa-derby/
    
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.jpa-derby/ode-axis2.properties
    ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.template/
    
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.template/ode-axis2.properties
Removed:
    
ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/WEB-INF/conf.hib-derby/
    
ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/WEB-INF/conf.jpa-derby/
    ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/WEB-INF/conf.template/
Modified:
    ode/branches/APACHE_ODE_1.X/Rakefile
    ode/branches/APACHE_ODE_1.X/agents/   (props changed)

Modified: ode/branches/APACHE_ODE_1.X/Rakefile
URL: 
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/Rakefile?rev=766203&r1=766202&r2=766203&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/Rakefile (original)
+++ ode/branches/APACHE_ODE_1.X/Rakefile Sat Apr 18 02:15:55 2009
@@ -199,9 +199,13 @@
     webapp_dir = "#{test.compile.target}/webapp"
     test.setup task(:prepare_webapp) do |task|
       cp_r _("src/main/webapp"), _(test.compile.target)
+      cp_r _("src/test/webapp"), _(test.compile.target)
       cp Dir[_("src/main/webapp/WEB-INF/classes/*")], _(test.compile.target)
       cp Dir[project("axis2").path_to("src/main/wsdl/*")], 
"#{webapp_dir}/WEB-INF"
       cp project("bpel-schemas").path_to("src/main/xsd/pmapi.xsd"), 
"#{webapp_dir}/WEB-INF"
+      cp project.path_to("src/main/webapp/WEB-INF/conf/axis2.xml"), 
"#{webapp_dir}/WEB-INF/conf.hib-derby"
+      cp project.path_to("src/main/webapp/WEB-INF/conf/axis2.xml"), 
"#{webapp_dir}/WEB-INF/conf.jpa-derby"
+      cp project.path_to("src/main/webapp/WEB-INF/conf/axis2.xml"), 
"#{webapp_dir}/WEB-INF/conf.template"
       rm_rf Dir[_(webapp_dir) + "/**/.svn"]
       mkdir _("#{webapp_dir}/WEB-INF/processes") unless 
File.exist?("#{webapp_dir}/WEB-INF/processes")
       mkdir _("#{webapp_dir}/WEB-INF/modules") unless 
File.exist?("#{webapp_dir}/WEB-INF/modules")

Propchange: ode/branches/APACHE_ODE_1.X/agents/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sat Apr 18 02:15:55 2009
@@ -0,0 +1 @@
+target

Added: 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.hib-derby/ode-axis2.properties
URL: 
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.hib-derby/ode-axis2.properties?rev=766203&view=auto
==============================================================================
--- 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.hib-derby/ode-axis2.properties
 (added)
+++ 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.hib-derby/ode-axis2.properties
 Sat Apr 18 02:15:55 2009
@@ -0,0 +1,3 @@
+ode-axis2.dao.factory=org.apache.ode.axis2.instancecleanup.HibDaoConnectionFactoryImpl
+ode-axis2.db.emb.name=hibdb
+ode-axis2.db.mode=EMBEDDED
\ No newline at end of file

Added: 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.jpa-derby/ode-axis2.properties
URL: 
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.jpa-derby/ode-axis2.properties?rev=766203&view=auto
==============================================================================
--- 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.jpa-derby/ode-axis2.properties
 (added)
+++ 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.jpa-derby/ode-axis2.properties
 Sat Apr 18 02:15:55 2009
@@ -0,0 +1 @@
+ode-axis2.dao.factory=org.apache.ode.axis2.instancecleanup.JpaDaoConnectionFactoryImpl
\ No newline at end of file

Added: 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.template/ode-axis2.properties
URL: 
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.template/ode-axis2.properties?rev=766203&view=auto
==============================================================================
--- 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.template/ode-axis2.properties
 (added)
+++ 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/webapp/WEB-INF/conf.template/ode-axis2.properties
 Sat Apr 18 02:15:55 2009
@@ -0,0 +1,6 @@
+ode-axis2.dao.facto...@connfactory@
+ode-axis2.db.mode=INTERNAL
+ode-axis2.db.int.jdbcu...@url@
+ode-axis2.db.int.driv...@driver@
+ode-axis2.db.int.userna...@userid@
+ode-axis2.db.int.passwo...@password@
\ No newline at end of file


Reply via email to