[jboss-cvs] JBossAS SVN: r60676 - branches/Branch_4_2/server/src/resources/dtd.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Feb 19 16:16:10 EST 2007


Author: scott.stark at jboss.org
Date: 2007-02-19 16:16:10 -0500 (Mon, 19 Feb 2007)
New Revision: 60676

Modified:
   branches/Branch_4_2/server/src/resources/dtd/jboss-app_4_2.dtd
Log:
JBAS-4037, add a library-directory element

Modified: branches/Branch_4_2/server/src/resources/dtd/jboss-app_4_2.dtd
===================================================================
--- branches/Branch_4_2/server/src/resources/dtd/jboss-app_4_2.dtd	2007-02-19 21:08:44 UTC (rev 60675)
+++ branches/Branch_4_2/server/src/resources/dtd/jboss-app_4_2.dtd	2007-02-19 21:16:10 UTC (rev 60676)
@@ -1,6 +1,6 @@
 <?xml version='1.0' encoding='UTF-8' ?>
 
-<!-- The JBoss 4.x specific elements for ears.
+<!-- The JBoss 4.2.x specific elements for ears.
 $Id: jboss-app_4_0.dtd 56293 2006-08-26 12:42:15Z vicky.kak at jboss.com $
 
 DOCTYPE jboss-app
@@ -11,7 +11,7 @@
 <!-- The jboss-app element is the root element.
 -->
 <!ELEMENT jboss-app (module-order?,security-domain?, unauthenticated-principal?,
- loader-repository?, jmx-name?, module*, security-role*)>
+ loader-repository?, jmx-name?, library-directory?, module*, security-role*)>
 
 <!--
  The value of the module-order could be implicit or strict
@@ -89,6 +89,20 @@
 -->
 <!ELEMENT jmx-name (#PCDATA)>
 
+<!-- An .ear file may contain a directory that contains libraries packaged in JAR files.
+The library-directory element of the .ear file’s deployment descriptor contains the name
+of this directory. If a library-directory element isn’t specified,
+the directory named lib is used.
+
+An empty library-directory element may be used to specify that there is no library directory.
+
+All files in this directory (but not subdirectories) with a .jar extension must be made available
+to all components packaged in the EAR file, including application clients.
+
+   Used in: jboss-app
+-->
+<!ELEMENT library-directory (#PCDATA)>
+
 <!-- The module element is used to specify a jboss specific module archive.
 -->
 <!ELEMENT module (service | har)>




More information about the jboss-cvs-commits mailing list