You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@tomee.apache.org by bu...@apache.org on 2012/11/08 22:57:02 UTC

svn commit: r837730 - in /websites/staging/openejb/trunk: cgi-bin/ content/ content/dev/jira/

Author: buildbot
Date: Thu Nov  8 21:57:01 2012
New Revision: 837730

Log:
Staging update by buildbot for openejb

Removed:
    websites/staging/openejb/trunk/content/arquillian.html
Modified:
    websites/staging/openejb/trunk/cgi-bin/   (props changed)
    websites/staging/openejb/trunk/content/   (props changed)
    websites/staging/openejb/trunk/content/arquillian-available-adapter.html
    websites/staging/openejb/trunk/content/arquillian-getting-started.html
    websites/staging/openejb/trunk/content/dev/jira/todo.html
    websites/staging/openejb/trunk/content/enterprise-tomcat.html
    websites/staging/openejb/trunk/content/sitemap.html
    websites/staging/openejb/trunk/content/sitemap.xml
    websites/staging/openejb/trunk/content/tomcat-activemq.html
    websites/staging/openejb/trunk/content/tomcat-cdi.html
    websites/staging/openejb/trunk/content/tomcat-ejb.html
    websites/staging/openejb/trunk/content/tomcat-java-ee.html
    websites/staging/openejb/trunk/content/tomcat-javaee.html
    websites/staging/openejb/trunk/content/tomcat-jaxrs.html
    websites/staging/openejb/trunk/content/tomcat-jaxws.html
    websites/staging/openejb/trunk/content/tomcat-jms.html
    websites/staging/openejb/trunk/content/tomcat-jpa.html
    websites/staging/openejb/trunk/content/tomcat-jsf.html
    websites/staging/openejb/trunk/content/tomee-mp-getting-started.html

Propchange: websites/staging/openejb/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Nov  8 21:57:01 2012
@@ -1 +1 @@
-1407279
+1407283

Propchange: websites/staging/openejb/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Nov  8 21:57:01 2012
@@ -1 +1 @@
-1407279
+1407283

Modified: websites/staging/openejb/trunk/content/arquillian-available-adapter.html
==============================================================================
--- websites/staging/openejb/trunk/content/arquillian-available-adapter.html (original)
+++ websites/staging/openejb/trunk/content/arquillian-available-adapter.html Thu Nov  8 21:57:01 2012
@@ -3,7 +3,7 @@
   <head>
 
     <meta charset="utf-8">
-      <title></title>
+      <title>TomEE and Arquillian</title>
     <meta name="description" content="">
     <meta name="author" content="">
 
@@ -70,7 +70,7 @@
       };
       function twshare () {
           window.open(
-                  "https://twitter.com/intent/tweet?url="+document.URL+"&text=",
+                  "https://twitter.com/intent/tweet?url="+document.URL+"&text=TomEE and Arquillian",
                   'Share on Twitter',
                   'width=800,height=526');
       };
@@ -136,7 +136,7 @@
 
 <div class="page-header">
 <small><a href="./index.html">Home</a></small><br>
-<h1>
+<h1>TomEE and Arquillian
 
     <div style="float: right; position: relative; bottom: -10px; ">
         <a onclick="javascript:gpshare()" class="gp-share sprite" title="share on Google+">share [gp]</a>
@@ -147,7 +147,243 @@
 </h1>
 </div>
 
+<p><div class="info">
+See <a href="http://arquillian.org">Arquillian.org</a> for some great quickstart information on Arquillian itself.</div></p>
 
+<p>All the Aqruillian Adapters for TomEE support the following configuration options in the arquillian.xml:</p>
+
+<pre><code>&lt;container qualifier="tomee" default="true"&gt;
+    &lt;configuration&gt;
+        &lt;property name="httpPort"&gt;0&lt;/property&gt;
+        &lt;property name="stopPort"&gt;0&lt;/property&gt;
+    &lt;/configuration&gt;
+&lt;/container&gt;
+</code></pre>
+
+<p>The above can also be set as system properties rather than via the arquillian.xml file.</p>
+
+<pre><code>&lt;build&gt;
+  &lt;plugins&gt;
+    &lt;plugin&gt;
+      &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+      &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt;
+      &lt;configuration&gt;
+        &lt;systemPropertyVariables&gt;
+          &lt;tomee.httpPort&gt;0&lt;/tomee.httpPort&gt;
+          &lt;tomee.stopPort&gt;0&lt;/tomee.stopPort&gt;
+        &lt;/systemPropertyVariables&gt;
+      &lt;/configuration&gt;
+    &lt;/plugin&gt;
+  &lt;/plugins&gt;
+&lt;/build&gt;
+</code></pre>
+
+<p>When a port is set to zero, a random port will be chosen.  This is key to avoiding port conflicts on CI systems or for just plain clean testing.</p>
+
+<p>The TomEE Arquillian adapters will export the actual port chosen back as a system propert using the same name.  The test case can use the property to retrieve the port and contact the server.</p>
+
+<pre><code>URL url = new URL("http://localhost:" + System.getProperty("tomee.httpPort");
+// use the URL to connect to the server
+</code></pre>
+
+<h1>TomEE Embedded Adapter</h1>
+
+<p>The TomEE Embedded Adapter will boot TomEE right inside the testcase itself resulting in one JVM running both the application and the test case.
+This is generally much faster than the TomEE Remote Adapter and great for development.  That said, it is strongly recommended to also run all tests in a Continous Integration
+system using the TomEE Remote Adapter.</p>
+
+<p>To use the TomEE Embedded Arquillian Adapter, simply add this Maven dependency to your Arquillian setup:</p>
+
+<pre><code>&lt;dependency&gt;
+  &lt;groupId&gt;org.apache.openejb&lt;/groupId&gt;
+  &lt;artifactId&gt;arquillian-tomee-embedded&lt;/artifactId&gt;
+  &lt;version&gt;1.0.0&lt;/version&gt;
+&lt;/dependency&gt;
+</code></pre>
+
+<p>As mentioned above the Embedded Adapter has the following properties which can be specified in the <code>arquillian.xml</code> file:</p>
+
+<ul>
+<li><code>httpPort</code></li>
+<li><code>stopPort</code></li>
+</ul>
+
+<p>Or alternatively as System properties, possibly shared with other TomEE Arquillian Adapters:</p>
+
+<ul>
+<li><code>tomee.httpPort</code></li>
+<li><code>tomee.stopPort</code></li>
+</ul>
+
+<p>Or more specifically as a System properties only applicable to the Embedded Adapter:</p>
+
+<ul>
+<li><code>tomee.embedded.httpPort</code></li>
+<li><code>tomee.embedded.stopPort</code></li>
+</ul>
+
+<h1>TomEE Remote Adapter</h1>
+
+<p>The TomEE Remote Adapter will unzip and setup a TomEE or TomEE Plus distribution.  Once setup, the server will execute in a separate process.  This will be slower, but
+with the added benefit it is 100% match with the production system.</p>
+
+<p>The following shows a typical configuration for testing against TomEE (webprofile version).  The same can be done against TomEE+ by changing <code>&lt;tomee.classifier&gt;webprofile&lt;/tomee.classifier&gt;</code> to <code>&lt;tomee.classifier&gt;plus&lt;/tomee.classifier&gt;</code></p>
+
+<pre><code>&lt;properties&gt;
+  &lt;tomee.version&gt;1.0.0&lt;/tomee.version&gt;
+  &lt;tomee.classifier&gt;webprofile&lt;/tomee.classifier&gt;
+&lt;/properties&gt;
+&lt;build&gt;
+  &lt;plugins&gt;
+    &lt;plugin&gt;
+      &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+      &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt;
+      &lt;configuration&gt;
+        &lt;systemPropertyVariables&gt;
+          &lt;tomee.classifier&gt;${tomee.classifier}&lt;/tomee.classifier&gt;
+          &lt;tomee.version&gt;${tomee.version}&lt;/tomee.version&gt;
+        &lt;/systemPropertyVariables&gt;
+      &lt;/configuration&gt;
+    &lt;/plugin&gt;
+  &lt;/plugins&gt;
+&lt;/build&gt;
+&lt;dependencies&gt;
+  &lt;dependency&gt;
+    &lt;groupId&gt;org.apache.openejb&lt;/groupId&gt;
+    &lt;artifactId&gt;arquillian-tomee-remote&lt;/artifactId&gt;
+    &lt;version&gt;${tomee.version}&lt;/version&gt;
+  &lt;/dependency&gt;
+  &lt;dependency&gt;
+    &lt;groupId&gt;org.apache.openejb&lt;/groupId&gt;
+    &lt;artifactId&gt;apache-tomee&lt;/artifactId&gt;
+    &lt;version&gt;${tomee.version}&lt;/version&gt;
+    &lt;classifier&gt;${tomee.classifier}&lt;/classifier&gt;
+    &lt;type&gt;zip&lt;/type&gt;
+  &lt;/dependency&gt;
+&lt;/dependencies&gt;
+</code></pre>
+
+<p>The Remote Adapter has the following properties which can be specified in the <code>arquillian.xml</code> file:</p>
+
+<ul>
+<li><code>httpPort</code></li>
+<li><code>stopPort</code></li>
+<li><code>version</code></li>
+<li><code>classifier</code> (must be either <code>webprofile</code> or  <code>plus</code>)</li>
+</ul>
+
+<p>Or alternatively as System properties, possibly shared with other TomEE Arquillian Adapters:</p>
+
+<ul>
+<li><code>tomee.httpPort</code></li>
+<li><code>tomee.stopPort</code></li>
+<li><code>tomee.version</code></li>
+<li><code>tomee.classifier</code></li>
+</ul>
+
+<p>Or more specifically as a System properties only applicable to the Remote Adapter:</p>
+
+<ul>
+<li><code>tomee.remote.httpPort</code></li>
+<li><code>tomee.remote.stopPort</code></li>
+<li><code>tomee.remote.version</code></li>
+<li><code>tomee.remote.classifier</code></li>
+</ul>
+
+<h1>Maven Profiles</h1>
+
+<p>Setting up both adapters is quite easy via maven profiles.  Here the default adapter is the Embedded Adapter, the Remote Adapter will run with <code>-Ptomee-webprofile-remote</code> specified as a <code>mvn</code> command argument.</p>
+
+<pre><code>&lt;profiles&gt;
+
+  &lt;profile&gt;
+    &lt;id&gt;tomee-embedded&lt;/id&gt;
+    &lt;activation&gt;
+      &lt;activeByDefault&gt;true&lt;/activeByDefault&gt;
+    &lt;/activation&gt;
+    &lt;dependencies&gt;
+      &lt;dependency&gt;
+        &lt;groupId&gt;org.apache.openejb&lt;/groupId&gt;
+        &lt;artifactId&gt;arquillian-tomee-embedded&lt;/artifactId&gt;
+        &lt;version&gt;1.0.0&lt;/version&gt;
+      &lt;/dependency&gt;
+    &lt;/dependencies&gt;
+  &lt;/profile&gt;
+
+  &lt;profile&gt;
+    &lt;id&gt;tomee-webprofile-remote&lt;/id&gt;
+    &lt;properties&gt;
+      &lt;tomee.version&gt;1.0.0&lt;/tomee.version&gt;
+      &lt;tomee.classifier&gt;webprofile&lt;/tomee.classifier&gt;
+    &lt;/properties&gt;
+    &lt;build&gt;
+      &lt;plugins&gt;
+        &lt;plugin&gt;
+          &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+          &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt;
+          &lt;configuration&gt;
+            &lt;systemPropertyVariables&gt;
+              &lt;tomee.classifier&gt;${tomee.classifier}&lt;/tomee.classifier&gt;
+              &lt;tomee.version&gt;${tomee.version}&lt;/tomee.version&gt;
+            &lt;/systemPropertyVariables&gt;
+          &lt;/configuration&gt;
+        &lt;/plugin&gt;
+      &lt;/plugins&gt;
+    &lt;/build&gt;
+    &lt;dependencies&gt;
+      &lt;dependency&gt;
+        &lt;groupId&gt;org.apache.openejb&lt;/groupId&gt;
+        &lt;artifactId&gt;arquillian-tomee-remote&lt;/artifactId&gt;
+        &lt;version&gt;${tomee.version}&lt;/version&gt;
+      &lt;/dependency&gt;
+      &lt;dependency&gt;
+        &lt;groupId&gt;org.apache.openejb&lt;/groupId&gt;
+        &lt;artifactId&gt;apache-tomee&lt;/artifactId&gt;
+        &lt;version&gt;${tomee.version}&lt;/version&gt;
+        &lt;classifier&gt;${tomee.classifier}&lt;/classifier&gt;
+        &lt;type&gt;zip&lt;/type&gt;
+      &lt;/dependency&gt;
+    &lt;/dependencies&gt;
+  &lt;/profile&gt;
+
+  &lt;profile&gt;
+    &lt;id&gt;tomee-plus-remote&lt;/id&gt;
+    &lt;properties&gt;
+      &lt;tomee.version&gt;1.0.0&lt;/tomee.version&gt;
+      &lt;tomee.classifier&gt;plus&lt;/tomee.classifier&gt;
+    &lt;/properties&gt;
+    &lt;build&gt;
+      &lt;plugins&gt;
+        &lt;plugin&gt;
+          &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+          &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt;
+          &lt;configuration&gt;
+            &lt;systemPropertyVariables&gt;
+              &lt;tomee.classifier&gt;${tomee.classifier}&lt;/tomee.classifier&gt;
+              &lt;tomee.version&gt;${tomee.version}&lt;/tomee.version&gt;
+            &lt;/systemPropertyVariables&gt;
+          &lt;/configuration&gt;
+        &lt;/plugin&gt;
+      &lt;/plugins&gt;
+    &lt;/build&gt;
+    &lt;dependencies&gt;
+      &lt;dependency&gt;
+        &lt;groupId&gt;org.apache.openejb&lt;/groupId&gt;
+        &lt;artifactId&gt;arquillian-tomee-remote&lt;/artifactId&gt;
+        &lt;version&gt;${tomee.version}&lt;/version&gt;
+      &lt;/dependency&gt;
+      &lt;dependency&gt;
+        &lt;groupId&gt;org.apache.openejb&lt;/groupId&gt;
+        &lt;artifactId&gt;apache-tomee&lt;/artifactId&gt;
+        &lt;version&gt;${tomee.version}&lt;/version&gt;
+        &lt;classifier&gt;${tomee.classifier}&lt;/classifier&gt;
+        &lt;type&gt;zip&lt;/type&gt;
+      &lt;/dependency&gt;
+    &lt;/dependencies&gt;
+  &lt;/profile&gt;
+
+&lt;/profiles&gt;
+</code></pre>
 
 
 

Modified: websites/staging/openejb/trunk/content/arquillian-getting-started.html
==============================================================================
--- websites/staging/openejb/trunk/content/arquillian-getting-started.html (original)
+++ websites/staging/openejb/trunk/content/arquillian-getting-started.html Thu Nov  8 21:57:01 2012
@@ -3,7 +3,7 @@
   <head>
 
     <meta charset="utf-8">
-      <title></title>
+      <title>Getting started with Arquillian and TomEE</title>
     <meta name="description" content="">
     <meta name="author" content="">
 
@@ -70,7 +70,7 @@
       };
       function twshare () {
           window.open(
-                  "https://twitter.com/intent/tweet?url="+document.URL+"&text=",
+                  "https://twitter.com/intent/tweet?url="+document.URL+"&text=Getting started with Arquillian and TomEE",
                   'Share on Twitter',
                   'width=800,height=526');
       };
@@ -136,7 +136,7 @@
 
 <div class="page-header">
 <small><a href="./index.html">Home</a></small><br>
-<h1>
+<h1>Getting started with Arquillian and TomEE
 
     <div style="float: right; position: relative; bottom: -10px; ">
         <a onclick="javascript:gpshare()" class="gp-share sprite" title="share on Google+">share [gp]</a>
@@ -147,7 +147,8 @@
 </h1>
 </div>
 
-
+<p><div class="info">
+See <a href="http://arquillian.org">Arquillian.org</a> for some great quickstart information on Arquillian itself.</div></p>
 
 
 

Modified: websites/staging/openejb/trunk/content/dev/jira/todo.html
==============================================================================
--- websites/staging/openejb/trunk/content/dev/jira/todo.html (original)
+++ websites/staging/openejb/trunk/content/dev/jira/todo.html Thu Nov  8 21:57:01 2012
@@ -191,7 +191,6 @@
 <li><a href="https://issues.apache.org/jira/browse/TOMEE-502">TOMEE-502</a>: @WebService name and serviceName ignored</li>
 <li><a href="https://issues.apache.org/jira/browse/TOMEE-491">TOMEE-491</a>: NullPointerException in TomEEAnnotationProvider.getAnnotatedClasses</li>
 <li><a href="https://issues.apache.org/jira/browse/TOMEE-465">TOMEE-465</a>: Classloader memory leak on redeployment</li>
-<li><a href="https://issues.apache.org/jira/browse/TOMEE-449">TOMEE-449</a>: Update license/notice files for all tomee webapps</li>
 <li><a href="https://issues.apache.org/jira/browse/TOMEE-438">TOMEE-438</a>: EJB JAX-RS Resources should work independently of other "views"</li>
 <li><a href="https://issues.apache.org/jira/browse/TOMEE-437">TOMEE-437</a>: @WebService deployment issue "Could not find web application context"</li>
 <li><a href="https://issues.apache.org/jira/browse/OPENEJB-1880">OPENEJB-1880</a>: atomicity violation bugs because of misusing concurrent collections</li>
@@ -577,6 +576,12 @@
 
 <h1>Trivial</h1>
 
+<p><strong>Task</strong>:</p>
+
+<ul>
+<li><a href="https://issues.apache.org/jira/browse/TOMEE-562">TOMEE-562</a>: Perhaps rename "openejb-examples-4.5.x" zip to "javaee-examples"</li>
+</ul>
+
 <p><strong>Improvement</strong>:</p>
 
 <ul>

Modified: websites/staging/openejb/trunk/content/enterprise-tomcat.html
==============================================================================
--- websites/staging/openejb/trunk/content/enterprise-tomcat.html (original)
+++ websites/staging/openejb/trunk/content/enterprise-tomcat.html Thu Nov  8 21:57:01 2012
@@ -168,7 +168,7 @@
 <li><strong>JTA</strong> - Apache Geronimo Transaction</li>
 <li><strong>Servlet</strong> - Apache Tomcat</li>
 <li><strong>Javamail</strong> - Apache Geronimo JavaMail</li>
-<li><strong>Bean Validation</strong> - Apache Bean Validation</li>
+<li><strong>Bean Validation</strong> - Apache BVal</li>
 </ul>
 
 <h2>TomEE+</h2>

Modified: websites/staging/openejb/trunk/content/sitemap.html
==============================================================================
--- websites/staging/openejb/trunk/content/sitemap.html (original)
+++ websites/staging/openejb/trunk/content/sitemap.html Thu Nov  8 21:57:01 2012
@@ -142,7 +142,8 @@
 <li><a href="app-clients-and-jndi.html">App Clients and JNDI</a></li>
 <li><a href="application-deployment-solutions.html">Deploying An Application To TomEE Or OpenEJB</a></li>
 <li><a href="application-discovery-via-the-classpath.html">Application discovery via the classpath</a></li>
-<li><a href="arquillian.html">TomEE and Arquillian</a></li>
+<li><a href="arquillian-available-adapter.html">TomEE and Arquillian</a></li>
+<li><a href="arquillian-getting-started.html">Getting started with Arquillian and TomEE</a></li>
 <li><a href="articles.html">Articles</a></li>
 <li><a href="basics---getting-things.html">Basics - Getting Things</a></li>
 <li><a href="basics---security.html">Basics - Security</a></li>
@@ -416,6 +417,7 @@
 <li><a href="tomee-logging-in-eclipse.html">How to use JULI for TomEE in WTP?</a></li>
 <li><a href="tomee-logging.html">tomee-logging.html</a></li>
 <li><a href="tomee-maven-plugin.html">TomEE Maven Plugin</a></li>
+<li><a href="tomee-mp-getting-started.html">TomEE Maven Plugin</a></li>
 <li><a href="tomee-webapp.html">About the 'tomee' webapp</a></li>
 <li><a href="transaction-annotations.html">Transaction Annotations</a></li>
 <li><a href="understanding-callbacks.html">Understanding Callbacks</a></li>

Modified: websites/staging/openejb/trunk/content/sitemap.xml
==============================================================================
--- websites/staging/openejb/trunk/content/sitemap.xml (original)
+++ websites/staging/openejb/trunk/content/sitemap.xml Thu Nov  8 21:57:01 2012
@@ -34,9 +34,6 @@
         <loc>http://tomee.apache.org/arquillian-getting-started.html</loc>
     </url>
     <url>
-        <loc>http://tomee.apache.org/arquillian.html</loc>
-    </url>
-    <url>
         <loc>http://tomee.apache.org/articles.html</loc>
     </url>
     <url>

Modified: websites/staging/openejb/trunk/content/tomcat-activemq.html
==============================================================================
--- websites/staging/openejb/trunk/content/tomcat-activemq.html (original)
+++ websites/staging/openejb/trunk/content/tomcat-activemq.html Thu Nov  8 21:57:01 2012
@@ -217,7 +217,7 @@ public class MyServet extends HttpServle
 <li><strong>JTA</strong> - Apache Geronimo Transaction</li>
 <li><strong>Servlet</strong> - Apache Tomcat</li>
 <li><strong>Javamail</strong> - Apache Geronimo JavaMail</li>
-<li><strong>Bean Validation</strong> - Apache Bean Validation</li>
+<li><strong>Bean Validation</strong> - Apache BVal</li>
 </ul>
 
 <h2>TomEE+</h2>

Modified: websites/staging/openejb/trunk/content/tomcat-cdi.html
==============================================================================
--- websites/staging/openejb/trunk/content/tomcat-cdi.html (original)
+++ websites/staging/openejb/trunk/content/tomcat-cdi.html Thu Nov  8 21:57:01 2012
@@ -220,7 +220,7 @@ spend it chasing down libraries and inte
 <li><strong>JTA</strong> - Apache Geronimo Transaction</li>
 <li><strong>Servlet</strong> - Apache Tomcat</li>
 <li><strong>Javamail</strong> - Apache Geronimo JavaMail</li>
-<li><strong>Bean Validation</strong> - Apache Bean Validation</li>
+<li><strong>Bean Validation</strong> - Apache BVal</li>
 </ul>
 
 <h2>TomEE+</h2>

Modified: websites/staging/openejb/trunk/content/tomcat-ejb.html
==============================================================================
--- websites/staging/openejb/trunk/content/tomcat-ejb.html (original)
+++ websites/staging/openejb/trunk/content/tomcat-ejb.html Thu Nov  8 21:57:01 2012
@@ -168,7 +168,7 @@
 <li><strong>JTA</strong> - Apache Geronimo Transaction</li>
 <li><strong>Servlet</strong> - Apache Tomcat</li>
 <li><strong>Javamail</strong> - Apache Geronimo JavaMail</li>
-<li><strong>Bean Validation</strong> - Apache Bean Validation</li>
+<li><strong>Bean Validation</strong> - Apache BVal</li>
 </ul>
 
 <h2>TomEE+</h2>

Modified: websites/staging/openejb/trunk/content/tomcat-java-ee.html
==============================================================================
--- websites/staging/openejb/trunk/content/tomcat-java-ee.html (original)
+++ websites/staging/openejb/trunk/content/tomcat-java-ee.html Thu Nov  8 21:57:01 2012
@@ -168,7 +168,7 @@
 <li><strong>JTA</strong> - Apache Geronimo Transaction</li>
 <li><strong>Servlet</strong> - Apache Tomcat</li>
 <li><strong>Javamail</strong> - Apache Geronimo JavaMail</li>
-<li><strong>Bean Validation</strong> - Apache Bean Validation</li>
+<li><strong>Bean Validation</strong> - Apache BVal</li>
 </ul>
 
 <h2>TomEE+</h2>

Modified: websites/staging/openejb/trunk/content/tomcat-javaee.html
==============================================================================
--- websites/staging/openejb/trunk/content/tomcat-javaee.html (original)
+++ websites/staging/openejb/trunk/content/tomcat-javaee.html Thu Nov  8 21:57:01 2012
@@ -168,7 +168,7 @@
 <li><strong>JTA</strong> - Apache Geronimo Transaction</li>
 <li><strong>Servlet</strong> - Apache Tomcat</li>
 <li><strong>Javamail</strong> - Apache Geronimo JavaMail</li>
-<li><strong>Bean Validation</strong> - Apache Bean Validation</li>
+<li><strong>Bean Validation</strong> - Apache BVal</li>
 </ul>
 
 <h2>TomEE+</h2>

Modified: websites/staging/openejb/trunk/content/tomcat-jaxrs.html
==============================================================================
--- websites/staging/openejb/trunk/content/tomcat-jaxrs.html (original)
+++ websites/staging/openejb/trunk/content/tomcat-jaxrs.html Thu Nov  8 21:57:01 2012
@@ -168,7 +168,7 @@
 <li><strong>JTA</strong> - Apache Geronimo Transaction</li>
 <li><strong>Servlet</strong> - Apache Tomcat</li>
 <li><strong>Javamail</strong> - Apache Geronimo JavaMail</li>
-<li><strong>Bean Validation</strong> - Apache Bean Validation</li>
+<li><strong>Bean Validation</strong> - Apache BVal</li>
 </ul>
 
 <h2>TomEE+</h2>

Modified: websites/staging/openejb/trunk/content/tomcat-jaxws.html
==============================================================================
--- websites/staging/openejb/trunk/content/tomcat-jaxws.html (original)
+++ websites/staging/openejb/trunk/content/tomcat-jaxws.html Thu Nov  8 21:57:01 2012
@@ -168,7 +168,7 @@
 <li><strong>JTA</strong> - Apache Geronimo Transaction</li>
 <li><strong>Servlet</strong> - Apache Tomcat</li>
 <li><strong>Javamail</strong> - Apache Geronimo JavaMail</li>
-<li><strong>Bean Validation</strong> - Apache Bean Validation</li>
+<li><strong>Bean Validation</strong> - Apache BVal</li>
 </ul>
 
 <h2>TomEE+</h2>

Modified: websites/staging/openejb/trunk/content/tomcat-jms.html
==============================================================================
--- websites/staging/openejb/trunk/content/tomcat-jms.html (original)
+++ websites/staging/openejb/trunk/content/tomcat-jms.html Thu Nov  8 21:57:01 2012
@@ -217,7 +217,7 @@ public class MyServet extends HttpServle
 <li><strong>JTA</strong> - Apache Geronimo Transaction</li>
 <li><strong>Servlet</strong> - Apache Tomcat</li>
 <li><strong>Javamail</strong> - Apache Geronimo JavaMail</li>
-<li><strong>Bean Validation</strong> - Apache Bean Validation</li>
+<li><strong>Bean Validation</strong> - Apache BVal</li>
 </ul>
 
 <h2>TomEE+</h2>

Modified: websites/staging/openejb/trunk/content/tomcat-jpa.html
==============================================================================
--- websites/staging/openejb/trunk/content/tomcat-jpa.html (original)
+++ websites/staging/openejb/trunk/content/tomcat-jpa.html Thu Nov  8 21:57:01 2012
@@ -224,7 +224,7 @@ public class MyServet extends HttpServle
 <li><strong>JTA</strong> - Apache Geronimo Transaction</li>
 <li><strong>Servlet</strong> - Apache Tomcat</li>
 <li><strong>Javamail</strong> - Apache Geronimo JavaMail</li>
-<li><strong>Bean Validation</strong> - Apache Bean Validation</li>
+<li><strong>Bean Validation</strong> - Apache BVal</li>
 </ul>
 
 <h2>TomEE+</h2>

Modified: websites/staging/openejb/trunk/content/tomcat-jsf.html
==============================================================================
--- websites/staging/openejb/trunk/content/tomcat-jsf.html (original)
+++ websites/staging/openejb/trunk/content/tomcat-jsf.html Thu Nov  8 21:57:01 2012
@@ -168,7 +168,7 @@
 <li><strong>JTA</strong> - Apache Geronimo Transaction</li>
 <li><strong>Servlet</strong> - Apache Tomcat</li>
 <li><strong>Javamail</strong> - Apache Geronimo JavaMail</li>
-<li><strong>Bean Validation</strong> - Apache Bean Validation</li>
+<li><strong>Bean Validation</strong> - Apache BVal</li>
 </ul>
 
 <h2>TomEE+</h2>

Modified: websites/staging/openejb/trunk/content/tomee-mp-getting-started.html
==============================================================================
--- websites/staging/openejb/trunk/content/tomee-mp-getting-started.html (original)
+++ websites/staging/openejb/trunk/content/tomee-mp-getting-started.html Thu Nov  8 21:57:01 2012
@@ -3,7 +3,7 @@
   <head>
 
     <meta charset="utf-8">
-      <title></title>
+      <title>TomEE Maven Plugin</title>
     <meta name="description" content="">
     <meta name="author" content="">
 
@@ -70,7 +70,7 @@
       };
       function twshare () {
           window.open(
-                  "https://twitter.com/intent/tweet?url="+document.URL+"&text=",
+                  "https://twitter.com/intent/tweet?url="+document.URL+"&text=TomEE Maven Plugin",
                   'Share on Twitter',
                   'width=800,height=526');
       };
@@ -136,7 +136,7 @@
 
 <div class="page-header">
 <small><a href="./index.html">Home</a></small><br>
-<h1>
+<h1>TomEE Maven Plugin
 
     <div style="float: right; position: relative; bottom: -10px; ">
         <a onclick="javascript:gpshare()" class="gp-share sprite" title="share on Google+">share [gp]</a>