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 2017/04/19 14:21:13 UTC

svn commit: r1791922 - in /openwebbeans/cms-site/trunk/content: news.mdtext testing_arquillian.mdtext

Author: struberg
Date: Wed Apr 19 14:21:13 2017
New Revision: 1791922

URL: http://svn.apache.org/viewvc?rev=1791922&view=rev
Log:
owb 1.7.3 as news

Modified:
    openwebbeans/cms-site/trunk/content/news.mdtext
    openwebbeans/cms-site/trunk/content/testing_arquillian.mdtext

Modified: openwebbeans/cms-site/trunk/content/news.mdtext
URL: http://svn.apache.org/viewvc/openwebbeans/cms-site/trunk/content/news.mdtext?rev=1791922&r1=1791921&r2=1791922&view=diff
==============================================================================
--- openwebbeans/cms-site/trunk/content/news.mdtext (original)
+++ openwebbeans/cms-site/trunk/content/news.mdtext Wed Apr 19 14:21:13 2017
@@ -19,6 +19,7 @@ Notice:    Licensed to the Apache Softwa
 
 # News
 
+* 2017-04-19 OpenWebBeans-1.7.3 has been released - this is a CDI-1.2 bugfix release
 * 2017-02-19 OpenWebBeans-1.7.2 has been released - this is a CDI-1.2 bugfix release
 * 2012-12-12 OpenWebBeans-1.1.7 has been released - this is a CDI-1.0 bugfix release
 * 2012-12-03 We switched CDI-1.0 development to the owb_1.1.x branch and started with implementing CDI-1.1 in trunk

Modified: openwebbeans/cms-site/trunk/content/testing_arquillian.mdtext
URL: http://svn.apache.org/viewvc/openwebbeans/cms-site/trunk/content/testing_arquillian.mdtext?rev=1791922&r1=1791921&r2=1791922&view=diff
==============================================================================
--- openwebbeans/cms-site/trunk/content/testing_arquillian.mdtext (original)
+++ openwebbeans/cms-site/trunk/content/testing_arquillian.mdtext Wed Apr 19 14:21:13 2017
@@ -1,58 +1,58 @@
-Title: OpenWebBeans CdiCtrl 
-Notice:    Licensed to the Apache Software Foundation (ASF) under one
-           or more contributor license agreements.  See the NOTICE file
-           distributed with this work for additional information
-           regarding copyright ownership.  The ASF licenses this file
-           to you under the Apache License, Version 2.0 (the
-           "License"); you may not use this file except in compliance
-           with the License.  You may obtain a copy of the License at
-           .
-             http://www.apache.org/licenses/LICENSE-2.0
-           .
-           Unless required by applicable law or agreed to in writing,
-           software distributed under the License is distributed on an
-           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-           KIND, either express or implied.  See the License for the
-           specific language governing permissions and limitations
-           under the License.
-
-# Testing your application with JBoss Arquillian
-## About Arquillian
-
-[JBoss Arquillian][1] is a very popular testing framework for complex use cases. You write your test with 
-JUnit or TestNG but with the extended possibility to have fine grained control over the managed environment. 
-Basically Arquillian allows you to create artificial war / jar files with the exact content you need for your test. 
-Many powerful features are available in extensions. One such extension is ``Arquillian Drone`` 
-that allows you to test with a web-based user interface and ``Arquillian Performance`` is another one
-that offers rich functionality aimed at performance testing.
-
-One of the main principles of ``Arquillian`` is to be portable and thus using it to test applications that 
-leverage OpenWebBeans is fully supported.
-  
-To author a new ``Arquillian`` test you follow this rough flow:
-
-  - Create a new JUnit / TestNG test class
-  - Annotate the class with ``@RunWith(Arquillian.class)``
-  - Create a new deployment and include exactly what you need for that test. 
-It's important that you add beans.xml to your test path and include it in the deployment.
-  - Use @Inject (from the usual package) to obtain instances that you included in the deployment
-  - Perform assertions on injected instances "normally". 
-
-## Testing our Java SE / Servlet container project
-The best way to get started with ``Arquillian`` is to follow the official [Getting Started][2] guide. However for testing 
-OpenWebBeans standalone you will need to use the following adapter:
-
-    <dependency>
-       <groupId>org.apache.openwebbeans.arquillian</groupId>
-       <artifactId>owb-arquillian-parent</artifactId>
-       <version>${owb.version}</version>
-    </dependency>
-
-## Testing your Java EE project
-
-In addition to the adapter described above TomEE offers serveral adapters for working with TomEE. For more information visit [TomEE: Available Arquillian Adapters][3].
-            
-
-  [1]: http://arquillian.org/
-  [2]: http://arquillian.org/guides/getting_started/
+Title: OpenWebBeans CdiCtrl 
+Notice:    Licensed to the Apache Software Foundation (ASF) under one
+           or more contributor license agreements.  See the NOTICE file
+           distributed with this work for additional information
+           regarding copyright ownership.  The ASF licenses this file
+           to you under the Apache License, Version 2.0 (the
+           "License"); you may not use this file except in compliance
+           with the License.  You may obtain a copy of the License at
+           .
+             http://www.apache.org/licenses/LICENSE-2.0
+           .
+           Unless required by applicable law or agreed to in writing,
+           software distributed under the License is distributed on an
+           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+           KIND, either express or implied.  See the License for the
+           specific language governing permissions and limitations
+           under the License.
+
+# Testing your application with JBoss Arquillian
+## About Arquillian
+
+[JBoss Arquillian][1] is a very popular testing framework for complex use cases. You write your test with 
+JUnit or TestNG but with the extended possibility to have fine grained control over the managed environment. 
+Basically Arquillian allows you to create artificial war / jar files with the exact content you need for your test. 
+Many powerful features are available in extensions. One such extension is ``Arquillian Drone`` 
+that allows you to test with a web-based user interface and ``Arquillian Performance`` is another one
+that offers rich functionality aimed at performance testing.
+
+One of the main principles of ``Arquillian`` is to be portable and thus using it to test applications that 
+leverage OpenWebBeans is fully supported.
+  
+To author a new ``Arquillian`` test you follow this rough flow:
+
+  - Create a new JUnit / TestNG test class
+  - Annotate the class with ``@RunWith(Arquillian.class)``
+  - Create a new deployment and include exactly what you need for that test. 
+It's important that you add beans.xml to your test path and include it in the deployment.
+  - Use @Inject (from the usual package) to obtain instances that you included in the deployment
+  - Perform assertions on injected instances "normally". 
+
+## Testing our Java SE / Servlet container project
+The best way to get started with ``Arquillian`` is to follow the official [Getting Started][2] guide. However for testing 
+OpenWebBeans standalone you will need to use the following adapter:
+
+    <dependency>
+       <groupId>org.apache.openwebbeans.arquillian</groupId>
+       <artifactId>owb-arquillian-parent</artifactId>
+       <version>${owb.version}</version>
+    </dependency>
+
+## Testing your Java EE project
+
+In addition to the adapter described above TomEE offers serveral adapters for working with TomEE. For more information visit [TomEE: Available Arquillian Adapters][3].
+            
+
+  [1]: http://arquillian.org/
+  [2]: http://arquillian.org/guides/getting_started/
   [3]: http://tomee.apache.org/arquillian-available-adapters.html
\ No newline at end of file