[maven-release-plugin] copy for tag openwebbeans-4.1.0
[maven-release-plugin] prepare release openwebbeans-4.1.0
31 files changed
tree: caa14e93ab5fe9d3cc8457bd8ec042ce3e743a13
  1. .github/
  2. atinject-tck/
  3. bom/
  4. distribution/
  5. readme/
  6. samples/
  7. webbeans-arquillian/
  8. webbeans-ee/
  9. webbeans-ee-common/
  10. webbeans-ejb/
  11. webbeans-el22/
  12. webbeans-gradle/
  13. webbeans-impl/
  14. webbeans-jetty9/
  15. webbeans-jms/
  16. webbeans-jsf/
  17. webbeans-junit5/
  18. webbeans-osgi/
  19. webbeans-porting/
  20. webbeans-se/
  21. webbeans-slf4j/
  22. webbeans-spi/
  23. webbeans-tck/
  24. webbeans-tomcat/
  25. webbeans-web/
  26. .asf.yaml
  27. .gitignore
  28. doap_OpenWebBeans.rdf
  29. KEYS
  30. LICENSE
  31. NOTICE
  32. pom.xml
  33. README.md
README.md

Maven Central License Build Status Build Status ASF

Apache OpenWebBeans (OWB) - Apache's implementation of the Contexts and Dependency Injection (CDI) / Jakarta CDI specification

Branches

main

Jakarta CDI 4.1 implementation (Jakarta EE 11), requires Java 17+.

owb_4.0.x

owb_4.0.x
Jakarta CDI 4.0 implementation (Jakarta EE 10), requires Java 11+.

owb_2.0.x

owb_2.0.x
CDI 2.0 (JSR-365) implementation (Java EE 8), requires Java 8+.

owb_1.7.x

owb_1.7.x
CDI 1.2 (JSR-346) implementation (Java EE 7), requires Java 7+.

owb_1.2.x

owb_1.2.x
CDI 1.0 (JSR-299) implementation (Java EE 6), requires Java 5+.

Minimum Requirements (main)

  • Java 17+
  • CDI 4.1 (Jakarta CDI / Jakarta EE 11)
  • TCK compliant

Installation

mvn clean install

Usage

Core Dependency

<dependency>
    <groupId>org.apache.openwebbeans</groupId>
    <artifactId>openwebbeans-impl</artifactId>
    <version>${owb.version}</version>
</dependency>
<dependency>
    <groupId>org.apache.openwebbeans</groupId>
    <artifactId>openwebbeans-spi</artifactId>
    <version>${owb.version}</version>
</dependency>

Web / Servlet Integration

<dependency>
    <groupId>org.apache.openwebbeans</groupId>
    <artifactId>openwebbeans-web</artifactId>
    <version>${owb.version}</version>
</dependency>

JSF Integration

<dependency>
    <groupId>org.apache.openwebbeans</groupId>
    <artifactId>openwebbeans-jsf</artifactId>
    <version>${owb.version}</version>
</dependency>

Tomcat Integration

<dependency>
    <groupId>org.apache.openwebbeans</groupId>
    <artifactId>openwebbeans-tomcat</artifactId>
    <version>${owb.version}</version>
</dependency>

Arquillian Integration (Testing)

<dependency>
    <groupId>org.apache.openwebbeans</groupId>
    <artifactId>openwebbeans-arquillian</artifactId>
    <version>${owb.version}</version>
    <scope>test</scope>
</dependency>

JUnit 5 Integration (Testing)

<dependency>
    <groupId>org.apache.openwebbeans</groupId>
    <artifactId>openwebbeans-junit5</artifactId>
    <version>${owb.version}</version>
    <scope>test</scope>
</dependency>

Modules

OWB is modularly built — a full CDI container in under 1 MB total. Available modules include:

  • openwebbeans-impl — core CDI container implementation
  • openwebbeans-spi — SPI interfaces
  • openwebbeans-web — Servlet / web container integration
  • openwebbeans-jsf — Jakarta Faces integration
  • openwebbeans-tomcat — Apache Tomcat integration
  • openwebbeans-jetty9 — Jetty 9 integration
  • openwebbeans-ejb — EJB integration
  • openwebbeans-jms — JMS integration
  • openwebbeans-el22 — EL 2.2+ integration
  • openwebbeans-osgi — OSGi environment support
  • openwebbeans-se — Java SE standalone support
  • openwebbeans-slf4j — SLF4J logging bridge
  • openwebbeans-junit5 — JUnit 5 test support
  • openwebbeans-arquillian — Arquillian test support
  • openwebbeans-gradle — Gradle build support

Java SE Usage

OWB can run as a standalone CDI container in plain Java SE applications (Swing, JavaFX, Eclipse RCP, etc.) without any application server or servlet container.

More Information

Please visit https://openwebbeans.apache.org for full documentation, examples, and release notes.

Issue tracker: https://issues.apache.org/jira/browse/OWB