[jboss-svn-commits] JBL Code SVN: r9018 - in labs/jbossesb/trunk/product: install and 1 other directories.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Thu Jan 25 07:51:22 EST 2007
Author: tfennelly
Date: 2007-01-25 07:51:22 -0500 (Thu, 25 Jan 2007)
New Revision: 9018
Added:
labs/jbossesb/trunk/product/lib/ext/groovy-all-1.0.jar
labs/jbossesb/trunk/product/lib/ext/milyn-commons-0.8.jar
labs/jbossesb/trunk/product/lib/ext/milyn-edisax-0.1-SNAPSHOT.jar
labs/jbossesb/trunk/product/lib/ext/milyn-smooks-core-0.8.jar
labs/jbossesb/trunk/product/lib/ext/milyn-smooks-edi-0.1-SNAPSHOT.jar
labs/jbossesb/trunk/product/lib/ext/milyn-smooks-javabean-0.2.jar
labs/jbossesb/trunk/product/lib/ext/milyn-smooks-scripting-0.1-SNAPSHOT.jar
Removed:
labs/jbossesb/trunk/product/lib/ext/milyn-commons-0.8-SNAPSHOT.jar
labs/jbossesb/trunk/product/lib/ext/milyn-smooks-core-0.8-SNAPSHOT.jar
labs/jbossesb/trunk/product/lib/ext/milyn-smooks-javabean-0.1.1.jar
Modified:
labs/jbossesb/trunk/product/console/build.xml
labs/jbossesb/trunk/product/console/import.sql
labs/jbossesb/trunk/product/install/build.xml
labs/jbossesb/trunk/product/lib/ext/milyn-smooks-csv-0.1.jar
labs/jbossesb/trunk/product/lib/ext/milyn-smooks-misc-0.2.jar
labs/jbossesb/trunk/product/lib/ext/milyn-smooks-templating-0.2.jar
labs/jbossesb/trunk/product/lib/ext/milyn-tinak-0.7.1.jar
Log:
Updated Smooks libs with non SNAPSHOT versions.
Added libs so as to be able to add Groovy and EDI quickstarts.
Modified: labs/jbossesb/trunk/product/console/build.xml
===================================================================
--- labs/jbossesb/trunk/product/console/build.xml 2007-01-25 11:53:47 UTC (rev 9017)
+++ labs/jbossesb/trunk/product/console/build.xml 2007-01-25 12:51:22 UTC (rev 9018)
@@ -24,6 +24,9 @@
<property name="distro.dir" location="distro" />
<property name="product.lib.ext.dir" location="../lib/ext" />
+ <!-- External Dependencies -->
+ <property name="product.lib.ext.includes" value="milyn*.jar,opencsv*.jar,xbean.jar,xmlpublic.jar,groovy*.jar"/>
+
<target name="build" description="Compile, test and package (war) the application.">
<!-- Compile... -->
<mkdir dir="${classes.dir}" />
@@ -52,7 +55,7 @@
<!-- Package -->
<delete file="${build.console.dir}/${package.name}.war" />
<copy todir="${resources.dir}/WEB-INF/lib">
- <fileset dir="${product.lib.ext.dir}" includes="milyn*.jar,opencsv*.jar" />
+ <fileset dir="${product.lib.ext.dir}" includes="${product.lib.ext.includes}" />
</copy>
<jar destfile="${resources.dir}/WEB-INF/lib/${package.name}.jar">
<fileset dir="${resources.dir}/WEB-INF/classes" />
@@ -64,7 +67,7 @@
<fileset dir="${view.dir}" />
<fileset dir="${basedir}" includes="distro/**,import.sql,jboss-esb-console-service.xml" />
</jar>
- <delete dir="${resources.dir}/WEB-INF/lib" includes="milyn*.jar,opencsv*.jar,${package.name}.jar" />
+ <delete dir="${resources.dir}/WEB-INF/lib" includes="${product.lib.ext.includes},${package.name}.jar" />
</target>
<target name="assertTestsFailed" if="test.failed">
Modified: labs/jbossesb/trunk/product/console/import.sql
===================================================================
--- labs/jbossesb/trunk/product/console/import.sql 2007-01-25 11:53:47 UTC (rev 9017)
+++ labs/jbossesb/trunk/product/console/import.sql 2007-01-25 12:51:22 UTC (rev 9018)
@@ -30,6 +30,9 @@
insert into transformationresource (id, name, path, selector, useragent) values (2, '* StringTemplate Content Delivery Unit Creator (This resource is targeted at all Message Exchanges and is required for interpreting "st" resource types)', 'org.milyn.templating.stringtemplate.StringTemplateContentDeliveryUnitCreator', 'cdu-creator', '*');
insert into transformationresourceparameter (id, name, value, transresource_id) values (2, 'restype', 'st', 2);
+insert into transformationresource (id, name, path, selector, useragent) values (3, '* Groovy Content Delivery Unit Creator (This resource is targeted at all Message Exchanges and is required for interpreting "groovy" resource types)', 'org.milyn.smooks.scripting.GroovyContentDeliveryUnitCreator', 'cdu-creator', '*');
+insert into transformationresourceparameter (id, name, value, transresource_id) values (3, 'restype', 'groovy', 3);
+
--########################################################################
--# XSLT Templatelet Resource Template.
--########################################################################
@@ -49,21 +52,18 @@
insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (8, 'visitBefore', 'false', 'Should the template be applied before (true) or after (false) Smooks visits the child elements of the target element.', false, 2);
insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (9, 'encoding', 'UTF-8', 'XSLT Character Encoding.', false, 2);
-
--########################################################################
--# CSV Message Parser Template.
--########################################################################
insert into transformationresourcespec (id, name, path, selector, description, reference) values (3, 'CSV Message Parser', 'org.milyn.csv.CSVParser', 'org.xml.sax.driver', 'Set the SAX Parser for a Comma Separated Value (CSV) message. This resource sets the Smooks SAX Parser for the targeted CSV message, allowing the CSV message to be interpretted as an XML DOM. <p/>Examples of using this resource can be seen on the <a href="http://milyn.codehaus.org/Tutorials">Milyn Smooks</a> website.<p/>Resources derived from this template will require the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks CSV Cartridge</a> to be installed.', 'http://milyn.codehaus.org/javadoc/smooks-cartridges/csv/org/milyn/csv/CSVParser.html');
insert into transformationresourceparameterspec (id, name, value, type, description, required, resourcespec_id) values (10, 'fields', '', 'string-list', 'Comma Separated list of field names that map to the CSV fields expected in the message. This field names are mapped to the element names in the DOM produced by this parser. See Reference docs.', true, 3);
-
--########################################################################
--# Message Exchange Parameter
--########################################################################
insert into transformationresourcespec (id, name, path, selector, description, reference) values (4, 'Message Exchange Parameter', 'N/A', 'device-parameters', 'Set a Message Exchange specific parameter/property value. This parameter value will be accessible to all <a href="http://milyn.codehaus.org/javadoc/smooks/org/milyn/delivery/ElementVisitor.html">ElementVisitor</a> derived resource instances via the <a href="http://milyn.codehaus.org/javadoc/smooks/org/milyn/cdr/ParameterAccessor.html">ParameterAccessor</a> class. This allows you to configure parameters that cut across message profiles.', 'http://milyn.codehaus.org/javadoc/smooks/org/milyn/cdr/ParameterAccessor.html');
insert into transformationresourceparameterspec (id, value, description, required, resourcespec_id) values (11, '', 'Parameter Name and Value.', false, 4);
-
--########################################################################
--# JavaBean Populators
--########################################################################
@@ -87,11 +87,10 @@
insert into transformationresourceparameterspec (id, name, description, required, resourcespec_id) values (22, 'setterName', 'Explicitly specify the bean setter method name (see <a href="http://milyn.codehaus.org/javadoc/smooks-cartridges/javabean/org/milyn/javabean/AssemblyPhaseBeanPopulator.html">Javadoc</a>).', false, 8);
insert into transformationresourceparameterspec (id, name, description, required, resourcespec_id) values (23, 'attributeName', 'DOM Element attribute name - for extracting a value from a DOM Element attribute (see <a href="http://milyn.codehaus.org/javadoc/smooks-cartridges/javabean/org/milyn/javabean/AssemblyPhaseBeanPopulator.html">Javadoc</a>).', false, 8);
-
--########################################################################
---# XSLT Templatelet Resource Template.
+--# XSLT Stylesheet Resource Template (inlined).
--########################################################################
-insert into transformationresourcespec (id, name, path, description, reference) values (9, 'XSLT (Full Stylesheet)', 'See ''resdata'' parameter value', 'Perform an XML Fragment Transform using a fully XSLT Stylesheet. The targeted XML fragment is transformed using the XSLT Stylesheet and the transformation result is used in accordance with the value of the "action" parameter. Can be used in conjunction with the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks Javabean Cartridge</a> Cartridge. <p/>Examples of using this resource can be seen on the <a href="http://milyn.codehaus.org/Tutorials">Milyn Smooks</a> website.<p/>Resources derived from this template will require the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks Templating Cartridge</a> to be installed.', 'http://milyn.codehaus.org/javadoc/smooks-cartridges/templating/org/milyn/templating/xslt/XslContentDeliveryUnitCreator.html');
+insert into transformationresourcespec (id, name, path, description, reference) values (9, 'XSLT (Full Stylesheet - Inlined)', 'See ''resdata'' parameter value', 'Perform an XML Fragment Transform using a fully XSLT Stylesheet, specified inline (as opposed to externally). The targeted XML fragment is transformed using the XSLT Stylesheet and the transformation result is used in accordance with the value of the "action" parameter. Can be used in conjunction with the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks Javabean Cartridge</a> Cartridge. <p/>Examples of using this resource can be seen on the <a href="http://milyn.codehaus.org/Tutorials">Milyn Smooks</a> website.<p/>Resources derived from this template will require the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks Templating Cartridge</a> to be installed.', 'http://milyn.codehaus.org/javadoc/smooks-cartridges/templating/org/milyn/templating/xslt/XslContentDeliv!
eryUnitCreator.html');
insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (24, 'resdata', '', 'Resource Data. The XSLT Stylesheet.', true, 9);
insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (25, 'action', '', 'Action to be performed with the transformation result relative to the targeted XML Fragment. Possible values: "replace", "addto", "insertbefore", "insertafter".', true, 9);
insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (26, 'restype', 'xsl', 'Resource Type.', false, 9);
@@ -126,3 +125,33 @@
--########################################################################
insert into transformationresourcespec (id, name, path, description, reference) values (13, 'Remove Attribute', 'org.milyn.cdres.trans.RemoveAttributeTU', 'Remove an attribute from the target element.<br/>Resources derived from this template will require the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks Misc Cartridge</a> to be installed.', 'http://milyn.codehaus.org/javadoc/smooks-cartridges/misc/org/milyn/cdres/trans/RemoveAttributeTU.html');
insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (37, 'attributeName', '', 'The name of the attribute to be removed from the target element.', true, 13);
+
+--########################################################################
+--# XSLT Stylesheet Resource Template (external).
+--########################################################################
+insert into transformationresourcespec (id, name, description, reference) values (14, 'XSLT (Full Stylesheet - External)', 'Perform an XML Fragment Transform using a fully XSLT Stylesheet, specified external (by <a href="http://milyn.codehaus.org/javadoc/commons/org/milyn/resource/URIResourceLocator.html">URI reference</a>). The targeted XML fragment is transformed using the XSLT Stylesheet and the transformation result is used in accordance with the value of the "action" parameter. Can be used in conjunction with the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks Javabean Cartridge</a> Cartridge. <p/>Examples of using this resource can be seen on the <a href="http://milyn.codehaus.org/Tutorials">Milyn Smooks</a> website.<p/>Resources derived from this template will require the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks Templating Cartridge</a> to be installed.', 'http://milyn.codehaus.org/javadoc/smooks-cartridge!
s/templating/org/milyn/templating/xslt/XslContentDeliveryUnitCreator.html');
+insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (38, 'action', '', 'Action to be performed with the transformation result relative to the targeted XML Fragment. Possible values: "replace", "addto", "insertbefore", "insertafter".', true, 14);
+insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (39, 'restype', 'xsl', 'Resource Type.', false, 14);
+insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (40, 'is-xslt-templatelet', 'false', 'Is this XSLT resource an XSLT Templatelet.', false, 14);
+insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (41, 'visitBefore', 'false', 'Should the template be applied before (true) or after (false) Smooks visits the child elements of the target element.', false, 14);
+insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (42, 'encoding', 'UTF-8', 'XSLT Character Encoding.', false, 14);
+
+--########################################################################
+--# Groovy Script Resource Template (inlined).
+--########################################################################
+insert into transformationresourcespec (id, name, path, description, reference) values (15, 'Groovy Script (Inlined)', 'See ''resdata'' parameter value', 'Perform an XML Fragment Transform using a <a href="http://groovy.codehaus.org">Groovy Script</a>, specified inline (as opposed to externally).<p/>Resources derived from this template will require the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks Scripting Cartridge</a> to be installed.', 'http://milyn.codehaus.org/javadoc/smooks-cartridges/scripting/org/milyn/smooks/scripting/GroovyContentDeliveryUnitCreator.html');
+insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (43, 'restype', 'groovy', 'Resource Type.', false, 15);
+insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (44, 'resdata', '', 'Resource Data. The inlined Groovy script. The Groovy script class must implement one of <a href="http://milyn.codehaus.org/javadoc/smooks/org/milyn/delivery/assemble/AssemblyUnit.html">AssemblyUnit</a>, <a href="http://milyn.codehaus.org/javadoc/smooks/org/milyn/delivery/process/ProcessingUnit.html">ProcessingUnit</a>, or <a href="http://milyn.codehaus.org/javadoc/smooks/org/milyn/delivery/serialize/SerializationUnit.html">SerializationUnit</a>', true, 15);
+
+--########################################################################
+--# Groovy Script Resource Template (external).
+--########################################################################
+insert into transformationresourcespec (id, name, description, reference) values (16, 'Groovy Script (External)', 'Perform an XML Fragment Transform using a <a href="http://groovy.codehaus.org">Groovy Script</a>, specified externaly (by <a href="http://milyn.codehaus.org/javadoc/commons/org/milyn/resource/URIResourceLocator.html">URI reference</a>).<p/>The Groovy script class must implement one of <a href="http://milyn.codehaus.org/javadoc/smooks/org/milyn/delivery/assemble/AssemblyUnit.html">AssemblyUnit</a>, <a href="http://milyn.codehaus.org/javadoc/smooks/org/milyn/delivery/process/ProcessingUnit.html">ProcessingUnit</a>, or <a href="http://milyn.codehaus.org/javadoc/smooks/org/milyn/delivery/serialize/SerializationUnit.html">SerializationUnit</a>.<p/>Resources derived from this template will require the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks Scripting Cartridge</a> to be installed.', 'http://milyn.codehaus.org/javadoc/smooks-cartridge!
s/scripting/org/milyn/smooks/scripting/GroovyContentDeliveryUnitCreator.html');
+insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (45, 'restype', 'groovy', 'Resource Type.', false, 16);
+insert into transformationresourceparameterspec (id, value, description, required, resourcespec_id) values (46, '', 'Optional script specific parameter.', false, 16);
+
+--########################################################################
+--# EDI Message Parser Template.
+--########################################################################
+insert into transformationresourcespec (id, name, path, selector, description, reference) values (17, 'EDI Message Parser', 'org.milyn.smooks.edi.SmooksEDIParser', 'org.xml.sax.driver', 'Set the SAX Parser for an EDI message. This resource sets the Smooks SAX Parser for the targeted EDI message, allowing the EDI message to be interpretted as an XML DOM. <p/>Resources derived from this template will require the <a href="http://milyn.codehaus.org/Smooks#Smooks-smookscartridges">Smooks EDI Cartridge</a> to be installed.', 'http://milyn.codehaus.org/javadoc/smooks-cartridges/edi/org/milyn/smooks/edi/SmooksEDIParser.html');
+insert into transformationresourceparameterspec (id, name, value, description, required, resourcespec_id) values (47, 'mapping-model', '', 'EDI to SAX/XML mapping model. <a href="http://milyn.codehaus.org/javadoc/smooks-cartridges/edi/org/milyn/smooks/edi/SmooksEDIParser.html">See Reference docs</a>.', true, 17);
Modified: labs/jbossesb/trunk/product/install/build.xml
===================================================================
--- labs/jbossesb/trunk/product/install/build.xml 2007-01-25 11:53:47 UTC (rev 9017)
+++ labs/jbossesb/trunk/product/install/build.xml 2007-01-25 12:51:22 UTC (rev 9018)
@@ -102,15 +102,13 @@
<echo>Please update your jbossesb-properties.xml, if you want to use a different Content Based Routing engine.</echo>
</target>
+ <property name="smooks.dependencies" value="milyn-*.jar,opencsv-*.jar,groovy-*.jar,commons-lang-2.1.jar" />
<target name="jboss.sar.smooks.deploy" description="Deploys Milyn Smooks to the jbossesb-dependencies.sar">
<echo>Deploy Milyn Smooks to jbossesb-dependencies.sar</echo>
<echo>This tasks will only succeed if you already have an existing jbossesb-dependencies.sar</echo>
<copy todir="${org.jboss.esb.appserver.home}/server/${org.jboss.esb.appserver.config}/deploy/jbossesb-dependencies.sar">
<fileset dir="${org.jboss.esb.dist.lib}/ext"
- includes="milyn-commons-0.8-SNAPSHOT.jar,
- milyn-smooks-core-0.8-SNAPSHOT.jar,milyn-smooks-javabean-0.1.1.jar,milyn-smooks-misc-0.2.jar,
- milyn-smooks-templating-0.2.jar,milyn-tinak-0.7.1.jar,
- commons-lang-2.1.jar"/>
+ includes="${smooks.dependencies}"/>
</copy>
</target>
@@ -118,10 +116,7 @@
<echo>Deleting Milyn Smooks from jbossesb-dependencies.sar</echo>
<delete>
<fileset dir="${org.jboss.esb.appserver.home}/server/${org.jboss.esb.appserver.config}/deploy/jbossesb-dependencies.sar"
- includes="milyn-commons-0.8-SNAPSHOT.jar,
- milyn-smooks-core-0.8-SNAPSHOT.jar,milyn-smooks-javabean-0.1.1.jar,milyn-smooks-misc-0.2.jar,
- milyn-smooks-templating-0.2.jar,milyn-tinak-0.7.1.jar,
- commons-lang-2.1.jar"/>
+ includes="${smooks.dependencies}"/>
</delete>
</target>
@@ -198,10 +193,7 @@
drools-compiler-3.0.4.jar,drools-core-3.0.4.jar,stringtemplate-2.3b6.jar,
commons-jci-core-1.0-406301.jar, commons-jci-janino-2.4.3.jar, janino-2.4.3.jar"/>
<!-- smooks for transformation -->
- <fileset dir="${org.jboss.esb.dist.lib}/ext" includes="milyn-commons-0.8-SNAPSHOT.jar,
- milyn-smooks-core-0.8-SNAPSHOT.jar,milyn-smooks-javabean-0.1.1.jar,milyn-smooks-misc-0.2.jar,
- milyn-smooks-templating-0.2.jar,milyn-tinak-0.7.1.jar,
- commons-lang-2.1.jar"/>
+ <fileset dir="${org.jboss.esb.dist.lib}/ext" includes="${smooks.dependencies}"/>
<!-- ftp -->
<fileset dir="${org.jboss.esb.dist.lib}/ext" includes="edtftpj.jar"/>
</copy>
Added: labs/jbossesb/trunk/product/lib/ext/groovy-all-1.0.jar
===================================================================
(Binary files differ)
Property changes on: labs/jbossesb/trunk/product/lib/ext/groovy-all-1.0.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: labs/jbossesb/trunk/product/lib/ext/milyn-commons-0.8-SNAPSHOT.jar
===================================================================
(Binary files differ)
Added: labs/jbossesb/trunk/product/lib/ext/milyn-commons-0.8.jar
===================================================================
(Binary files differ)
Property changes on: labs/jbossesb/trunk/product/lib/ext/milyn-commons-0.8.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: labs/jbossesb/trunk/product/lib/ext/milyn-edisax-0.1-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: labs/jbossesb/trunk/product/lib/ext/milyn-edisax-0.1-SNAPSHOT.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: labs/jbossesb/trunk/product/lib/ext/milyn-smooks-core-0.8-SNAPSHOT.jar
===================================================================
(Binary files differ)
Added: labs/jbossesb/trunk/product/lib/ext/milyn-smooks-core-0.8.jar
===================================================================
(Binary files differ)
Property changes on: labs/jbossesb/trunk/product/lib/ext/milyn-smooks-core-0.8.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: labs/jbossesb/trunk/product/lib/ext/milyn-smooks-csv-0.1.jar
===================================================================
(Binary files differ)
Added: labs/jbossesb/trunk/product/lib/ext/milyn-smooks-edi-0.1-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: labs/jbossesb/trunk/product/lib/ext/milyn-smooks-edi-0.1-SNAPSHOT.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: labs/jbossesb/trunk/product/lib/ext/milyn-smooks-javabean-0.1.1.jar
===================================================================
(Binary files differ)
Added: labs/jbossesb/trunk/product/lib/ext/milyn-smooks-javabean-0.2.jar
===================================================================
(Binary files differ)
Property changes on: labs/jbossesb/trunk/product/lib/ext/milyn-smooks-javabean-0.2.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: labs/jbossesb/trunk/product/lib/ext/milyn-smooks-misc-0.2.jar
===================================================================
(Binary files differ)
Added: labs/jbossesb/trunk/product/lib/ext/milyn-smooks-scripting-0.1-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: labs/jbossesb/trunk/product/lib/ext/milyn-smooks-scripting-0.1-SNAPSHOT.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: labs/jbossesb/trunk/product/lib/ext/milyn-smooks-templating-0.2.jar
===================================================================
(Binary files differ)
Modified: labs/jbossesb/trunk/product/lib/ext/milyn-tinak-0.7.1.jar
===================================================================
(Binary files differ)
More information about the jboss-svn-commits
mailing list