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
. The dependencies you can use are listed at the bottom of this page: Maven Dependencies.
The GPG keys in the OpenWebBeans KEYS file to validate our releases. Read more about How to verify downloaded files
OWB-2.0.x implements the CDI-2.0 (JSR-365) specification. It uses a shaded version of ASM-8 (Java11 support) for building our proxies and requires JavaSE 8 as minimum version.
The source distribution contains all OpenWebBeans source code. Binaries are available via the Apache Maven Central repository.
OWB-1.7.x implements the full CDI-1.2 specification. It uses a shaded version of ASM-5 for building our proxies and needs JavaSE 7 as minimum version.
The binary distribution contains all OpenWebBeans modules.
Should you want to build any of the above binaries, this source bundle is the right one and covers them all.
OWB-1.2.x implements the CDI-1.0 specification and internally already CDI-1.1. It uses a shaded version of ASM-5 for building our proxies and needs JavaSE 5 as minimum version.
The binary distribution contains all OpenWebBeans modules.
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. They are all contained in the binary distribution. We will try to add complete lists of this in the future, meanwhile please ask on the list or maybe look at the pom.xml for the modules you want to use.
Should you want to build any of the above binaries, this source bundle is the right one covers them all.
Older versions of Apache OpenWebBeans can be found in our archives
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-atinject_1.0_spec</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jcdi_2.0_spec</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-interceptor_1.2_spec</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-annotation_1.3_spec</artifactId>
<version>1.3</version>
</dependency>
Note that you should set the seope of those dependencies to either provided
or compile
depending on whether your environment already provide them or not.
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-atinject_1.0_spec</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jcdi_1.1_spec</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-interceptor_1.2_spec</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-annotation_1.2_spec</artifactId>
<version>1.0</version>
</dependency>
<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>
Web Module (Required for web-apps)
<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>
EL 2.2 Module
<dependency>
<groupId>org.apache.openwebbeans</groupId>
<artifactId>openwebbeans-el22</artifactId>
<version>${owb.version}</version>
<scope>compile</scope>
</dependency>
Tomcat 7 Module
(also works for Tomcat-8, Tomcat-8.5 and Tomcat-9)
<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>