You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ev...@apache.org on 2007/09/02 11:35:05 UTC

svn commit: r571935 - in /maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF: jboss-web.xml web.xml

Author: evenisse
Date: Sun Sep  2 02:35:04 2007
New Revision: 571935

URL: http://svn.apache.org/viewvc?rev=571935&view=rev
Log:
[CONTINUUM-1167] Add JBoss support
Submitted by: Thierry Lach

Added:
    maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jboss-web.xml   (with props)
Modified:
    maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/web.xml

Added: maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jboss-web.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jboss-web.xml?rev=571935&view=auto
==============================================================================
--- maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jboss-web.xml (added)
+++ maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jboss-web.xml Sun Sep  2 02:35:04 2007
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<jboss-web>
+
+  <resource-ref>
+    <res-ref-name>jdbc/continuum</res-ref-name>
+    <res-type>javax.sql.DataSource</res-type>
+    <jndi-name>java:/continuum</jndi-name>
+  </resource-ref>
+
+  <resource-ref>
+    <res-ref-name>jdbc/users</res-ref-name>
+    <res-type>javax.sql.DataSource</res-type>
+    <jndi-name>java:/users</jndi-name>
+  </resource-ref>
+
+  <resource-ref>
+    <res-ref-name>mail/Session</res-ref-name>
+    <res-type>javax.mail.Session</res-type>
+    <jndi-name>java:/Mail</jndi-name>
+  </resource-ref>
+
+</jboss-web>
+

Propchange: maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jboss-web.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jboss-web.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Modified: maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/web.xml?rev=571935&r1=571934&r2=571935&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/web.xml (original)
+++ maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/web.xml Sun Sep  2 02:35:04 2007
@@ -94,4 +94,23 @@
 
   <!-- [jspc-maven-plugin:post-compiled-jsps-as-servlets] -->
 
+  <resource-ref>
+    <res-ref-name>jdbc/continuum</res-ref-name>
+    <res-type>javax.sql.DataSource</res-type>
+    <res-auth>Container</res-auth>
+  </resource-ref>
+
+  <resource-ref>
+    <res-ref-name>jdbc/users</res-ref-name>
+    <res-type>javax.sql.DataSource</res-type>
+    <res-auth>Container</res-auth>
+  </resource-ref>
+
+  <resource-ref>
+    <res-ref-name>mail/Session</res-ref-name>
+    <res-type>javax.mail.Session</res-type>
+    <res-auth>Container</res-auth>
+  </resource-ref>
+
 </web-app>
+