Azure / azure-sdk-for-java

This repository is for active development of the Azure SDK for Java. For consumers of the SDK we recommend visiting our public developer docs at https://docs.microsoft.com/java/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-java.
MIT License
2.33k stars 1.97k forks source link

[BUG] azure-storage-file-datalake 12.7.4 version not working spring boot 2.3.2 #29505

Closed XiaoYue2-22 closed 1 year ago

XiaoYue2-22 commented 2 years ago

Describe the bug A clear and concise description of what the bug is. When we upgraded azure-storage-file-datalake SDK from version 12.1.0 to version 12.7.4, download files from Azure Blob storage is failing and writing to ADLS is also failing. We get the below error on our logs.

'message': 'Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: com/nimbusds/oauth2/sdk/http/CommonContentTypes',

Exception or Stack Trace Add the exception log and stack trace if available

==========stack trace========= image image

=========pom.xml=============

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.nielseniq.buy.ncnes</groupId>
        <artifactId>integration-all</artifactId>
        <version>20.10.00-SNAPSHOT</version>
    </parent>
    <artifactId>integration-commons</artifactId>
    <name>integration-commons</name>
    <description>Project holds Common files integration</description>

    <properties>
        <java.version>1.8</java.version>
        <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
        <ndx.security.version>2.3.4</ndx.security.version>
        <ndx.logging.version>2.1.5</ndx.logging.version>
        <azure.keyvault.version>2.2.3</azure.keyvault.version>
    </properties>

    <repositories>
        <repository>
            <snapshots />
            <id>release</id>
            <name>libs-release</name>
            <url>http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/libs-release</url>
        </repository>
    </repositories>

    <dependencies>
        <!-- https://mvnrepository.com/artifact/com.microsoft.azure/azure-data-lake-store-sdk -->
        <dependency>
            <groupId>org.jacoco</groupId>
            <artifactId>org.jacoco.agent</artifactId>
            <classifier>runtime</classifier>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>com.nielsen.buy.commons</groupId>
            <artifactId>cs-commons-security</artifactId>
            <version>${ndx.security.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>com.nielsen.buy.commons</groupId>
                    <artifactId>cs-commons-logging</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>uk.org.lidalia</groupId>
                    <artifactId>slf4j-test</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.mock-server</groupId>
                    <artifactId>mockserver-netty</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>uk.org.lidalia</groupId>
                    <artifactId>slf4j-test</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.mockito</groupId>
                    <artifactId>mockito-core</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>ch.qos.logback</groupId>
                    <artifactId>logback-classic</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.nimbusds</groupId>
                    <artifactId>nimbus-jose-jwt</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>javax.servlet</groupId>
                    <artifactId>servlet-api</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.nielsen.buy.commons</groupId>
            <artifactId>cs-commons-identity</artifactId>
            <version>2.5.1</version>
        </dependency>
        <dependency>
            <groupId>com.microsoft.azure</groupId>
            <artifactId>azure-data-lake-store-sdk</artifactId>
            <version>2.3.7</version>
        </dependency>
        <dependency>
            <groupId>com.azure</groupId>
            <artifactId>azure-storage-file-datalake</artifactId>
            <version>12.7.4</version>
        </dependency>
        <dependency>
            <groupId>com.nielseniq.buy.ncnes</groupId>
            <artifactId>integration-data</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>com.azure</groupId>
            <artifactId>azure-identity</artifactId>
            <version>1.0.4</version> <!-- {x-version-update;com.azure:azure-identity;dependency} -->
        </dependency>
        <dependency>
            <groupId>com.sendgrid</groupId>
            <artifactId>sendgrid-java</artifactId>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
        </dependency>

        <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
        <dependency>
            <groupId>commons-beanutils</groupId>
            <artifactId>commons-beanutils</artifactId>
            <version>1.9.4</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
    <!--    <dependency>
            <groupId>redis.clients</groupId>
            <artifactId>jedis</artifactId>
        </dependency>-->
        <!-- send email -->

        <!-- common logging framework -->
        <dependency>
            <groupId>com.nielsen.buy.commons</groupId>
            <artifactId>cs-commons-logging</artifactId>
            <version>${ndx.logging.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-mail</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-aop</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.microsoft.azure</groupId>
            <artifactId>azure-keyvault-secrets-spring-boot-starter</artifactId>
            <version>${azure.keyvault.version}</version>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
        </dependency>
        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-runner</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webflux</artifactId>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-csv</artifactId>
            <version>1.8</version>
        </dependency>
        <dependency>
            <groupId>org.codehaus.jettison</groupId>
            <artifactId>jettison</artifactId>
            <version>1.4.0</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.kafka</groupId>
            <artifactId>spring-kafka</artifactId>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.apache.kafka/kafka-clients -->
        <dependency>
            <groupId>org.apache.kafka</groupId>
            <artifactId>kafka-clients</artifactId>
            <version>2.8.0</version>
        </dependency>
        <dependency>
            <groupId>com.github.danielwegener</groupId>
            <artifactId>logback-kafka-appender</artifactId>
            <version>0.2.0-RC2</version>
        </dependency>
        <dependency>
            <groupId>com.microsoft.azure</groupId>
            <artifactId>azure-storage-blob</artifactId>
            <version>11.0.1</version>
        </dependency>

    </dependencies>
    <!-- <repositories> <repository> <id>maven2-repository.java.net</id> <name>Java.net
        Repository for Maven</name> <url>http://download.java.net/maven/2/</url>
        <layout>default</layout> </repository> <repository> <snapshots> <enabled>false</enabled>
        </snapshots> <id>central</id> <name>libs-release</name> <url>http://dayrhebfmi001.enterprisenet.org:8081/artifactory/libs-release</url>
        </repository> <repository> <snapshots> <enabled>false</enabled> </snapshots>
        <id>centrallocal</id> <name>libs-release-local</name> <url>http://dayrhebfmi001.enterprisenet.org:8081/artifactory/libs-release-local</url>
        </repository> <repository> <snapshots /> <id>sprint</id> <name>libs-sprint</name>
        <url>http://dayrhebfmi001.enterprisenet.org:8081/artifactory/libs-sprint</url>
        </repository> <repository> <snapshots> <enabled>false</enabled> </snapshots>
        <id>aprepository</id> <name>aprepository-releases</name> <url>http://dayrhegmpp021.enterprisenet.org:8081/artifactory/apcommon</url>
        </repository> <repository> <snapshots /> <id>snapshots</id> <name>libs-snapshot</name>
        <url>http://dayrhebfmi001.enterprisenet.org:8081/artifactory/libs-snapshot</url>
        </repository> </repositories> <pluginRepositories> <pluginRepository> <snapshots>
        <enabled>false</enabled> </snapshots> <id>releases</id> <name>plugins-release</name>
        <url>http://dayrhebfmi001.enterprisenet.org:8081/artifactory/plugins-release</url>
        </pluginRepository> <pluginRepository> <snapshots /> <id>snapshots</id> <name>plugins-snapshot</name>
        <url>http://dayrhebfmi001.enterprisenet.org:8081/artifactory/plugins-snapshot</url>
        </pluginRepository> </pluginRepositories> -->
</project>

To Reproduce Steps to reproduce the behavior:

Code Snippet Add the code snippet that causes the issue.

Expected behavior A clear and concise description of what you expected to happen.

Screenshots If applicable, add screenshots to help explain your problem.

Setup (please complete the following information):

If you suspect a dependency version mismatch (e.g. you see NoClassDefFoundError, NoSuchMethodError or similar), please check out Troubleshoot dependency version conflict article first. If it doesn't provide solution for the problem, please provide:

Additional context Add any other context about the problem here.

Information Checklist Kindly make sure that you have added all the following information above and checkoff the required fields otherwise we will treat the issuer as an incomplete report

XiaoYue2-22 commented 2 years ago

Dependency tree(the content exceeds max length, hence provide this here)=============

[INFO] Scanning for projects...
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/build-helper-maven-plugin/3.1.0/build-helper-maven-plugin-3.1.0.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/build-helper-maven-plugin/3.1.0/build-helper-maven-plugin-3.1.0.pom (5.8 kB at 3.8 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/mojo-parent/50/mojo-parent-50.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/mojo-parent/50/mojo-parent-50.pom (0 B at 0 B/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/build-helper-maven-plugin/3.1.0/build-helper-maven-plugin-3.1.0.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/build-helper-maven-plugin/3.1.0/build-helper-maven-plugin-3.1.0.jar (67 kB at 53 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/exec-maven-plugin/1.6.0/exec-maven-plugin-1.6.0.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/exec-maven-plugin/1.6.0/exec-maven-plugin-1.6.0.pom (13 kB at 16 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom (0 B at 0 B/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/exec-maven-plugin/1.6.0/exec-maven-plugin-1.6.0.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/exec-maven-plugin/1.6.0/exec-maven-plugin-1.6.0.jar (58 kB at 60 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/flatten-maven-plugin/1.2.7/flatten-maven-plugin-1.2.7.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/flatten-maven-plugin/1.2.7/flatten-maven-plugin-1.2.7.pom (11 kB at 5.5 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/mojo-parent/61/mojo-parent-61.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/mojo-parent/61/mojo-parent-61.pom (31 kB at 22 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/flatten-maven-plugin/1.2.7/flatten-maven-plugin-1.2.7.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/mojo/flatten-maven-plugin/1.2.7/flatten-maven-plugin-1.2.7.jar (112 kB at 47 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/flywaydb/flyway-maven-plugin/6.4.4/flyway-maven-plugin-6.4.4.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/flywaydb/flyway-maven-plugin/6.4.4/flyway-maven-plugin-6.4.4.pom (4.5 kB at 6.0 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/flywaydb/flyway-parent/6.4.4/flyway-parent-6.4.4.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/flywaydb/flyway-parent/6.4.4/flyway-parent-6.4.4.pom (26 kB at 20 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/flywaydb/flyway-maven-plugin/6.4.4/flyway-maven-plugin-6.4.4.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/flywaydb/flyway-maven-plugin/6.4.4/flyway-maven-plugin-6.4.4.jar (109 kB at 109 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/pl/project13/maven/git-commit-id-plugin/3.0.1/git-commit-id-plugin-3.0.1.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/pl/project13/maven/git-commit-id-plugin/3.0.1/git-commit-id-plugin-3.0.1.pom (17 kB at 22 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/pl/project13/maven/git-commit-id-plugin/3.0.1/git-commit-id-plugin-3.0.1.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/pl/project13/maven/git-commit-id-plugin/3.0.1/git-commit-id-plugin-3.0.1.jar (120 kB at 125 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/johnzon/johnzon-maven-plugin/1.2.10/johnzon-maven-plugin-1.2.10.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/johnzon/johnzon-maven-plugin/1.2.10/johnzon-maven-plugin-1.2.10.pom (4.0 kB at 4.9 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/johnzon/johnzon/1.2.10/johnzon-1.2.10.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/johnzon/johnzon/1.2.10/johnzon-1.2.10.pom (26 kB at 39 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/johnzon/johnzon-maven-plugin/1.2.10/johnzon-maven-plugin-1.2.10.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/johnzon/johnzon-maven-plugin/1.2.10/johnzon-maven-plugin-1.2.10.jar (30 kB at 42 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/jooq/jooq-codegen-maven/3.13.6/jooq-codegen-maven-3.13.6.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/jooq/jooq-codegen-maven/3.13.6/jooq-codegen-maven-3.13.6.pom (3.4 kB at 4.7 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/jooq/jooq-parent/3.13.6/jooq-parent-3.13.6.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/jooq/jooq-parent/3.13.6/jooq-parent-3.13.6.pom (21 kB at 31 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/jooq/jooq-codegen-maven/3.13.6/jooq-codegen-maven-3.13.6.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/jooq/jooq-codegen-maven/3.13.6/jooq-codegen-maven-3.13.6.jar (17 kB at 22 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/jetbrains/kotlin/kotlin-maven-plugin/1.3.72/kotlin-maven-plugin-1.3.72.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/jetbrains/kotlin/kotlin-maven-plugin/1.3.72/kotlin-maven-plugin-1.3.72.pom (5.9 kB at 7.2 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/jetbrains/kotlin/kotlin-project/1.3.72/kotlin-project-1.3.72.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/jetbrains/kotlin/kotlin-project/1.3.72/kotlin-project-1.3.72.pom (10 kB at 13 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/jetbrains/kotlin/kotlin-maven-plugin/1.3.72/kotlin-maven-plugin-1.3.72.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/jetbrains/kotlin/kotlin-maven-plugin/1.3.72/kotlin-maven-plugin-1.3.72.jar (80 kB at 79 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.pom (3.3 kB at 4.8 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/plugins/maven-plugins/27/maven-plugins-27.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/plugins/maven-plugins/27/maven-plugins-27.pom (11 kB at 15 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.jar (36 kB at 47 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/plugins/maven-assembly-plugin/3.3.0/maven-assembly-plugin-3.3.0.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/plugins/maven-assembly-plugin/3.3.0/maven-assembly-plugin-3.3.0.pom (16 kB at 21 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/plugins/maven-assembly-plugin/3.3.0/maven-assembly-plugin-3.3.0.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/plugins/maven-assembly-plugin/3.3.0/maven-assembly-plugin-3.3.0.jar (242 kB at 153 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/plugins/maven-dependency-plugin/3.1.2/maven-dependency-plugin-3.1.2.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/plugins/maven-dependency-plugin/3.1.2/maven-dependency-plugin-3.1.2.pom (16 kB at 22 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/plugins/maven-dependency-plugin/3.1.2/maven-dependency-plugin-3.1.2.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/plugins/maven-dependency-plugin/3.1.2/maven-dependency-plugin-3.1.2.jar (172 kB at 165 kB/s)
[INFO] 
[INFO] ------------< com.nielseniq.buy.ncnes:integration-commons >-------------
[INFO] Building integration-commons 20.10.00-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from snapshots: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/libs-snapshot/com/nielseniq/buy/ncnes/integration-data/20.10.00-SNAPSHOT/maven-metadata.xml
Downloading from central: https://repo.maven.apache.org/maven2/com/nielseniq/buy/ncnes/integration-data/20.10.00-SNAPSHOT/maven-metadata.xml
Downloading from release: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/libs-release/com/nielseniq/buy/ncnes/integration-data/20.10.00-SNAPSHOT/maven-metadata.xml
Downloading from release: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/libs-release/com/nielseniq/buy/ncnes/integration-all/20.10.00-SNAPSHOT/maven-metadata.xml
Downloading from snapshots: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/libs-snapshot/com/nielseniq/buy/ncnes/integration-all/20.10.00-SNAPSHOT/maven-metadata.xml
Downloading from central: https://repo.maven.apache.org/maven2/com/nielseniq/buy/ncnes/integration-all/20.10.00-SNAPSHOT/maven-metadata.xml
[WARNING] The POM for com.nielsen.buy.commons:cs-commons-logging:jar:2.1.5 is missing, no dependency information available
[INFO] 
[INFO] --- maven-dependency-plugin:3.1.2:tree (default-cli) @ integration-commons ---
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom (7.6 kB at 7.8 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom (4.9 kB at 7.1 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom (1.5 kB at 2.1 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom (15 kB at 12 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom (1.5 kB at 2.1 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom (3.4 kB at 4.3 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom (14 kB at 15 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom (4.1 kB at 5.3 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/xmlunit/xmlunit/1.5/xmlunit-1.5.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/xmlunit/xmlunit/1.5/xmlunit-1.5.pom (3.0 kB at 4.7 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom (6.7 kB at 8.5 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom (3.0 kB at 3.9 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom (1.6 kB at 2.2 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom (2.6 kB at 3.5 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 4.2 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/velocity/velocity/1.7/velocity-1.7.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 15 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-sink-api/1.9/doxia-sink-api-1.9.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-sink-api/1.9/doxia-sink-api-1.9.pom (1.6 kB at 2.0 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia/1.9/doxia-1.9.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia/1.9/doxia-1.9.pom (19 kB at 15 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-logging-api/1.9/doxia-logging-api-1.9.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-logging-api/1.9/doxia-logging-api-1.9.pom (1.6 kB at 2.0 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-container-default/1.7.1/plexus-container-default-1.7.1.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-container-default/1.7.1/plexus-container-default-1.7.1.pom (2.8 kB at 4.1 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom (3.8 kB at 4.9 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom (5.1 kB at 7.1 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/xbean/xbean/3.7/xbean-3.7.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/xbean/xbean/3.7/xbean-3.7.pom (15 kB at 16 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (5.5 kB at 7.3 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom (18 kB at 26 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (17 kB at 19 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/com/google/collections/google-collections/1.0/google-collections-1.0.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 3.5 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/com/google/google/1/google-1.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/com/google/google/1/google-1.pom (0 B at 0 B/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-core/1.9/doxia-core-1.9.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-core/1.9/doxia-core-1.9.pom (4.4 kB at 6.2 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.pom (23 kB at 23 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/commons/commons-parent/41/commons-parent-41.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/commons/commons-parent/41/commons-parent-41.pom (65 kB at 69 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/httpcomponents/httpclient/4.5.8/httpclient-4.5.8.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/httpcomponents/httpclient/4.5.8/httpclient-4.5.8.pom (6.6 kB at 8.4 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/httpcomponents/httpcomponents-client/4.5.8/httpcomponents-client-4.5.8.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/httpcomponents/httpcomponents-client/4.5.8/httpcomponents-client-4.5.8.pom (16 kB at 24 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/httpcomponents/httpcore/4.4.11/httpcore-4.4.11.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/httpcomponents/httpcore/4.4.11/httpcore-4.4.11.pom (5.2 kB at 7.9 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/httpcomponents/httpcomponents-core/4.4.11/httpcomponents-core-4.4.11.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/httpcomponents/httpcomponents-core/4.4.11/httpcomponents-core-4.4.11.pom (13 kB at 18 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-site-renderer/1.9/doxia-site-renderer-1.9.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-site-renderer/1.9/doxia-site-renderer-1.9.pom (6.7 kB at 8.8 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-sitetools/1.9/doxia-sitetools-1.9.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-sitetools/1.9/doxia-sitetools-1.9.pom (16 kB at 23 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-decoration-model/1.9/doxia-decoration-model-1.9.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-decoration-model/1.9/doxia-decoration-model-1.9.pom (3.4 kB at 4.2 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-skin-model/1.9/doxia-skin-model-1.9.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-skin-model/1.9/doxia-skin-model-1.9.pom (3.0 kB at 4.2 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-module-xhtml/1.9/doxia-module-xhtml-1.9.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-module-xhtml/1.9/doxia-module-xhtml-1.9.pom (2.0 kB at 2.7 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-modules/1.9/doxia-modules-1.9.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-modules/1.9/doxia-modules-1.9.pom (2.7 kB at 3.3 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-module-xhtml5/1.9/doxia-module-xhtml5-1.9.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-module-xhtml5/1.9/doxia-module-xhtml5-1.9.pom (2.0 kB at 2.7 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom (2.1 kB at 2.9 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-archiver/4.2.2/plexus-archiver-4.2.2.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-archiver/4.2.2/plexus-archiver-4.2.2.pom (4.4 kB at 6.0 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus/6.1/plexus-6.1.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus/6.1/plexus-6.1.pom (24 kB at 23 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/shared/maven-dependency-analyzer/1.11.1/maven-dependency-analyzer-1.11.1.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/shared/maven-dependency-analyzer/1.11.1/maven-dependency-analyzer-1.11.1.pom (6.7 kB at 8.7 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/ow2/asm/asm/7.3.1/asm-7.3.1.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/ow2/asm/asm/7.3.1/asm-7.3.1.pom (2.9 kB at 3.7 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom (2.3 kB at 3.2 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom (2.7 kB at 4.2 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/maven/2.0.5/maven-2.0.5.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/maven/2.0.5/maven-2.0.5.pom (5.7 kB at 8.1 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom (727 B at 1.1 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.pom (11 kB at 9.4 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/commons-lang/commons-lang/2.6/commons-lang-2.6.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/commons-lang/commons-lang/2.6/commons-lang-2.6.pom (0 B at 0 B/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/commons/commons-parent/17/commons-parent-17.pom
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/commons/commons-parent/17/commons-parent-17.pom (0 B at 0 B/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-logging-api/1.9/doxia-logging-api-1.9.jar
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-sink-api/1.9/doxia-sink-api-1.9.jar
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.jar
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-core/1.9/doxia-core-1.9.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar (18 kB at 18 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-container-default/1.7.1/plexus-container-default-1.7.1.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-sink-api/1.9/doxia-sink-api-1.9.jar (12 kB at 10 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-logging-api/1.9/doxia-logging-api-1.9.jar (12 kB at 10 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/com/google/collections/google-collections/1.0/google-collections-1.0.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.jar (61 kB at 42 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-core/1.9/doxia-core-1.9.jar (219 kB at 107 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/httpcomponents/httpclient/4.5.8/httpclient-4.5.8.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.jar (148 kB at 63 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/httpcomponents/httpcore/4.4.11/httpcore-4.4.11.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-container-default/1.7.1/plexus-container-default-1.7.1.jar (231 kB at 89 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-site-renderer/1.9/doxia-site-renderer-1.9.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/com/google/collections/google-collections/1.0/google-collections-1.0.jar (640 kB at 237 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-skin-model/1.9/doxia-skin-model-1.9.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.jar (480 kB at 147 kB/s)
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-site-renderer/1.9/doxia-site-renderer-1.9.jar (66 kB at 20 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-module-xhtml/1.9/doxia-module-xhtml-1.9.jar
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-module-xhtml5/1.9/doxia-module-xhtml5-1.9.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-skin-model/1.9/doxia-skin-model-1.9.jar (17 kB at 5.0 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/httpcomponents/httpcore/4.4.11/httpcore-4.4.11.jar (327 kB at 97 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/httpcomponents/httpclient/4.5.8/httpclient-4.5.8.jar (772 kB at 216 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/velocity/velocity/1.7/velocity-1.7.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-module-xhtml/1.9/doxia-module-xhtml-1.9.jar (18 kB at 4.5 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-archiver/4.2.2/plexus-archiver-4.2.2.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/doxia/doxia-module-xhtml5/1.9/doxia-module-xhtml5-1.9.jar (18 kB at 4.6 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/shared/maven-dependency-analyzer/1.11.1/maven-dependency-analyzer-1.11.1.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 3.0 kB/s)
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 2.0 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/shared/maven-dependency-analyzer/1.11.1/maven-dependency-analyzer-1.11.1.jar (35 kB at 7.7 kB/s)
Downloading from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/commons-lang/commons-lang/2.6/commons-lang-2.6.jar
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/codehaus/plexus/plexus-archiver/4.2.2/plexus-archiver-4.2.2.jar (194 kB at 42 kB/s)
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar (122 kB at 25 kB/s)
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.jar (128 kB at 27 kB/s)
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/commons-lang/commons-lang/2.6/commons-lang-2.6.jar (0 B at 0 B/s)
Downloaded from central: http://bcsartifactory.trans.enterprisecsp.net:8081/artifactory/plugins-release/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 69 kB/s)
[INFO] com.nielseniq.buy.ncnes:integration-commons:jar:20.10.00-SNAPSHOT
[INFO] +- org.jacoco:org.jacoco.agent:jar:runtime:0.8.2:test
[INFO] +- org.springframework.boot:spring-boot-starter-web:jar:2.3.10.RELEASE:compile
[INFO] |  +- org.springframework.boot:spring-boot-starter:jar:2.3.10.RELEASE:compile
[INFO] |  |  +- org.springframework.boot:spring-boot:jar:2.3.10.RELEASE:compile
[INFO] |  |  +- org.springframework.boot:spring-boot-autoconfigure:jar:2.3.10.RELEASE:compile
[INFO] |  |  +- org.springframework.boot:spring-boot-starter-logging:jar:2.3.10.RELEASE:compile
[INFO] |  |  |  +- ch.qos.logback:logback-classic:jar:1.2.3:compile
[INFO] |  |  |  |  \- ch.qos.logback:logback-core:jar:1.2.3:compile
[INFO] |  |  |  +- org.apache.logging.log4j:log4j-to-slf4j:jar:2.13.3:compile
[INFO] |  |  |  |  \- org.apache.logging.log4j:log4j-api:jar:2.13.3:compile
[INFO] |  |  |  \- org.slf4j:jul-to-slf4j:jar:1.7.30:compile
[INFO] |  |  +- jakarta.annotation:jakarta.annotation-api:jar:1.3.5:compile
[INFO] |  |  \- org.yaml:snakeyaml:jar:1.26:compile
[INFO] |  +- org.springframework.boot:spring-boot-starter-json:jar:2.3.10.RELEASE:compile
[INFO] |  |  +- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.11.4:compile
[INFO] |  |  \- com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.11.4:compile
[INFO] |  +- org.springframework.boot:spring-boot-starter-tomcat:jar:2.3.10.RELEASE:compile
[INFO] |  |  +- org.apache.tomcat.embed:tomcat-embed-core:jar:9.0.45:compile
[INFO] |  |  +- org.glassfish:jakarta.el:jar:3.0.3:compile
[INFO] |  |  \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:9.0.45:compile
[INFO] |  +- org.springframework:spring-web:jar:5.2.14.RELEASE:compile
[INFO] |  \- org.springframework:spring-webmvc:jar:5.2.14.RELEASE:compile
[INFO] |     \- org.springframework:spring-expression:jar:5.2.14.RELEASE:compile
[INFO] +- com.nielsen.buy.commons:cs-commons-security:jar:2.3.4:compile
[INFO] |  +- org.slf4j:slf4j-api:jar:1.7.30:compile
[INFO] |  +- io.jsonwebtoken:jjwt-api:jar:0.11.2:compile
[INFO] |  +- io.jsonwebtoken:jjwt-impl:jar:0.11.2:compile
[INFO] |  +- io.jsonwebtoken:jjwt-jackson:jar:0.11.2:compile
[INFO] |  +- com.niq.buy.commons:cs-commons-encryptor:jar:1.1.0:compile
[INFO] |  +- redis.clients:jedis:jar:3.3.0:compile
[INFO] |  |  \- org.apache.commons:commons-pool2:jar:2.8.1:compile
[INFO] |  +- com.fasterxml.jackson.core:jackson-core:jar:2.11.4:compile
[INFO] |  +- com.fasterxml.jackson.core:jackson-annotations:jar:2.11.4:compile
[INFO] |  +- com.fasterxml.jackson.core:jackson-databind:jar:2.11.4:compile
[INFO] |  +- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.11.4:compile
[INFO] |  +- com.okta.jwt:okta-jwt-verifier:jar:0.5.1:compile
[INFO] |  +- com.okta.jwt:okta-jwt-verifier-impl:jar:0.5.1:compile
[INFO] |  |  +- com.okta.commons:okta-config-check:jar:1.2.5:compile
[INFO] |  |  +- com.okta.commons:okta-commons-lang:jar:1.2.5:compile
[INFO] |  |  +- com.okta.commons:okta-http-api:jar:1.2.5:compile
[INFO] |  |  +- com.okta.commons:okta-http-okhttp:jar:1.2.5:runtime
[INFO] |  |  |  \- org.slf4j:jcl-over-slf4j:jar:1.7.30:compile
[INFO] |  |  \- com.squareup.okhttp3:okhttp:jar:3.14.9:compile
[INFO] |  |     \- com.squareup.okio:okio:jar:1.17.2:compile
[INFO] |  +- com.okta.sdk:okta-sdk-httpclient:jar:3.0.1:compile
[INFO] |  |  \- com.okta.commons:okta-http-httpclient:jar:1.2.4:compile
[INFO] |  +- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
[INFO] |  |  +- org.apache.httpcomponents:httpcore:jar:4.4.14:compile
[INFO] |  |  \- commons-codec:commons-codec:jar:1.14:compile
[INFO] |  \- com.google.guava:guava:jar:30.1.1-jre:compile
[INFO] |     +- com.google.guava:failureaccess:jar:1.0.1:compile
[INFO] |     +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
[INFO] |     +- com.google.code.findbugs:jsr305:jar:3.0.2:compile
[INFO] |     +- org.checkerframework:checker-qual:jar:3.8.0:compile
[INFO] |     +- com.google.errorprone:error_prone_annotations:jar:2.5.1:compile
[INFO] |     \- com.google.j2objc:j2objc-annotations:jar:1.3:compile
[INFO] +- com.nielsen.buy.commons:cs-commons-identity:jar:2.5.1:compile
[INFO] |  \- org.springframework:spring-core:jar:5.2.14.RELEASE:compile
[INFO] |     \- org.springframework:spring-jcl:jar:5.2.14.RELEASE:compile
[INFO] +- com.azure:azure-storage-file-datalake:jar:12.7.4:compile
[INFO] |  +- com.azure:azure-core:jar:1.25.0:compile
[INFO] |  |  +- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:jar:2.11.4:compile
[INFO] |  |  |  +- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.11.4:compile
[INFO] |  |  |  +- org.codehaus.woodstox:stax2-api:jar:4.2.1:compile
[INFO] |  |  |  \- com.fasterxml.woodstox:woodstox-core:jar:6.2.3:compile
[INFO] |  |  \- io.netty:netty-tcnative-boringssl-static:jar:2.0.38.Final:compile
[INFO] |  +- com.azure:azure-core-http-netty:jar:1.11.7:compile
[INFO] |  |  +- io.netty:netty-handler:jar:4.1.63.Final:compile
[INFO] |  |  |  +- io.netty:netty-common:jar:4.1.63.Final:compile
[INFO] |  |  |  +- io.netty:netty-resolver:jar:4.1.63.Final:compile
[INFO] |  |  |  +- io.netty:netty-transport:jar:4.1.63.Final:compile
[INFO] |  |  |  \- io.netty:netty-codec:jar:4.1.63.Final:compile
[INFO] |  |  +- io.netty:netty-handler-proxy:jar:4.1.63.Final:compile
[INFO] |  |  |  \- io.netty:netty-codec-socks:jar:4.1.63.Final:compile
[INFO] |  |  +- io.netty:netty-buffer:jar:4.1.63.Final:compile
[INFO] |  |  +- io.netty:netty-codec-http:jar:4.1.63.Final:compile
[INFO] |  |  +- io.netty:netty-codec-http2:jar:4.1.63.Final:compile
[INFO] |  |  +- io.netty:netty-transport-native-unix-common:jar:4.1.63.Final:compile
[INFO] |  |  +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.63.Final:compile
[INFO] |  |  +- io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.63.Final:compile
[INFO] |  |  \- io.projectreactor.netty:reactor-netty-http:jar:1.0.14:compile
[INFO] |  |     +- io.netty:netty-resolver-dns:jar:4.1.63.Final:compile
[INFO] |  |     |  \- io.netty:netty-codec-dns:jar:4.1.63.Final:compile
[INFO] |  |     +- io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.63.Final:compile
[INFO] |  |     \- io.projectreactor.netty:reactor-netty-core:jar:1.0.14:compile
[INFO] |  \- com.azure:azure-storage-blob:jar:12.14.4:compile
[INFO] |     +- com.azure:azure-storage-common:jar:12.14.3:compile
[INFO] |     \- com.azure:azure-storage-internal-avro:jar:12.1.4:compile
[INFO] +- com.nielseniq.buy.ncnes:integration-data:jar:20.10.00-SNAPSHOT:compile
[INFO] |  +- org.springframework.boot:spring-boot-starter-data-mongodb:jar:2.3.10.RELEASE:compile
[INFO] |  |  +- org.mongodb:mongodb-driver-sync:jar:4.0.6:compile
[INFO] |  |  |  +- org.mongodb:bson:jar:4.0.6:compile
[INFO] |  |  |  \- org.mongodb:mongodb-driver-core:jar:4.0.6:compile
[INFO] |  |  \- org.springframework.data:spring-data-mongodb:jar:3.0.9.RELEASE:compile
[INFO] |  |     \- org.springframework.data:spring-data-commons:jar:2.3.9.RELEASE:compile
[INFO] |  +- net.snowflake:snowflake-jdbc:jar:3.6.21:compile
[INFO] |  +- org.springframework.boot:spring-boot-starter-jdbc:jar:2.3.10.RELEASE:compile
[INFO] |  |  +- com.zaxxer:HikariCP:jar:3.4.5:compile
[INFO] |  |  \- org.springframework:spring-jdbc:jar:5.2.14.RELEASE:compile
[INFO] |  +- org.springframework.data:spring-data-redis:jar:2.3.9.RELEASE:compile
[INFO] |  |  +- org.springframework.data:spring-data-keyvalue:jar:2.3.9.RELEASE:compile
[INFO] |  |  \- org.springframework:spring-oxm:jar:5.2.14.RELEASE:compile
[INFO] |  +- org.springframework.retry:spring-retry:jar:1.2.5.RELEASE:compile
[INFO] |  +- io.swagger:swagger-annotations:jar:1.5.20:compile
[INFO] |  \- jakarta.validation:jakarta.validation-api:jar:2.0.2:compile
[INFO] +- com.azure:azure-identity:jar:1.0.4:compile
[INFO] |  +- com.microsoft.azure:msal4j:jar:0.5.0-preview:compile
[INFO] |  +- com.nimbusds:oauth2-oidc-sdk:jar:7.1.3:compile
[INFO] |  |  +- com.github.stephenc.jcip:jcip-annotations:jar:1.0-1:compile
[INFO] |  |  +- com.nimbusds:content-type:jar:2.0:compile
[INFO] |  |  +- net.minidev:json-smart:jar:2.3:compile
[INFO] |  |  |  \- net.minidev:accessors-smart:jar:1.2:compile
[INFO] |  |  |     \- org.ow2.asm:asm:jar:5.0.4:compile
[INFO] |  |  +- com.nimbusds:lang-tag:jar:1.4.4:compile
[INFO] |  |  +- com.nimbusds:nimbus-jose-jwt:jar:8.19:compile
[INFO] |  |  \- com.sun.mail:javax.mail:jar:1.6.1:compile
[INFO] |  |     \- javax.activation:activation:jar:1.1:compile
[INFO] |  +- org.nanohttpd:nanohttpd:jar:2.3.1:compile
[INFO] |  \- net.java.dev.jna:jna-platform:jar:5.4.0:compile
[INFO] |     \- net.java.dev.jna:jna:jar:5.4.0:compile
[INFO] +- com.sendgrid:sendgrid-java:jar:4.4.8:compile
[INFO] |  \- com.sendgrid:java-http-client:jar:4.5.1:compile (version selected from constraint [4.2,5.0))
[INFO] +- org.apache.commons:commons-lang3:jar:3.10:compile
[INFO] +- commons-beanutils:commons-beanutils:jar:1.9.4:compile
[INFO] |  +- commons-logging:commons-logging:jar:1.2:compile
[INFO] |  \- commons-collections:commons-collections:jar:3.2.2:compile
[INFO] +- com.nielsen.buy.commons:cs-commons-logging:jar:2.1.5:compile
[INFO] +- org.springframework.boot:spring-boot-starter-mail:jar:2.3.10.RELEASE:compile
[INFO] |  +- org.springframework:spring-context-support:jar:5.2.14.RELEASE:compile
[INFO] |  \- com.sun.mail:jakarta.mail:jar:1.6.7:compile
[INFO] |     \- com.sun.activation:jakarta.activation:jar:1.2.2:compile
[INFO] +- org.springframework.boot:spring-boot-starter-thymeleaf:jar:2.3.10.RELEASE:compile
[INFO] |  +- org.thymeleaf:thymeleaf-spring5:jar:3.0.12.RELEASE:compile
[INFO] |  |  \- org.thymeleaf:thymeleaf:jar:3.0.12.RELEASE:compile
[INFO] |  |     +- org.attoparser:attoparser:jar:2.0.5.RELEASE:compile
[INFO] |  |     \- org.unbescape:unbescape:jar:1.1.6.RELEASE:compile
[INFO] |  \- org.thymeleaf.extras:thymeleaf-extras-java8time:jar:3.0.4.RELEASE:compile
[INFO] +- org.springframework.boot:spring-boot-starter-aop:jar:2.3.10.RELEASE:compile
[INFO] |  +- org.springframework:spring-aop:jar:5.2.14.RELEASE:compile
[INFO] |  \- org.aspectj:aspectjweaver:jar:1.9.6:compile
[INFO] +- org.springframework.boot:spring-boot-starter-test:jar:2.3.10.RELEASE:test
[INFO] |  +- org.springframework.boot:spring-boot-test:jar:2.3.10.RELEASE:test
[INFO] |  +- org.springframework.boot:spring-boot-test-autoconfigure:jar:2.3.10.RELEASE:test
[INFO] |  +- com.jayway.jsonpath:json-path:jar:2.4.0:test
[INFO] |  +- jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3:compile
[INFO] |  |  \- jakarta.activation:jakarta.activation-api:jar:1.2.2:compile
[INFO] |  +- org.assertj:assertj-core:jar:3.16.1:test
[INFO] |  +- org.hamcrest:hamcrest:jar:2.2:test
[INFO] |  +- org.junit.jupiter:junit-jupiter:jar:5.6.3:test
[INFO] |  |  +- org.junit.jupiter:junit-jupiter-api:jar:5.6.3:test
[INFO] |  |  |  +- org.opentest4j:opentest4j:jar:1.2.0:test
[INFO] |  |  |  \- org.junit.platform:junit-platform-commons:jar:1.6.3:test
[INFO] |  |  +- org.junit.jupiter:junit-jupiter-params:jar:5.6.3:test
[INFO] |  |  \- org.junit.jupiter:junit-jupiter-engine:jar:5.6.3:test
[INFO] |  +- org.mockito:mockito-core:jar:3.3.3:test
[INFO] |  |  +- net.bytebuddy:byte-buddy:jar:1.10.22:test
[INFO] |  |  +- net.bytebuddy:byte-buddy-agent:jar:1.10.22:test
[INFO] |  |  \- org.objenesis:objenesis:jar:2.6:test
[INFO] |  +- org.mockito:mockito-junit-jupiter:jar:3.3.3:test
[INFO] |  +- org.skyscreamer:jsonassert:jar:1.5.0:test
[INFO] |  |  \- com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test
[INFO] |  +- org.springframework:spring-test:jar:5.2.14.RELEASE:test
[INFO] |  \- org.xmlunit:xmlunit-core:jar:2.7.0:test
[INFO] +- com.microsoft.azure:azure-keyvault-secrets-spring-boot-starter:jar:2.2.3:compile
[INFO] |  +- org.springframework.boot:spring-boot-starter-validation:jar:2.3.10.RELEASE:compile
[INFO] |  |  \- org.hibernate.validator:hibernate-validator:jar:6.1.7.Final:compile
[INFO] |  |     +- org.jboss.logging:jboss-logging:jar:3.4.1.Final:compile
[INFO] |  |     \- com.fasterxml:classmate:jar:1.5.1:compile
[INFO] |  +- com.microsoft.azure:azure-spring-boot:jar:2.2.3:compile
[INFO] |  |  \- com.azure:azure-security-keyvault-secrets:jar:4.1.0:compile
[INFO] |  +- com.microsoft.azure:azure-client-authentication:jar:1.6.13:compile
[INFO] |  |  +- com.microsoft.azure:azure-client-runtime:jar:1.6.13:compile
[INFO] |  |  |  \- com.microsoft.rest:client-runtime:jar:1.6.13:compile
[INFO] |  |  |     +- com.squareup.retrofit2:retrofit:jar:2.5.0:compile
[INFO] |  |  |     +- com.squareup.okhttp3:logging-interceptor:jar:3.14.9:compile
[INFO] |  |  |     +- com.squareup.okhttp3:okhttp-urlconnection:jar:3.14.9:compile
[INFO] |  |  |     +- com.squareup.retrofit2:converter-jackson:jar:2.5.0:compile
[INFO] |  |  |     +- com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.11.4:compile
[INFO] |  |  |     |  \- joda-time:joda-time:jar:2.9.9:compile
[INFO] |  |  |     +- io.reactivex:rxjava:jar:1.3.8:compile
[INFO] |  |  |     \- com.squareup.retrofit2:adapter-rxjava:jar:2.4.0:compile
[INFO] |  |  +- com.microsoft.azure:adal4j:jar:1.6.4:compile
[INFO] |  |  \- com.microsoft.azure:azure-annotations:jar:1.7.0:compile
[INFO] |  \- commons-io:commons-io:jar:2.3:compile
[INFO] +- org.projectlombok:lombok:jar:1.18.20:provided
[INFO] +- com.google.code.gson:gson:jar:2.8.6:compile
[INFO] +- org.junit.platform:junit-platform-runner:jar:1.6.3:test
[INFO] |  +- junit:junit:jar:4.13.2:test
[INFO] |  |  \- org.hamcrest:hamcrest-core:jar:2.2:test
[INFO] |  +- org.apiguardian:apiguardian-api:jar:1.1.0:test
[INFO] |  +- org.junit.platform:junit-platform-launcher:jar:1.6.3:test
[INFO] |  |  \- org.junit.platform:junit-platform-engine:jar:1.6.3:test
[INFO] |  \- org.junit.platform:junit-platform-suite-api:jar:1.6.3:test
[INFO] +- org.springframework:spring-webflux:jar:5.2.14.RELEASE:compile
[INFO] |  \- org.springframework:spring-beans:jar:5.2.14.RELEASE:compile
[INFO] +- org.apache.commons:commons-csv:jar:1.8:compile
[INFO] +- org.codehaus.jettison:jettison:jar:1.4.0:compile
[INFO] +- org.springframework.kafka:spring-kafka:jar:2.5.12.RELEASE:compile
[INFO] |  +- org.springframework:spring-context:jar:5.2.14.RELEASE:compile
[INFO] |  +- org.springframework:spring-messaging:jar:5.2.14.RELEASE:compile
[INFO] |  \- org.springframework:spring-tx:jar:5.2.14.RELEASE:compile
[INFO] +- org.apache.kafka:kafka-clients:jar:2.8.0:compile
[INFO] |  +- com.github.luben:zstd-jni:jar:1.4.9-1:compile
[INFO] |  +- org.lz4:lz4-java:jar:1.7.1:compile
[INFO] |  \- org.xerial.snappy:snappy-java:jar:1.1.8.1:compile
[INFO] +- io.projectreactor:reactor-core:jar:3.4.3:compile
[INFO] |  \- org.reactivestreams:reactive-streams:jar:1.0.3:compile
[INFO] \- com.github.danielwegener:logback-kafka-appender:jar:0.2.0-RC2:compile
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  01:53 min
[INFO] Finished at: 2022-06-15T12:57:20+05:30
[INFO] ------------------------------------------------------------------------
joshfree commented 2 years ago

Hi @XiaoYue2-22 thank you for reaching out to us via this GitHub issue.

At first glance, this appears to be caused by a nimbus dependency conflict between the

        <groupId>com.nielsen.buy.commons</groupId>
        <artifactId>cs-commons-security</artifactId>
        <version>${ndx.security.version}</version>

and the

[INFO] +- com.azure:azure-identity:jar:1.0.4:compile
[INFO] | +- com.microsoft.azure:msal4j:jar:0.5.0-preview:compile
[INFO] | +- com.nimbusds:oauth2-oidc-sdk:jar:7.1.3:compile
[INFO] | | +- com.github.stephenc.jcip:jcip-annotations:jar:1.0-1:compile
[INFO] | | +- com.nimbusds:content-type:jar:2.0:compile
[INFO] | | +- net.minidev:json-smart:jar:2.3:compile
[INFO] | | | - net.minidev:accessors-smart:jar:1.2:compile
[INFO] | | | - org.ow2.asm:asm:jar:5.0.4:compile
[INFO] | | +- com.nimbusds:lang-tag:jar:1.4.4:compile
[INFO] | | +- com.nimbusds:nimbus-jose-jwt:jar:8.19:compile

components. This page has more information on resolving java dependency conflicts: https://github.com/Azure/azure-sdk-for-java/wiki/Frequently-Asked-Questions#dependency-conflict

Also @billwert from the azure-identity sdk will be able to assist you further.

XiaoYue2-22 commented 2 years ago

Thank you very much @joshfree . Let me check and will let you know if it works

XiaoYue2-22 commented 2 years ago

We have already excluded the nimbus dependency from the above the mentioned jar. Still we are getting the same error "Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: com/nimbusds/oauth2/sdk/http/CommonContentTypes" Could you help on this? @billwert

billwert commented 2 years ago

Hi @XiaoYue2-22! The version of azure-identity you are using is 2.5 years old. We have removed the dependency on nimbus since then. If possible, I first recommend moving to the latest version of azure-identity and repeating your test.

ghost commented 1 year ago

Hi, we're sending this friendly reminder because we haven't heard back from you in a while. We need more information about this issue to help address it. Please be sure to give us your input within the next 7 days. If we don't hear back from you within 14 days of this comment the issue will be automatically closed. Thank you!