[seam-commits] Seam SVN: r15577 - in branches/enterprise/WFK-2_1: examples/blog and 25 other directories.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Tue Jul 30 03:40:11 EDT 2013


Author: vdedik
Date: 2013-07-30 03:40:10 -0400 (Tue, 30 Jul 2013)
New Revision: 15577

Added:
   branches/enterprise/WFK-2_1/examples/README.html
   branches/enterprise/WFK-2_1/examples/blog/README.html
   branches/enterprise/WFK-2_1/examples/booking/README.html
   branches/enterprise/WFK-2_1/examples/contactlist/README.html
   branches/enterprise/WFK-2_1/examples/excel/README.html
   branches/enterprise/WFK-2_1/examples/groovybooking/README.html
   branches/enterprise/WFK-2_1/examples/hibernate/README.html
   branches/enterprise/WFK-2_1/examples/itext/README.html
   branches/enterprise/WFK-2_1/examples/jee6/README.html
   branches/enterprise/WFK-2_1/examples/jpa/README.html
   branches/enterprise/WFK-2_1/examples/mail/README.html
   branches/enterprise/WFK-2_1/examples/messages/README.html
   branches/enterprise/WFK-2_1/examples/nestedbooking/README.html
   branches/enterprise/WFK-2_1/examples/openid/README.html
   branches/enterprise/WFK-2_1/examples/quartz/README.html
   branches/enterprise/WFK-2_1/examples/registration/README.html
   branches/enterprise/WFK-2_1/examples/remoting/chatroom/README.html
   branches/enterprise/WFK-2_1/examples/remoting/helloworld/README.html
   branches/enterprise/WFK-2_1/examples/restbay/README.html
   branches/enterprise/WFK-2_1/examples/seambay/README.html
   branches/enterprise/WFK-2_1/examples/seamdiscs/README.html
   branches/enterprise/WFK-2_1/examples/seampay/README.html
   branches/enterprise/WFK-2_1/examples/seamspace/README.html
   branches/enterprise/WFK-2_1/examples/spring/README.html
   branches/enterprise/WFK-2_1/examples/tasks/README.html
   branches/enterprise/WFK-2_1/examples/ui/README.html
   branches/enterprise/WFK-2_1/seam-cdk-helper/README.html
Log:
Converting readme.md to html version

Added: branches/enterprise/WFK-2_1/examples/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,86 @@
+<h1>Seam Example EE6 Applications</h1>
+
+<p>This directory contains the Seam example applications, which have all been
+tested on the latest release of JBoss EAP 6.0. Consult the <code>README.md</code> file in each of
+the examples to see details.</p>
+
+<p>The name of each example, refered to later as <code>${example.name}</code>, is equivalent to the name of the folder.</p>
+
+<hr />
+
+<h2>Deploying and Testing an Example Application</h2>
+
+<p>These are general instructions for deploying Seam examples. Take a look at the
+<code>README.md</code> file in the example to see if there are any specific instructions.</p>
+
+<h3>How to Build and Deploy an Example on EAP 6</h3>
+
+<ol>
+<li><p>Download and unzip JBoss EAP 6</p>
+
+<pre><code> https://access.redhat.com/downloads
+</code></pre></li>
+<li><p>Make sure you have set up WFK and EAP 6 Maven repositories.
+More details how to do that, you can read in JBoss Web Framework Kit documentation book called Maven
+Repository Guide.</p></li>
+<li><p>Build the example by running the following command from the Seam
+<code>examples/${example.name}</code> directory:</p>
+
+<pre><code> mvn clean install
+</code></pre>
+
+<p><em>NOTE: There is an option to create an &ldquo;exploded&rdquo; archive. For this purpose, use <code>-Pexploded</code> maven profile.</em></p></li>
+<li><p>Deploy the example by running the following command from the <code>examples/${example.name}/{example.name}-ear</code>
+directory in case of an EAR packaged example or from <code>examples/${example.name}/{example.name}-war</code>
+in case of a WAR packaged example:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre>
+
+<p>To undeploy the example, run:</p>
+
+<pre><code> mvn jboss-as:undeploy
+</code></pre></li>
+<li><p>Point your web browser to:</p>
+
+<pre><code> http://localhost:8080/seam-${example.name}
+</code></pre>
+
+<p>The context path is set to the final name of the EAR archive.</p>
+
+<p>However, WAR deployments use a different naming convention for the context
+path. If you deploy a WAR example, point your web browser to:</p>
+
+<pre><code> http://localhost:8080/${example.name}-web
+</code></pre>
+
+<p>The WAR examples are:
+spring, jpa, hibernate, groovybooking.</p></li>
+</ol>
+
+
+<p><em>NOTE: The examples use the H2 default database embedded in JBoss EAP 6.</em></p>
+
+<h3>Running The Integration Tests</h3>
+
+<p>Integration tests can be executed during a build of the application using:</p>
+
+<pre><code>mvn clean install -Darquillian=jbossas-{managed,remote}-7
+</code></pre>
+
+<h2>Running functional tests on an example</h2>
+
+<p>The following steps describe executing of functional tests in general.
+Some examples are not covered with functional tests and thus don&rsquo;t contain
+the <code>${example.name}-ftest</code> folder.</p>
+
+<ul>
+<li>Start JBoss EAP 6 Server</li>
+<li>Set <code>JBOSS_HOME</code> environment property, respectively</li>
+</ul>
+
+
+<p>To run functional tests:</p>
+
+<pre><code>mvn clean test -f ${example.name}/${example.name}-ftest/pom.xml
+</code></pre>

Added: branches/enterprise/WFK-2_1/examples/blog/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/blog/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/blog/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,71 @@
+<h1>Seam Blog Example</h1>
+
+<p>This example demonstrates the use of Seam in a Java EE environment.
+Transaction and persistence context management is handled by the EJB container.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the blog-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-blog</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/booking/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/booking/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,96 @@
+<h1>Seam Booking Example</h1>
+
+<p>This example demonstrates the use of Seam in a Java EE 6 environment.
+Transaction and persistence context management is handled by the EJB container. This example runs on JBoss AS as an EAR.</p>
+
+<h2>Running the example</h2>
+
+<h3>Using Maven</h3>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the booking-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-booking</p></li>
+</ol>
+
+
+<h3>Using Ant</h3>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<p> ant clean package</p></li>
+<li><p>Copy <code>seam-booking.ear</code> from directory <code>booking-ear/target</code> to the deployment directory of JBoss AS <code>($JBOSS_HOME/standalone/deployments</code> by default)</p></li>
+<li><p>Open this URL in a web browser: <code>http://localhost:8080/seam-booking</code></p></li>
+</ol>
+
+
+<p><em>NOTE: If the Seam distribution is not unpacked in the same directory as the examples, the path to the Seam distribution must be set by defining <code>seam.dir</code> property</em></p>
+
+<pre><code>ant clean package -Dseam.dir=/path/to/jboss-seam
+</code></pre>
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h4>Using Ant</h4>
+
+<p>In the example root directory run:</p>
+
+<pre><code>ant clean test
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li><p>Open JBDS and start a configured instance of JBoss AS</p></li>
+<li><p>Import the example project and its submodules</p></li>
+<li><p>In the <em>Project Explorer</em>, select the EJB module project, then</p>
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/contactlist/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/contactlist/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/contactlist/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,70 @@
+<h1>Seam Contact List Example</h1>
+
+<p>This example demonstrates the Seam CRUD framework.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the contactlist-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-contactlist</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/excel/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/excel/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/excel/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,70 @@
+<h1>Seam Excel Example</h1>
+
+<p>This example demonstrates the Seam Excel functionality.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the excel-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-excel</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/groovybooking/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/groovybooking/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,22 @@
+<h1>Seam GroovyBooking Example</h1>
+
+<p>This is the Hotel Booking example implemented in Groovy Beans and Hibernate JPA.
+The application is deployed as a WAR rather than an EAR.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the groovybooking-web directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/groovybooking-web</p></li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/hibernate/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/hibernate/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/hibernate/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,72 @@
+<h1>Seam Hibernate Example</h1>
+
+<p>This is the Hotel Booking example implemented in Seam and Hibernate POJOs.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the hibernate-web directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/hibernate-web</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p><em>Note: For this test to function properly, it is necessary to run the JBoss AS instance with the <strong>-ea</strong> JVM argument (Enable Assertions).</em></p>
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the Web module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/itext/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/itext/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/itext/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,70 @@
+<h1>Seam iText Example</h1>
+
+<p>This example demonstrates the Seam PDF functionality.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the itext-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-itext</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/jee6/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/jee6/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/jee6/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,72 @@
+<h1>Seam Booking Example</h1>
+
+<p>This example demonstrates the use of Seam in a Java EE 6 environment.
+Transaction and persistence context management is handled by the
+EJB container. This example runs on JBoss AS as a WAR</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the jee6-web directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/jee6-web</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the Web module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/jpa/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/jpa/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/jpa/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,70 @@
+<h1>Seam JPA Example</h1>
+
+<p>This is the Hotel Booking example implemented in Seam POJO and Hibernate JPA.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the jpa-web directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/jpa-web</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration and functional tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the Web module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/mail/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/mail/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/mail/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,71 @@
+<h1>Seam Mail Example</h1>
+
+<p>This example demonstrates the Seam Mail functionality. It runs on JBoss AS as
+an EAR.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the mail-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-mail</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/messages/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/messages/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/messages/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,70 @@
+<h1>Seam Message List Example</h1>
+
+<p>This is a simple example of the use of @DataModel for the Seam tutorial.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the messages-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-messages</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/nestedbooking/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/nestedbooking/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,73 @@
+<h1>Seam NestedBooking Example</h1>
+
+<p>This example demonstrates the use of Seam nested conversations and runs
+on JBoss AS as an EAR.</p>
+
+<h2>Running the example</h2>
+
+<h3>Using Maven</h3>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the nestedbooking-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-nestedbooking</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li><p>Open JBDS and start a configured instance of JBoss AS</p></li>
+<li><p>Import the example project and its submodules</p></li>
+<li><p>In the <em>Project Explorer</em>, select the EJB module project, then</p>
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/openid/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/openid/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/openid/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,70 @@
+<h1>Seam OpenId Example</h1>
+
+<p>This is a trivial example of presentation how OpenId authentication is integrated with Seam security.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the openid-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-openid</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/quartz/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/quartz/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/quartz/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,70 @@
+<h1>Seam Quartz Example</h1>
+
+<p>This example demonstrates the Seam Quartz Timer functionality.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the quartz-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-quartz</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/registration/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/registration/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/registration/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,70 @@
+<h1>Seam Registration Example</h1>
+
+<p>This is a trivial example for the Seam tutorial.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the registration-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-registration</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/remoting/chatroom/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/chatroom/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/remoting/chatroom/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,70 @@
+<h1>Seam Chatroom Example</h1>
+
+<p>This example shows using Seam Remoting to subscribe and publish messages to JMS.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the chatroom-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-chatroom</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/remoting/helloworld/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/remoting/helloworld/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/remoting/helloworld/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,70 @@
+<h1>Seam Remoting/Helloworld Example</h1>
+
+<p>This example is a trivial example of Seam Remoting.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the helloworld-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-helloworld</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/restbay/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/restbay/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/restbay/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,71 @@
+<h1>Seam RestBay Example</h1>
+
+<p>This example shows Seam/JAX-RS RESTful HTTP webservices integration.
+It runs an EAR.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the restbay-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-restbay</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/seambay/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/seambay/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/seambay/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,70 @@
+<h1>Seam SeamBay Example</h1>
+
+<p>This example shows Seam/WS integration.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the seambay-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-seambay</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/seamdiscs/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamdiscs/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,92 @@
+<h1>Seam SeamDiscs Example</h1>
+
+<p>The seamdiscs example is a simple example built using the Seam Application
+Framework which allows you to record your favourite albums and artists.  It
+uses a mix of RichFaces and Trinidad components. It also uses the &ldquo;inplace
+editing&rdquo; pattern; the same facelets are used for editing and display of data
+(login to edit a disc or artist).</p>
+
+<p>The Seam-Trinidad integration (for now built into the example) provides a
+<code>DataModel</code> which, when backed by a Seam Application Framework Query, provides
+lazy loading of data for paging, sorting in the Persistence Context and strong
+row keys.  If you want to use, you&rsquo;ll need to copy the classes in
+<code>org.jboss.seam.trinidad</code> to your own project.  This may be offered as a
+standalone jar in the Seam project in the future.  One caveat is that you must
+ensure the rows property on the <code>&lt;tr:table&gt;</code> is the same as the <code>maxResults</code>
+property on the Query.</p>
+
+<p>Example</p>
+
+<pre><code>&lt;tr:table value="#{discs.dataModel}" rows="#{discs.maxResults}"&gt;
+  &lt;tr:column&gt;
+     ...
+  &lt;/tr:column
+&lt;/tr:table&gt;
+</code></pre>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the seamdiscs-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-seamdiscs</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/seampay/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/seampay/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/seampay/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,70 @@
+<h1>Seam Seampay Example</h1>
+
+<p>This example shows Seam&rsquo;s EJB3 timer support.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the seampay-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-seampay</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/seamspace/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/seamspace/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,95 @@
+<h1>Seam Seamspace Example</h1>
+
+<p>This example demonstrates Seam Security.</p>
+
+<h2>Running the example</h2>
+
+<h3>Using Maven</h3>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the seamspace-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-seamspace</p></li>
+</ol>
+
+
+<h3>Using Ant</h3>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<p> ant clean package</p></li>
+<li><p>Copy <code>seam-seamspace.ear</code> from directory <code>booking-ear/target</code> to the deployment directory of JBoss AS (<code>$JBOSS_HOME/standalone/deployments</code> by default)</p></li>
+<li><p>Open this URL in a web browser: <code>http://localhost:8080/seam-seamspace</code></p></li>
+</ol>
+
+
+<p><em>NOTE: If the Seam distribution is not unpacked in the same directory as the examples, the path to the Seam distribution must be set by defining <code>seam.dir</code> property</em></p>
+
+<pre><code>ant clean package -Dseam.dir=/path/to/jboss-seam
+</code></pre>
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h4>Using Ant</h4>
+
+<p>In the example root directory run:</p>
+
+<pre><code>ant clean test
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/spring/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/spring/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/spring/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,22 @@
+<h1>Seam Spring Example</h1>
+
+<p>This example shows Seam/Spring integration. This application runs on AS as
+a WAR file.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the spring-web directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/spring-web</p></li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/tasks/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/tasks/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/tasks/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,70 @@
+<h1>Seam Tasks Example</h1>
+
+<p>This example demonstrates the integration with RestEasy. It runs as an EAR.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the tasks-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-tasks</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/examples/ui/README.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/ui/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/examples/ui/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,70 @@
+<h1>Seam UI Example</h1>
+
+<p>This is a simple example demonstrating Seam UI.</p>
+
+<h2>Running the example</h2>
+
+<p>To deploy the example to a running JBoss AS instance, follow these steps:</p>
+
+<ol>
+<li><p>In the example root directory run:</p>
+
+<pre><code> mvn clean install
+</code></pre></li>
+<li><p>Set JBOSS_HOME environment property.</p></li>
+<li><p>In the ui-ear directory run:</p>
+
+<pre><code> mvn jboss-as:deploy
+</code></pre></li>
+<li><p>Open this URL in a web browser: http://localhost:8080/seam-ui</p></li>
+</ol>
+
+
+<h2>Testing the example</h2>
+
+<p>This example is covered by integration tests. All tests use the following technologies:</p>
+
+<ul>
+<li><strong>Arquillian</strong> -  as the framework for EE testing, for managing of container lifecycle and deployment of test archive,</li>
+<li><strong>ShrinkWrap</strong> - to create the test archive (WAR).</li>
+</ul>
+
+
+<h3>Integration tests</h3>
+
+<p>Integration tests cover core application logic and reside in the EJB module. In addition to Arquillian and ShrinkWrap, the integration tests also use:</p>
+
+<ul>
+<li><strong>JUnitSeamTest</strong> - to hook into the JSF lifecycle and assert server-side state,</li>
+<li><strong>ShrinkWrap Resolver</strong> - to resolve dependencies of the project for packaging in the test archive.</li>
+</ul>
+
+
+<p>The tests are executed in Maven&rsquo;s test phase. By default they are skipped and can be executed on JBoss AS with:</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-managed-7
+</code></pre>
+
+<p>The <code>JBOSS_HOME</code> environment variable must be set and point to a JBoss AS instance directory.</p>
+
+<p>To test on a running server, use</p>
+
+<pre><code>mvn clean test -Darquillian=jbossas-remote-7
+</code></pre>
+
+<h2>Testing in JBDS</h2>
+
+<h3>Integration tests</h3>
+
+<ol>
+<li>Open JBDS and start a configured instance of JBoss AS</li>
+<li>Import the example project and its submodules</li>
+<li>In the <em>Project Explorer</em>, select the EJB module project, then
+
+<ol>
+<li>Type <code>Ctrl+Alt+P</code> (<em>Select Maven Profiles</em>) and check <code>integration-tests</code> and <code>arq-jbossas-7-remote</code></li>
+<li>Right-click the module and select <em>Run As</em> - <em>JUnit Test</em></li>
+</ol>
+</li>
+</ol>
+

Added: branches/enterprise/WFK-2_1/seam-cdk-helper/README.html
===================================================================
--- branches/enterprise/WFK-2_1/seam-cdk-helper/README.html	                        (rev 0)
+++ branches/enterprise/WFK-2_1/seam-cdk-helper/README.html	2013-07-30 07:40:10 UTC (rev 15577)
@@ -0,0 +1,39 @@
+<h1>Seam CDK Helper</h1>
+
+<p>Author: Rafael Benevides</p>
+
+<p>Maven Plugin to generate Validators and Converters for Seam 2.3 - Workaround for Richfaces 4 CDK</p>
+
+<h2>Why this Maven Plugin was created?</h2>
+
+<p>The converters and validators wasn&rsquo;t available as related at https://issues.jboss.org/browse/JBSEAM-4955</p>
+
+<p>There is a related issue with Richfaces 4 the prevents this generation https://issues.jboss.org/browse/RF-12271</p>
+
+<p>This plugin generates the conveters by looking for classes annotated with @FacesConvertes and the looks for its configs to generate its tag on s.taglib.xml</p>
+
+<p>For validators the source of the information is the correspondent xml files</p>
+
+<h2>How to use this plugin ?</h2>
+
+<p>Just at the plugin information on jboss-seam-ui pom.xml</p>
+
+<pre><code>&lt;build&gt;
+    &lt;plugins&gt;
+      ...
+      &lt;!-- This need to be after Richfaces CDK plugin --&gt;
+      &lt;plugin&gt;
+         &lt;groupId&gt;org.jboss.seam&lt;/groupId&gt;
+             &lt;artifactId&gt;seam-cdk-helper&lt;/artifactId&gt;
+             &lt;version&gt;1.0&lt;/version&gt;
+             &lt;executions&gt;
+            &lt;execution&gt;
+               &lt;phase&gt;generate-sources&lt;/phase&gt;
+               &lt;goals&gt;
+                  &lt;goal&gt;execute&lt;/goal&gt;
+               &lt;/goals&gt;
+            &lt;/execution&gt;
+         &lt;/executions&gt;
+      &lt;/plugin&gt;
+      ...
+</code></pre>



More information about the seam-commits mailing list