diff --git a/provider/notification-ibm/pom.xml b/provider/notification-ibm/pom.xml index f2ce87b2074d4f0313d4528c878108740e64f056..c60a6961a78a9f856a43176aaa62bc1822c33e43 100644 --- a/provider/notification-ibm/pom.xml +++ b/provider/notification-ibm/pom.xml @@ -32,6 +32,8 @@ <java.version>8</java.version> <maven.compiler.target>${java.version}</maven.compiler.target> <maven.compiler.source>${java.version}</maven.compiler.source> + <undertow-websockets-jsr.version>2.2.10.Final</undertow-websockets-jsr.version> + <jackson-dataformat-cbor.version>2.13.0</jackson-dataformat-cbor.version> </properties> <dependencies> @@ -54,8 +56,17 @@ <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.dataformat</groupId> + <artifactId>jackson-dataformat-cbor</artifactId> + </exclusion> </exclusions> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.dataformat</groupId> + <artifactId>jackson-dataformat-cbor</artifactId> + <version>${jackson-dataformat-cbor.version}</version> + </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> @@ -75,6 +86,30 @@ <groupId>io.netty</groupId> <artifactId>netty-codec</artifactId> </exclusion> + <exclusion> + <groupId>io.undertow</groupId> + <artifactId>undertow-websockets-jsr</artifactId> + </exclusion> + <exclusion> + <groupId>io.undertow</groupId> + <artifactId>undertow-core</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>io.undertow</groupId> + <artifactId>undertow-core</artifactId> + <version>${undertow-websockets-jsr.version}</version> + </dependency> + <dependency> + <groupId>io.undertow</groupId> + <artifactId>undertow-websockets-jsr</artifactId> + <version>${undertow-websockets-jsr.version}</version> + <exclusions> + <exclusion> + <groupId>io.undertow</groupId> + <artifactId>undertow-core</artifactId> + </exclusion> </exclusions> </dependency> <dependency>