You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by bu...@apache.org on 2015/04/20 15:42:39 UTC

svn commit: r948410 - in /websites/staging/openwebbeans/trunk/content: ./ owbsetup_ee.html

Author: buildbot
Date: Mon Apr 20 13:42:39 2015
New Revision: 948410

Log:
Staging update by buildbot for openwebbeans

Modified:
    websites/staging/openwebbeans/trunk/content/   (props changed)
    websites/staging/openwebbeans/trunk/content/owbsetup_ee.html

Propchange: websites/staging/openwebbeans/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Apr 20 13:42:39 2015
@@ -1 +1 @@
-1674844
+1674846

Modified: websites/staging/openwebbeans/trunk/content/owbsetup_ee.html
==============================================================================
--- websites/staging/openwebbeans/trunk/content/owbsetup_ee.html (original)
+++ websites/staging/openwebbeans/trunk/content/owbsetup_ee.html Mon Apr 20 13:42:39 2015
@@ -78,19 +78,23 @@
 <p>OpenWebBeans in a great match for web-apps and should work well for your favorite Servlet Containers such as Jetty or Tomcat.
 To add OpenWebBeans to your Servlet Container project you need to take the following steps.</p>
 <ol>
-<li>Add dependencies accordingly to instructions below.</li>
-<li>In some cases add org.apache.webbeans.servlet.WebBeansConfigurationListener to web.xml as a listener</li>
+<li>Add <a href="/download.html#required-parts">dependencies</a> accordingly to instructions below.</li>
+<li>In some cases add <a href="/download.html#configuring-owb">org.apache.webbeans.servlet.WebBeansConfigurationListener</a> to web.xml as a listener</li>
 <li>Done! Congratulations.</li>
 </ol>
 <h3 id="adding-required-jars-and-plugins-to-your-project">Adding required jars and plugins to your project</h3>
-<p>You can add OpenWebBeans to your project manually by adding jars or with Apache Maven. How to download is explained here: <a href="/download.html">download page</a>.</p>
-<p>For JavaEE you always start with:</p>
+<p>You can add OpenWebBeans to your project manually by adding jars or with Apache Maven. How to download is explained here: <a href="/download.html">download page</a>. 
+The binary distributions include all the jars you need and the download page lists all the <a href="download.html#maven-dep">maven dependencies</a>. 
+But since OpenWebBeans is modular you should read below so you know what to add. </p>
+<h3 id="required-required-parts">Required (#required-parts)</h3>
+<p>For Servlet Container projects such as Tomcat and Jetty you always start with:</p>
 <ul>
 <li><strong><a href="/download.html#required-version">openwebbeans-spi</a></strong></li>
 <li><strong><a href="/download.html#required-version">openwebbeans-impl</a></strong></li>
 <li><strong><a href="/download.html#plugins-version">openwebbeans-web</a></strong></li>
 </ul>
-<p>Then you add from the following plugins accordingly to your needs:</p>
+<h3 id="plugins">Plugins</h3>
+<p>The following plugins are very useful if you need JSF, expression language (el) etc. Add accordingly to your needs.</p>
 <ul>
 <li><strong><a href="/download.html#plugins-version">openwebbeans-el11</a></strong></li>
 <li><strong><a href="/download.html#plugins-version">openwebbeans-el22</a></strong></li>
@@ -113,7 +117,7 @@ For JSF support add JSF plugin according
 <ul>
 <li>tomcat6 or tomcat7</li>
 </ul>
-<h3 id="bootstrapping-openwebbeans">Bootstrapping OpenWebBeans</h3>
+<h3 id="bootstrapping-openwebbeans-configuring-owb">Bootstrapping OpenWebBeans (#configuring-owb)</h3>
 <p>Simply put the following listener in web.xml: </p>
 <div class="codehilite"><pre>    <span class="nt">&lt;listener&gt;</span>
         <span class="nt">&lt;listener-class&gt;</span>org.apache.webbeans.servlet.WebBeansConfigurationListener<span class="nt">&lt;/listener-class&gt;</span>