Author: johndament
Date: Sat Apr  4 20:19:11 2015
New Revision: 1671309

URL: http://svn.apache.org/r1671309
Log:
Site checkin for project Apache DeltaSpike Documentation

Modified:
    deltaspike/site/trunk/content/documentation/test-control.html

Modified: deltaspike/site/trunk/content/documentation/test-control.html
URL: 
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/documentation/test-control.html?rev=1671309&r1=1671308&r2=1671309&view=diff
==============================================================================
--- deltaspike/site/trunk/content/documentation/test-control.html (original)
+++ deltaspike/site/trunk/content/documentation/test-control.html Sat Apr  4 
20:19:11 2015
@@ -196,7 +196,7 @@ body {
 <li><a href="#_configure_your_projects">Configure Your Projects</a>
 <ul class="sectlevel2">
 <li><a href="#_1_declare_test_control_module_dependencies">1. Declare 
Test-Control Module Dependencies</a></li>
-<li><a 
href="#_2_declare_cdi_implemetation_specific_test_control_module_dependencies">2.
 Declare CDI Implemetation-specific Test-Control Module Dependencies</a>
+<li><a href="#_2_declare_cdi_implementation_specific_dependencies">2. Declare 
CDI-implementation-specific dependencies</a>
 <ul class="sectlevel3">
 <li><a href="#_openwebbeans">OpenWebBeans</a></li>
 <li><a href="#_weld">Weld</a></li>
@@ -287,14 +287,14 @@ body {
 </div>
 </div>
 <div class="sect2">
-<h3 
id="_2_declare_cdi_implemetation_specific_test_control_module_dependencies">2. 
Declare CDI Implemetation-specific Test-Control Module Dependencies</h3>
+<h3 id="_2_declare_cdi_implementation_specific_dependencies">2. Declare 
CDI-implementation-specific dependencies</h3>
 <div class="paragraph">
-<p>The Test-Control module uses the Container-Control module, requiring a 
implementation-specific Container Control module to be declared in the project 
<code>pom.xml</code> file. Choose the appropriate option from those listed 
here.</p>
+<p>The Test-Control module depends on the Container-Control module, which 
provides adapters for several major CDI implementations. Therefore, to use 
Test-Control, declare dependency on a CDI implementation and a corresponding 
Container Control implementation in the <code>pom.xml</code>.</p>
 </div>
 <div class="sect3">
 <h4 id="_openwebbeans">OpenWebBeans</h4>
 <div class="paragraph">
-<p>If you are using OpenWebBeans, add the OpenWebBeans-specific Container 
Control module to the list of dependencies:</p>
+<p>If you are using OpenWebBeans, add an OpenWebBeans implementation and the 
OpenWebBeans-specific Container Control module to the list of dependencies:</p>
 </div>
 <div class="listingblock">
 <div class="content">
@@ -303,14 +303,21 @@ body {
      <span class="tag">&lt;artifactId&gt;</span>deltaspike-cdictrl-owb<span 
class="tag">&lt;/artifactId&gt;</span>
      <span class="tag">&lt;version&gt;</span>${deltaspike.version}<span 
class="tag">&lt;/version&gt;</span>
      <span class="tag">&lt;scope&gt;</span>test<span 
class="tag">&lt;/scope&gt;</span>
- <span class="tag">&lt;/dependency&gt;</span></code></pre>
+ <span class="tag">&lt;/dependency&gt;</span>
+
+<span class="tag">&lt;dependency&gt;</span>
+    <span class="tag">&lt;groupId&gt;</span>org.apache.openwebbeans<span 
class="tag">&lt;/groupId&gt;</span>
+    <span class="tag">&lt;artifactId&gt;</span>openwebbeans-impl<span 
class="tag">&lt;/artifactId&gt;</span>
+    <span class="tag">&lt;version&gt;</span>${owb.version}<span 
class="tag">&lt;/version&gt;</span>
+    <span class="tag">&lt;scope&gt;</span>test<span 
class="tag">&lt;/scope&gt;</span>
+<span class="tag">&lt;/dependency&gt;</span></code></pre>
 </div>
 </div>
 </div>
 <div class="sect3">
 <h4 id="_weld">Weld</h4>
 <div class="paragraph">
-<p>If you are using Weld, add the Weld-specific Container Control module to 
the list of dependencies:</p>
+<p>If you are using Weld, add a Weld implementation and the Weld-specific 
Container Control module to the list of dependencies:</p>
 </div>
 <div class="listingblock">
 <div class="content">
@@ -319,6 +326,13 @@ body {
     <span class="tag">&lt;artifactId&gt;</span>deltaspike-cdictrl-weld<span 
class="tag">&lt;/artifactId&gt;</span>
     <span class="tag">&lt;version&gt;</span>${deltaspike.version}<span 
class="tag">&lt;/version&gt;</span>
     <span class="tag">&lt;scope&gt;</span>test<span 
class="tag">&lt;/scope&gt;</span>
+<span class="tag">&lt;/dependency&gt;</span>
+
+<span class="tag">&lt;dependency&gt;</span>
+    <span class="tag">&lt;groupId&gt;</span>org.jboss.weld.se<span 
class="tag">&lt;/groupId&gt;</span>
+    <span class="tag">&lt;artifactId&gt;</span>weld-se-core<span 
class="tag">&lt;/artifactId&gt;</span>
+    <span class="tag">&lt;version&gt;</span>${weld.version}<span 
class="tag">&lt;/version&gt;</span>
+    <span class="tag">&lt;scope&gt;</span>test<span 
class="tag">&lt;/scope&gt;</span>
 <span class="tag">&lt;/dependency&gt;</span></code></pre>
 </div>
 </div>


Reply via email to