You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@openwebbeans.apache.org by Karl Kildén <an...@apache.org> on 2013/10/03 10:53:11 UTC

CMS diff: Source

Clone URL (Committers only):
https://cms.apache.org/redirect?new=anonymous;action=diff;uri=http://openwebbeans.apache.org/download.mdtext

Karl Kildén

Index: trunk/content/download.mdtext
===================================================================
--- trunk/content/download.mdtext	(revision 1528692)
+++ trunk/content/download.mdtext	(working copy)
@@ -20,7 +20,7 @@
 
 This page contains download links to the latest Apache Openwebbeans releases.
 
-All maven artifacts are available in the Maven.Central repository with the groupId ``org.apache.openwebbeans``.
+All maven artifacts are available in the Maven.Central repository with the groupId ``org.apache.openwebbeans``. The dependencies you can use are listed at the [bottom](#Maven Dependencies) of the page.
 
 
 ## OWB-1.2.x
@@ -38,6 +38,24 @@
 * [openwebbeans-distribution-1.2.0-binary.tar.gz](http://www.apache.org/dyn/closer.cgi/openwebbeans/1.2.0/openwebbeans-distribution-1.2.0-binary.tar.gz)
 * [openwebbeans-distribution-1.2.0-binary.tar.gz.asc](http://www.apache.org/dyn/closer.cgi/openwebbeans/1.2.0/openwebbeans-distribution-1.2.0-binary.tar.gz.asc)
 
+
+**Hint:** OpenWeBeans has dependencies to several other jars and just adding our jars manually would lead to ClassNotFoundException if you choose not to use maven. The jars you need depends on what modules you include. We will try to add complete lists of this in the future, meanwhile you have to figure it out by trial and error and maybe by looking at the pom.xml for the modules you want to use: OpenWebBeans poms. For example if you use OWB for a web based project with JSF 2.0 and Tomcat 7 the list is as follows:
+
+- geronimo-interceptor1.1spec-1.0.jar
+- geronimo-atinject1.0spec-1.0.jar
+- geronimo-jcdi1.0spec-1.0.jar
+- javax.inject-1.jar
+- scannotation-1.0.2_1.jar
+- xbean-finder-shaded-3.13.jar
+- asm-3.3.1.jar 
+- openwebbeans-el10-1.2.0.jar
+- openwebbeans-impl-1.2.0.jar
+- openwebbeans-spi-1.2.0.jar
+- openwebbeans-jsf-1.2.0.jar
+- openwebbeans-tomcat7-1.2.0.jar
+- openwebbeans-web-1.2.0.jar
+
+
 #### Source
 Should you want to build any of the above binaries, this source bundle is the right one covers them all.
 
@@ -66,4 +84,113 @@
 want to build any of the above binaries, this source bundle is the right one covers them all.
 
 * [openwebbeans-1.1.8-source-release.zip](http://www.apache.org/dyn/closer.cgi/openwebbeans/1.1.8/openwebbeans-1.1.8-source-release.zip)
-* [openwebbeans-1.1.8-source-release.zip.asc](http://www.apache.org/dyn/closer.cgi/openwebbeans/1.1.8/openwebbeans-1.1.8-source-release.zip.asc)
\ No newline at end of file
+* [openwebbeans-1.1.8-source-release.zip.asc](http://www.apache.org/dyn/closer.cgi/openwebbeans/1.1.8/openwebbeans-1.1.8-source-release.zip.asc)
+
+
+----------
+
+
+###Maven Dependencies###
+
+#### Required
+
+    <dependency>
+        <groupId>org.apache.openwebbeans</groupId>
+        <artifactId>openwebbeans-spi</artifactId>
+        <version>${owb.version}</version>
+        <scope>compile</scope>
+    </dependency>
+
+    <dependency>
+        <groupId>org.apache.openwebbeans</groupId>
+        <artifactId>openwebbeans-impl</artifactId>
+        <version>${owb.version}</version>
+        <scope>compile</scope>
+    </dependency>
+
+#### Plugins
+  
+**Web Module**
+
+    <dependency>
+        <groupId>org.apache.openwebbeans</groupId>
+        <artifactId>openwebbeans-web</artifactId>
+        <version>${owb.version}</version>
+        <scope>compile</scope>
+    </dependency>
+     
+
+**JSF 2.X Module**
+
+    <dependency>
+        <groupId>org.apache.openwebbeans</groupId>
+        <artifactId>openwebbeans-jsf</artifactId>
+        <version>${owb.version}</version>
+        <scope>compile</scope>
+    </dependency>  
+    
+**JSF 1.2 Module**
+
+    <dependency>
+        <groupId>org.apache.openwebbeans</groupId>
+        <artifactId>openwebbeans-jsf12</artifactId>
+        <version>${owb.version}</version>
+        <scope>compile</scope>
+    </dependency> 
+    
+**EL 2.2 Module**
+
+    <dependency>
+        <groupId>org.apache.openwebbeans</groupId>
+        <artifactId>openwebbeans-el22</artifactId>
+        <version>${owb.version}</version>
+        <scope>compile</scope>
+    </dependency>
+    
+#### EL 1.1 Module
+
+    <dependency>
+        <groupId>org.apache.openwebbeans</groupId>
+        <artifactId>openwebbeans-el11</artifactId>
+        <version>${owb.version}</version>
+        <scope>compile</scope>
+    </dependency>
+    
+    
+
+**Tomcat 6 Module**
+
+    <dependency>
+        <groupId>org.apache.openwebbeans</groupId>
+        <artifactId>openwebbeans-tomcat6</artifactId>
+        <version>${owb.version}</version>
+        <scope>compile</scope>
+    </dependency>
+    
+**Tomcat 7 Module**
+
+    <dependency>
+        <groupId>org.apache.openwebbeans</groupId>
+        <artifactId>openwebbeans-tomcat7</artifactId>
+        <version>${owb.version}</version>
+        <scope>compile</scope>
+    </dependency>  
+    
+**JMS Module**
+
+    <dependency>
+        <groupId>org.apache.openwebbeans</groupId>
+        <artifactId>openwebbeans-jms</artifactId>
+        <version>${owb.version}</version>
+        <scope>compile</scope>
+    </dependency>  
+        
+
+**Arquillian Module**
+
+    <dependency>
+        <groupId>org.apache.openwebbeans</groupId>
+        <artifactId>openwebbeans-arquillian</artifactId>
+        <version>${owb.version}</version>
+        <scope>compile</scope>
+    </dependency>
\ No newline at end of file