org.apache.maven.plugins
diff --git a/proxy-wasm-java-host/src/main/java/io/roastedroot/proxywasm/PluginFactory.java b/proxy-wasm-java-host/src/main/java/io/roastedroot/proxywasm/PluginFactory.java
index 06ecfd3..fd241df 100644
--- a/proxy-wasm-java-host/src/main/java/io/roastedroot/proxywasm/PluginFactory.java
+++ b/proxy-wasm-java-host/src/main/java/io/roastedroot/proxywasm/PluginFactory.java
@@ -26,7 +26,7 @@ public interface PluginFactory {
/**
* Creates and returns a new {@link Plugin} instance.
* Implementations are responsible for all necessary setup, including potentially
- * loading the WASM module and configuring it using {@link Plugin#builder(com.dylibso.chicory.wasm.WasmModule)}.
+ * loading the WASM module and configuring it using {@link PluginFactory#builder(com.dylibso.chicory.wasm.WasmModule)}.
*
* @return A newly created {@link Plugin} instance.
* @throws Exception If any error occurs during plugin creation (e.g., file loading, WASM instantiation,
diff --git a/proxy-wasm-java-host/src/main/java/io/roastedroot/proxywasm/StartException.java b/proxy-wasm-java-host/src/main/java/io/roastedroot/proxywasm/StartException.java
index 77b8315..e77761e 100644
--- a/proxy-wasm-java-host/src/main/java/io/roastedroot/proxywasm/StartException.java
+++ b/proxy-wasm-java-host/src/main/java/io/roastedroot/proxywasm/StartException.java
@@ -3,7 +3,7 @@
/**
* Exception thrown when an error occurs during the initialization or startup phase of a Proxy-WASM plugin.
*
- * This typically happens during the execution of the {@link Plugin.Builder#build()} method,
+ *
This typically happens during the execution of the {@link PluginFactory.Builder#build()} method,
* encompassing issues such as WASM module instantiation failures, errors within the WASM
* {@code _start} function, or failures during the initial {@code proxy_on_vm_start} or
* {@code proxy_on_configure} calls within the plugin.
diff --git a/proxy-wasm-jaxrs/src/main/resources/META-INF/beans.xml b/proxy-wasm-jaxrs/src/main/resources/META-INF/beans.xml
index e1dbba5..6cb702e 100644
--- a/proxy-wasm-jaxrs/src/main/resources/META-INF/beans.xml
+++ b/proxy-wasm-jaxrs/src/main/resources/META-INF/beans.xml
@@ -2,7 +2,7 @@
+ version="4.0" bean-discovery-mode="annotated">
io.roastedroot.proxywasm.jaxrs.cdi.ServerAdaptor