diff --git a/NOTICE b/NOTICE
index 5d438117e7bd9fba5b5556277fcf4d0cfc179c02..a4cf92effb7ff850065d0484b1dbdd5517d65f94 100644
--- a/NOTICE
+++ b/NOTICE
@@ -383,6 +383,13 @@ The following software have components provided under the terms of this license:
 - Spring Core (from http://www.springframework.org, https://github.com/spring-projects/spring-framework, https://repo1.maven.org/maven2/org/springframework/spring-core)
 - ThreeTen backport (from https://github.com/ThreeTen/threetenbp, https://www.threeten.org/threetenbp)
 
+========================================================================
+BSL-1.0
+========================================================================
+The following software have components provided under the terms of this license:
+
+- Jackson-core (from http://wiki.fasterxml.com/JacksonHome, https://github.com/FasterXML/jackson-core)
+
 ========================================================================
 Beerware
 ========================================================================
@@ -631,6 +638,7 @@ The following software have components provided under the terms of this license:
 - Checker Qual (from https://checkerframework.org)
 - ClassGraph (from https://github.com/classgraph/classgraph)
 - JUL to SLF4J bridge (from http://www.slf4j.org)
+- Jackson-core (from http://wiki.fasterxml.com/JacksonHome, https://github.com/FasterXML/jackson-core)
 - Jakarta XML Binding API (from https://repo1.maven.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api, https://repo1.maven.org/maven2/org/jboss/spec/javax/xml/bind/jboss-jaxb-api_2.3_spec)
 - Java Client Runtime for AutoRest (from https://github.com/Azure/autorest-clientruntime-for-java)
 - Java JWT (from http://www.jwt.io, https://github.com/auth0/java-jwt)
diff --git a/notification-core/pom.xml b/notification-core/pom.xml
index 5ab7bd13bd948f76062f5f6afa347e341f109010..25bbb293e0fc4aaf4218442c0c8b636ee54697b1 100644
--- a/notification-core/pom.xml
+++ b/notification-core/pom.xml
@@ -42,6 +42,7 @@
         <log4j.version>2.17.1</log4j.version>
         <google-oauth-client.version>1.33.3</google-oauth-client.version>
         <google-api-client.version>1.33.2</google-api-client.version>
+        <xnio-api.version>3.8.8.Final</xnio-api.version>
     </properties>
 
     <dependencyManagement>
@@ -58,6 +59,11 @@
                 <artifactId>woodstox-core</artifactId>
                 <version>${woodstox-core.version}</version>
             </dependency>
+            <dependency>
+                <groupId>org.jboss.xnio</groupId>
+                <artifactId>xnio-api</artifactId>
+                <version>${xnio-api.version}</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
diff --git a/pom.xml b/pom.xml
index 1c8565baa144be7409ed1aba920dafb3a5069a2b..0c0a28b3b754199dd4c9a994a1ee91530305538b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -69,17 +69,17 @@
 		<dependency>
 				<groupId>com.fasterxml.jackson.core</groupId>
 				<artifactId>jackson-core</artifactId>
-				<version>2.13.4</version>
+				<version>2.14.1</version>
 			</dependency>
 			<dependency>
 				<groupId>com.fasterxml.jackson.core</groupId>
 				<artifactId>jackson-databind</artifactId>
-				<version>2.13.4</version>
+				<version>2.14.1</version>
 			</dependency>
 			<dependency>
 				<groupId>com.fasterxml.jackson.core</groupId>
 				<artifactId>jackson-annotations</artifactId>
-				<version>2.13.4</version>
+				<version>2.14.1</version>
 			</dependency>
 			
 			<dependency>
diff --git a/provider/notification-azure/pom.xml b/provider/notification-azure/pom.xml
index 2f567861c353f3a3ab8dcd48d85d847f79f580fc..1378472c4d5daee602900169cb340c57eafbbe33 100644
--- a/provider/notification-azure/pom.xml
+++ b/provider/notification-azure/pom.xml
@@ -48,11 +48,11 @@
     <reactor-core.version>3.4.6</reactor-core.version>
     <reactor-netty.version>1.0.7</reactor-netty.version>
     <oauth2-oidc-sdk.version>6.0</oauth2-oidc-sdk.version>
-    <woodstox-core.version>5.3.0</woodstox-core.version>
+    <woodstox-core.version>5.4.0</woodstox-core.version>
     <spring-webmvc.version>5.3.22</spring-webmvc.version>
-    <os-core-common.version>0.19.0-rc6</os-core-common.version>
     <undertow.version>2.2.19.Final</undertow.version>
     <spring-boot-maven-plugin.version>2.7.6</spring-boot-maven-plugin.version>
+    <xnio-api.version>3.8.8.Final</xnio-api.version>
   </properties>
 
   <dependencyManagement>
@@ -115,6 +115,11 @@
         <artifactId>undertow-websockets-jsr</artifactId>
         <version>${undertow.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.jboss.xnio</groupId>
+        <artifactId>xnio-api</artifactId>
+        <version>${xnio-api.version}</version>
+      </dependency>
     </dependencies>
   </dependencyManagement>