You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by st...@apache.org on 2013/10/04 15:12:16 UTC

svn commit: r1529155 - /openwebbeans/cms-site/trunk/content/owbsetup_se.mdtext

Author: struberg
Date: Fri Oct  4 13:12:16 2013
New Revision: 1529155

URL: http://svn.apache.org/r1529155
Log:
add api jars reference and reformatting

Modified:
    openwebbeans/cms-site/trunk/content/owbsetup_se.mdtext

Modified: openwebbeans/cms-site/trunk/content/owbsetup_se.mdtext
URL: http://svn.apache.org/viewvc/openwebbeans/cms-site/trunk/content/owbsetup_se.mdtext?rev=1529155&r1=1529154&r2=1529155&view=diff
==============================================================================
--- openwebbeans/cms-site/trunk/content/owbsetup_se.mdtext (original)
+++ openwebbeans/cms-site/trunk/content/owbsetup_se.mdtext Fri Oct  4 13:12:16 2013
@@ -27,24 +27,50 @@ To add OpenWebBeans to your javaSE proje
 
 ###Adding required jars to your project
 
-You can add OpenWebBeans to your project manually by adding jars or with Apache Maven. How to download is explained here: [download page][1].
+You can add OpenWebBeans to your project manually by adding jars or with Apache Maven. 
+How to download is explained here: [download page][1].
 
 
 For JavaSE you need:
 
-  - **spi**
-  - **impl**
+  - **openwebbeans-spi.jar**
+  - **openwebbeans-impl.jar**
 
+Those two parts of OpenWebBeans are what you could call "system core".
+These are the only OWB artifacts you need for JavaSE capabilities and 
+for the time being the existing plugins basically just adds JavaEE capabilities. 
 
-Those two parts of OpenWeBeans are what you could call "system core". They are the only OWB artifacts you need for JavaSE capabilities and for the time being the existing plugins basically just adds JavaEE capabilities. 
-After you have added the jars described above to your project accordingly to the download page and added them to your projects classpath.
+
+You also need to add some spec API jars for the CDI, atinject and interceptors 
+specifications.
+
+  - **geronimo-jcdi_1.0_spec.jar**
+  - **geronimo-atinject_1.0_spec.jar**
+  - **geronimo-interceptor_1.1_spec.jar**
+
+ 
+After you have added the jars described above to your project accordingly 
+to the download page and added them to your projects classpath.
 
 ###Bootstrapping OpenWebBeans
 
-For now we recommend two ways for booting up the OpenWebBeans container: [**Deltaspike CdiCtrl**][2] or booting it yourself in i.e. a standard main method. For most projects Deltaspike CdiCtrl will be the smoother choice. Going native and booting it yourself could however be useful if you need full control to do advanced things. Deltaspike CdiCtrl is documented in the link provided above.
+For now we recommend two ways for booting up the OpenWebBeans container: 
+[**Deltaspike CdiCtrl**][2] or booting it yourself in i.e. a standard main method. 
+
+#### Option number one - Apache DeltaSpike CdiCtrl
+
+Apache DeltaSpike is a set of portable CDI Extensions. It contains a module which allows
+to control various CDI-Containers without having to change your own code. It contains an API
+and multiple implementations for a few CDI Containers.
+
+For most projects [**Deltaspike CdiCtrl**][2] will be the smoother choice to boot your project
+in JavaSE . 
+
 
+#### Option number two - booting yourself**
 
-**Option number two - booting yourself**
+Going native and booting Apache OpenWebBeans yourself could however be useful if you need full control 
+to do advanced things. 
 
     :::java
     import org.apache.deltaspike.cdise.api.CdiContainer;