Skip to content
Snippets Groups Projects
Commit 05ad2886 authored by Yauheni Lesnikau's avatar Yauheni Lesnikau
Browse files

Merge branch 'whitesource-issues' into 'master'

fix whitesource issues for azure module

See merge request !332
parents e2b4f08a b68d842f
No related branches found
No related tags found
1 merge request!332fix whitesource issues for azure module
Pipeline #163028 failed
...@@ -383,6 +383,13 @@ The following software have components provided under the terms of this license: ...@@ -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) - 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) - 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 Beerware
======================================================================== ========================================================================
...@@ -631,6 +638,7 @@ The following software have components provided under the terms of this license: ...@@ -631,6 +638,7 @@ The following software have components provided under the terms of this license:
- Checker Qual (from https://checkerframework.org) - Checker Qual (from https://checkerframework.org)
- ClassGraph (from https://github.com/classgraph/classgraph) - ClassGraph (from https://github.com/classgraph/classgraph)
- JUL to SLF4J bridge (from http://www.slf4j.org) - 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) - 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 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) - Java JWT (from http://www.jwt.io, https://github.com/auth0/java-jwt)
......
...@@ -42,6 +42,7 @@ ...@@ -42,6 +42,7 @@
<log4j.version>2.17.1</log4j.version> <log4j.version>2.17.1</log4j.version>
<google-oauth-client.version>1.33.3</google-oauth-client.version> <google-oauth-client.version>1.33.3</google-oauth-client.version>
<google-api-client.version>1.33.2</google-api-client.version> <google-api-client.version>1.33.2</google-api-client.version>
<xnio-api.version>3.8.8.Final</xnio-api.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
...@@ -58,6 +59,11 @@ ...@@ -58,6 +59,11 @@
<artifactId>woodstox-core</artifactId> <artifactId>woodstox-core</artifactId>
<version>${woodstox-core.version}</version> <version>${woodstox-core.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.jboss.xnio</groupId>
<artifactId>xnio-api</artifactId>
<version>${xnio-api.version}</version>
</dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
......
...@@ -69,17 +69,17 @@ ...@@ -69,17 +69,17 @@
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId> <artifactId>jackson-core</artifactId>
<version>2.13.4</version> <version>2.14.1</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId> <artifactId>jackson-databind</artifactId>
<version>2.13.4</version> <version>2.14.1</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId> <artifactId>jackson-annotations</artifactId>
<version>2.13.4</version> <version>2.14.1</version>
</dependency> </dependency>
<dependency> <dependency>
......
...@@ -48,11 +48,11 @@ ...@@ -48,11 +48,11 @@
<reactor-core.version>3.4.6</reactor-core.version> <reactor-core.version>3.4.6</reactor-core.version>
<reactor-netty.version>1.0.7</reactor-netty.version> <reactor-netty.version>1.0.7</reactor-netty.version>
<oauth2-oidc-sdk.version>6.0</oauth2-oidc-sdk.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> <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> <undertow.version>2.2.19.Final</undertow.version>
<spring-boot-maven-plugin.version>2.7.6</spring-boot-maven-plugin.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> </properties>
<dependencyManagement> <dependencyManagement>
...@@ -115,6 +115,11 @@ ...@@ -115,6 +115,11 @@
<artifactId>undertow-websockets-jsr</artifactId> <artifactId>undertow-websockets-jsr</artifactId>
<version>${undertow.version}</version> <version>${undertow.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.jboss.xnio</groupId>
<artifactId>xnio-api</artifactId>
<version>${xnio-api.version}</version>
</dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment