You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by tc...@apache.org on 2009/04/08 06:11:10 UTC

svn commit: r762810 - in /webservices/juddi/branches/v3_trunk/juddi-tomcat: build.xml context.xml

Author: tcunning
Date: Tue Apr  7 15:07:05 2009
New Revision: 762810

URL: http://svn.apache.org/viewvc?rev=762810&view=rev
Log:
JUDDI-166
Add data source.

Added:
    webservices/juddi/branches/v3_trunk/juddi-tomcat/context.xml
Modified:
    webservices/juddi/branches/v3_trunk/juddi-tomcat/build.xml

Modified: webservices/juddi/branches/v3_trunk/juddi-tomcat/build.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/juddi-tomcat/build.xml?rev=762810&r1=762809&r2=762810&view=diff
==============================================================================
--- webservices/juddi/branches/v3_trunk/juddi-tomcat/build.xml (original)
+++ webservices/juddi/branches/v3_trunk/juddi-tomcat/build.xml Tue Apr  7 15:07:05 2009
@@ -17,7 +17,8 @@
 	</target>
 	
 	<target name="copy-resources" depends="unzip-tomcat">
-		<copy file="${dependency.mysql.jar}" todir="${common.lib.dir}"/>
+		<copy file="${basedir}/context.xml" todir="${webapps.dir}/juddi/META-INF"/>	
+ 		<copy file="${dependency.mysql.jar}" todir="${common.lib.dir}"/>
 		<copy file="${dependency.log4j.jar}" todir="${common.lib.dir}"/>
 		<copy file="${dependency.derby.jar}" todir="${common.lib.dir}"/>
 		<copy file="${dependency.commons-discovery.jar}" todir="${common.lib.dir}"/>

Added: webservices/juddi/branches/v3_trunk/juddi-tomcat/context.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/juddi-tomcat/context.xml?rev=762810&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/juddi-tomcat/context.xml (added)
+++ webservices/juddi/branches/v3_trunk/juddi-tomcat/context.xml Tue Apr  7 15:07:05 2009
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<Context>
+    <WatchedResource>WEB-INF/web.xml</WatchedResource>
+    <Resource name="jdbc/JuddiDS" auth="Container"
+            type="javax.sql.DataSource" username="" password=""
+            driverClassName="org.apache.derby.jdbc.EmbeddedDriver" 
+            url="jdbc:derby:juddi-derby-test-db;create=true"
+            maxActive="8" 
+            />
+</Context>
+



---------------------------------------------------------------------
To unsubscribe, e-mail: juddi-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: juddi-cvs-help@ws.apache.org