Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

java.lang.ExceptionInInitializerError #3272

Open
saro06kumar opened this issue Sep 30, 2023 · 3 comments
Open

java.lang.ExceptionInInitializerError #3272

saro06kumar opened this issue Sep 30, 2023 · 3 comments

Comments

@saro06kumar
Copy link

What happened?

FAILED: terabase.desginPro.api.APITest.getAccessToken
java.lang.ExceptionInInitializerError
at net.serenitybdd.rest.utils.RestDecorationHelper.decorate(RestDecorationHelper.java:20)
at net.serenitybdd.rest.SerenityRest.fetchRequestSpecification(SerenityRest.java:233)
at net.serenitybdd.rest.SerenityRest.given(SerenityRest.java:220)
at terabase.desginPro.api.APITest.getAccessToken(APITest.java:24)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
at java.base/java.lang.reflect.Method.invoke(Method.java:578)
at org.testng.internal.invokers.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:139)
at org.testng.internal.invokers.TestInvoker.invokeMethod(TestInvoker.java:664)
at org.testng.internal.invokers.TestInvoker.invokeTestMethod(TestInvoker.java:227)
at org.testng.internal.invokers.MethodRunner.runInSequence(MethodRunner.java:50)
at org.testng.internal.invokers.TestInvoker$MethodInvocationAgent.invoke(TestInvoker.java:957)
at org.testng.internal.invokers.TestInvoker.invokeTestMethods(TestInvoker.java:200)
at org.testng.internal.invokers.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:148)
at org.testng.internal.invokers.TestMethodWorker.run(TestMethodWorker.java:128)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
at org.testng.TestRunner.privateRun(TestRunner.java:848)
at org.testng.TestRunner.run(TestRunner.java:621)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:443)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:437)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:397)
at org.testng.SuiteRunner.run(SuiteRunner.java:336)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:95)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1280)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1200)
at org.testng.TestNG.runSuites(TestNG.java:1114)
at org.testng.TestNG.run(TestNG.java:1082)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)
Caused by: java.lang.UnsupportedOperationException: Cannot define class using reflection: Unsupported class file major version 63
at net.bytebuddy.dynamic.loading.ClassInjector$UsingReflection$Dispatcher$Initializable$Unavailable.defineClass(ClassInjector.java:435)
at net.bytebuddy.dynamic.loading.ClassInjector$UsingReflection.injectRaw(ClassInjector.java:251)
at net.bytebuddy.dynamic.loading.ClassInjector$AbstractBase.inject(ClassInjector.java:110)
at net.bytebuddy.dynamic.loading.ClassLoadingStrategy$Default$InjectionDispatcher.load(ClassLoadingStrategy.java:233)
at net.bytebuddy.dynamic.loading.ClassLoadingStrategy$Default.load(ClassLoadingStrategy.java:144)
at net.bytebuddy.dynamic.TypeResolutionStrategy$Passive.initialize(TypeResolutionStrategy.java:100)
at net.bytebuddy.dynamic.DynamicType$Default$Unloaded.load(DynamicType.java:6292)
at net.serenitybdd.rest.utils.RestSpecificationFactory.(RestSpecificationFactory.java:60)
... 30 more

What did you expect to happen?

while running the im getting this error how to resolve this

Serenity BDD version

4.0.12

JDK version

11

Execution environment

api testing i used

here my classs file

package terabase.desginPro.api;

import org.testng.annotations.Test;

import io.restassured.response.Response;
import io.restassured.specification.RequestSpecification;
import net.serenitybdd.junit.runners.SerenityRunner;
import net.serenitybdd.rest.SerenityRest;
import net.thucydides.core.annotations.Title;

public class APITest {

@Test

public void getAccessToken() {
	 String url = "https://terabase-dev.auth.us-west-2.amazoncognito.com/oauth2/token";
     String clientId = "4g1c2eqkgahd7p7619n00jes4h";
     String clientSecret = "e898dnequ6g4nv5sntndi7ou2mft0tiuiuhf09qmabbsj9n6351";
     String grantType = "client_credentials";

     // Use SerenityRest to make API requests
     Response request=  SerenityRest.given()
    		 
         .contentType("application/x-www-form-urlencoded")
         .formParam("client_id", clientId)
         .formParam("client_secret", clientSecret)
         .formParam("grant_type", grantType)
         
         .when()
         .post(url);
      System.out.println(request.asPrettyString());
    // Assertions and other steps
}

}

How to reproduce the bug.


4.0.0
cucumber
tbTestScript
0.0.1-SNAPSHOT

	<pluginManagement>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>3.2.0</version>
				<configuration>
					<archive>
						<manifest>
							<mainClass>terabase</mainClass>
						</manifest>
					</archive>
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>3.0.0-M7</version>
				<configuration>
					<suiteXmlFiles>
						<!-- <suiteXmlFile>${basedir}/testng-XMLFiles/${module}</suiteXmlFile>  -->
						
						<!-- <suiteXmlFile>${basedir}/testng-XMLFiles/TestLargeformatSimpleLayout500AC.xml</suiteXmlFile> -->  

					</suiteXmlFiles>
				</configuration>
			</plugin>
			<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.11.0</version>
    <configuration>
		<source>11</source>
		<target>11</target>       
		  <release>11</release>
    </configuration>
  </plugin>
			 
		</plugins>
	</pluginManagement>
</build>
<properties>
	 
  <maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>


<selenium.version>4.12.1</selenium.version>
</properties>


<dependencies>
 <!-- https://mvnrepository.com/artifact/io.rest-assured/rest-assured -->
io.rest-assured rest-assured 5.3.2 io.rest-assured rest-assured-common 5.3.2
		<groupId>io.rest-assured</groupId>
		<artifactId>json-schema-validator</artifactId>
		<version>5.3.2</version>
	</dependency>
	<!-- https://mvnrepository.com/artifact/io.rest-assured/json-path -->
	<dependency>
		<groupId>io.rest-assured</groupId>
		<artifactId>json-path</artifactId>
		<version>5.3.2</version>
		<scope>test</scope>
	</dependency>
	
	<dependency>
		<groupId>io.rest-assured</groupId>
		<artifactId>xml-path</artifactId>
		<version>5.3.2</version>
	</dependency>
	<dependency>
		<groupId>io.rest-assured</groupId>
		<artifactId>rest-assured-all</artifactId>
		<version>5.3.2</version>
		<scope>test</scope>
	</dependency>
	<dependency>
		<groupId>com.google.api-client</groupId>
		<artifactId>google-api-client</artifactId>
		<version>2.0.0</version>
	</dependency>
	<dependency>
		<groupId>com.google.oauth-client</groupId>
		<artifactId>google-oauth-client-jetty</artifactId>
		<version>1.34.1</version>
	</dependency>
	<dependency>
		<groupId>com.google.apis</groupId>
		<artifactId>google-api-services-gmail</artifactId>
		<version>v1-rev20220404-2.0.0</version>
	</dependency>
	<dependency>
		<groupId>com.sun.mail</groupId>
		<artifactId>javax.mail</artifactId>
		<version>1.4.7</version>
	</dependency>
	<dependency>
		<groupId>javax.mail</groupId>
		<artifactId>javax.mail-api</artifactId>
		<version>1.6.2</version>
	</dependency>
	<!-- Thanks for using https://jar-download.com -->
	<!-- https://mvnrepository.com/artifact/org.apache.maven/maven-model -->
	<dependency>
		<groupId>org.apache.maven</groupId>
		<artifactId>maven-model</artifactId>
		<version>3.8.3</version>
	</dependency>
org.json json 20230618 com.google.code.gson gson 2.10.1 com.github.scribejava scribejava-apis 8.3.3 runtime
<!-- https://mvnrepository.com/artifact/io.rest-assured/rest-assured-all -->

	<dependency>
		<groupId>org.mongodb</groupId>
		<artifactId>mongodb-driver</artifactId>
		<version>3.12.0</version>
	</dependency>


	<dependency>
		<groupId>com.aventstack</groupId>
		<artifactId>extentreports</artifactId>
		<version>3.1.2</version>
	</dependency>


	<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-java -->
	<dependency>
		<groupId>io.cucumber</groupId>
		<artifactId>cucumber-java</artifactId>
		<version>7.13.0</version>
	</dependency>


	<dependency>
		<groupId>io.cucumber</groupId>
		<artifactId>cucumber-bom</artifactId>
		<version>7.13.0</version>
		<type>pom</type>
		<scope>test</scope>
	</dependency>

 
	<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-core -->
	<dependency>
		<groupId>io.cucumber</groupId>
		<artifactId>cucumber-core</artifactId>
		<version>7.13.0</version>
	</dependency>
	<!-- https://mvnrepository.com/artifact/io.cucumber/gherkin -->
	<dependency>
		<groupId>io.cucumber</groupId>
		<artifactId>gherkin</artifactId>
		<version>26.2.0</version>
	</dependency>
	<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-junit -->
	<dependency>
		<groupId>io.cucumber</groupId>
		<artifactId>cucumber-junit</artifactId>
		<version>7.13.0</version>
		<scope>test</scope>
	</dependency>


	<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-testng -->
	<dependency>
		<groupId>io.cucumber</groupId>
		<artifactId>cucumber-testng</artifactId>
		<version>7.13.0</version>
		<scope>test</scope>
	</dependency>
	<!-- https://mvnrepository.com/artifact/io.cucumber/tag-expressions -->
	<dependency>
		<groupId>io.cucumber</groupId>
		<artifactId>tag-expressions</artifactId>
		<version>5.0.2</version>
	</dependency>

	<!--
	https://mvnrepository.com/artifact/io.cucumber/cucumber-picocontainer -->
	<dependency>
		<groupId>io.cucumber</groupId>
		<artifactId>cucumber-picocontainer</artifactId>
		<version>7.13.0</version>
	</dependency>

	<!-- added new guva-->
	<!--api testing dependencies-->
	<!-- https://mvnrepository.com/artifact/org.glassfish/jakarta.json -->
	<dependency>
		<groupId>org.glassfish</groupId>
		<artifactId>jakarta.json</artifactId>
		<version>2.0.1</version>
	</dependency>
	<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->


	<dependency>
		<groupId>com.mashape.unirest</groupId>
		<artifactId>unirest-java</artifactId>
		<version>1.4.9</version>
	</dependency>
	<dependency>
		<groupId>org.jtwig</groupId>
		<artifactId>jtwig-core</artifactId>
		<version>5.87.0.RELEASE</version>
	</dependency>
	<!--End api testing dependencies -->
	<!-- Extent Reports - Excel Converter -->


	<dependency>
		<groupId>mysql</groupId>
		<artifactId>mysql-connector-java</artifactId>
		<version>8.0.26</version>
	</dependency>
 
	 
	<dependency>
		<groupId>org.seleniumhq.selenium</groupId>
		<artifactId>selenium-devtools-v114</artifactId>
		<version>4.10.0</version>
	</dependency>

	<dependency>
		<groupId>org.seleniumhq.selenium</groupId>
		<artifactId>selenium-devtools-v111</artifactId>
		<version>4.8.3</version>
	</dependency>
	<!--guava added-->
	<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
	<dependency>
		<groupId>com.google.guava</groupId>
		<artifactId>guava</artifactId>
		<version>31.1-jre</version>
	</dependency>
	<dependency>
		<groupId>com.opencsv</groupId>
		<artifactId>opencsv</artifactId>
		<version>5.5.2</version>
	</dependency>


	<dependency>
		<groupId>org.slf4j</groupId>
		<artifactId>slf4j-simple</artifactId>
		<version>1.7.32</version>
		<scope>compile</scope>
	</dependency>

	<dependency>
		<groupId>junit</groupId>
		<artifactId>junit</artifactId>
		<version>4.12</version>
	</dependency>
	<!-- https://mvnrepository.com/artifact/com.sikulix/sikulixapi -->
	<dependency>
		<groupId>com.sikulix</groupId>
		<artifactId>sikulixapi</artifactId>
		<version>2.0.5</version>
	</dependency>
	<!--
	https://mvnrepository.com/artifact/org.apache.maven/maven-plugin-api -->
	<dependency>
		<groupId>org.apache.maven</groupId>
		<artifactId>maven-plugin-api</artifactId>
		<version>3.8.1</version>
	</dependency>
	<!-- https://mvnrepository.com/artifact/com.sikulix/sikulixlibswin -->
	<dependency>
		<groupId>com.sikulix</groupId>
		<artifactId>sikulixlibswin</artifactId>
		<version>1.1.0</version>
	</dependency>

	<dependency>
		<groupId>org.apache.poi</groupId>
		<artifactId>poi-ooxml-full</artifactId>
		<version>5.2.3</version>
	</dependency>

	<dependency>
		<groupId>org.apache.poi</groupId>
		<artifactId>ooxml-schemas</artifactId>
		<version>1.4</version>
	</dependency>

	<dependency>
		<groupId>org.apache.poi</groupId>
		<artifactId>poi</artifactId>
		<version>5.2.3</version>
	</dependency>

	<dependency>
		<groupId>org.apache.poi</groupId>
		<artifactId>poi-ooxml</artifactId>
		<version>5.2.3</version>
	</dependency>

	<dependency>
		<groupId>org.apache.poi</groupId>
		<artifactId>poi-ooxml-schemas</artifactId>
		<version>4.1.2</version>
	</dependency>


	<dependency>
		<groupId>com.github.stephenc.monte</groupId>
		<artifactId>monte-screen-recorder</artifactId>
		<version>0.7.7.0</version>
	</dependency>


	<dependency>
		<groupId>com.googlecode.json-simple</groupId>
		<artifactId>json-simple</artifactId>
		<version>1.1.1</version>
	</dependency>


	<!-- https://mvnrepository.com/artifact/org.freemarker/freemarker -->
	<dependency>
		<groupId>org.freemarker</groupId>
		<artifactId>freemarker</artifactId>
		<version>2.3.23</version>
	</dependency>
	<!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
	<dependency>
		<groupId>org.jsoup</groupId>
		<artifactId>jsoup</artifactId>
		<version>1.8.3</version>
	</dependency>
	<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
	<dependency>
		<groupId>commons-io</groupId>
		<artifactId>commons-io</artifactId>
		<version>2.11.0</version>
	</dependency>
	<!-- https://mvnrepository.com/artifact/ru.yandex.qatools.ashot/ashot -->
	<dependency>
		<groupId>ru.yandex.qatools.ashot</groupId>
		<artifactId>ashot</artifactId>
		<version>1.5.4</version>
	</dependency>
	<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-scratchpad -->
	<dependency>
		<groupId>org.apache.poi</groupId>
		<artifactId>poi-scratchpad</artifactId>
		<version>5.2.3</version>
	</dependency>

 
	<!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest-all -->
	<dependency>
		<groupId>org.hamcrest</groupId>
		<artifactId>hamcrest-all</artifactId>
		<version>1.3</version>
		<scope>test</scope>
	</dependency>
	<!--
	https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-chrome-driver -->
	<dependency>
		<groupId>org.seleniumhq.selenium</groupId>
		<artifactId>selenium-chrome-driver</artifactId>
		<version>4.0.0-beta-4</version>
	</dependency>
	<!--
	https://mvnrepository.com/artifact/io.github.bonigarcia/webdrivermanager -->
	<dependency>
		<groupId>io.github.bonigarcia</groupId>
		<artifactId>webdrivermanager</artifactId>
		<version>5.4.1</version>
	</dependency>
	<!--
	https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
	<dependency>
		<groupId>org.seleniumhq.selenium</groupId>
		<artifactId>selenium-java</artifactId>
		<version>4.10.0</version>
	</dependency>

	<!--
	https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-remote-driver -->
	<dependency>
		<groupId>org.seleniumhq.selenium</groupId>
		<artifactId>selenium-remote-driver</artifactId>
		<version>4.0.0-beta-4</version>
	</dependency>
	<!--
	https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-support -->
	<dependency>
		<groupId>org.seleniumhq.selenium</groupId>
		<artifactId>selenium-support</artifactId>
		<version>4.10.0</version>
	</dependency>

	 <dependency>
		<groupId>org.seleniumhq.selenium</groupId>
		<artifactId>selenium-api</artifactId>
		<version>4.0.0-beta-4</version>
	</dependency>
	 <dependency>
		<groupId>org.seleniumhq.selenium</groupId>
		<artifactId>selenium-server</artifactId>
		<version>4.0.0-alpha-2</version>
	</dependency>
 
	<dependency>
		<groupId>org.seleniumhq.selenium</groupId>
		<artifactId>selenium-http</artifactId>
		<version>4.10.0</version>
	</dependency>

	 
	<dependency>
		<groupId>org.seleniumhq.selenium</groupId>
		<artifactId>selenium-htmlunit-driver</artifactId>
		<version>2.52.0</version>
	</dependency>

	<dependency>
		<groupId>org.testng</groupId>
		<artifactId>testng</artifactId>
		<version>7.8.0</version>
		<scope>test</scope>
	</dependency>
	<dependency>
		<groupId>org.apache.commons</groupId>
		<artifactId>commons-lang3</artifactId>
		<version>3.12.0</version>
	</dependency>
 
	<dependency>
		<groupId>org.apache.logging.log4j</groupId>
		<artifactId>log4j-core</artifactId>
		<version>2.20.0</version>
	</dependency>

	<!-- https://mvnrepository.com/artifact/org.apache.maven/maven-artifact -->
	<dependency>
		<groupId>org.apache.maven</groupId>
		<artifactId>maven-artifact</artifactId>
		<version>3.8.1</version>
	</dependency>
	 
 

 <dependency>
		<groupId>org.hamcrest</groupId>
		<artifactId>hamcrest-core</artifactId>
		<version>2.2</version>
		<scope>test</scope>
	</dependency>
	<!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest-library -->
	<dependency>
		<groupId>org.hamcrest</groupId>
		<artifactId>hamcrest-library</artifactId>
		<version>2.2</version>
		<scope>test</scope>
	</dependency>


	 <dependency>
		<groupId>org.hamcrest</groupId>
		<artifactId>java-hamcrest</artifactId>
		<version>2.0.0.0</version>
		<scope>test</scope>
	</dependency>
net.serenity-bdd serenity-core 4.0.12 net.serenity-bdd serenity-rest-assured 4.0.12 net.serenity-bdd serenity-junit 4.0.12 net.thucydides thucydides-core 0.9.275 org.junit.jupiter junit-jupiter-api 5.10.0 test
</dependencies>

How can we make it happen?

Work on this myself and propose a PR (with Serenity BDD team guidance)

@wakaleo
Copy link
Member

wakaleo commented Sep 30, 2023

Thanks for proposing to investigate this issue. "java.lang.UnsupportedOperationException: Cannot define class using reflection: Unsupported class file major version 63" generally indicates a library that was built with a different (older) version of Java than the one you are running with. You have a lot of dependencies, including some older ones, so the first thing to do would be to do a dependency analysis (mvn dependency:tree -Dverbose) to find any conflicts.

@saro06kumar
Copy link
Author

@wakaleo
E:\selenium code\Tbtestscript>mvn dependency:tree -Dverbose
[INFO] Scanning for projects...
[INFO]
[INFO] -----------------------< cucumber:tbTestScript >------------------------
[INFO] Building tbTestScript 0.0.1-SNAPSHOT
[INFO] from pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- dependency:2.8:tree (default-cli) @ tbTestScript ---
[INFO] cucumber:tbTestScript:jar:0.0.1-SNAPSHOT
[INFO] +- com.fasterxml.jackson.core:jackson-databind:jar:2.15.2:compile
[INFO] | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.15.2:compile
[INFO] | - (com.fasterxml.jackson.core:jackson-core:jar:2.15.2:compile - omitted for conflict with 2.12.5)
[INFO] +- com.fasterxml.jackson.core:jackson-core:jar:2.12.5:compile
[INFO] +- io.rest-assured:rest-assured:jar:5.3.2:compile
[INFO] | +- org.apache.groovy:groovy:jar:4.0.11:compile
[INFO] | +- org.apache.groovy:groovy-xml:jar:4.0.11:compile
[INFO] | | - (org.apache.groovy:groovy:jar:4.0.11:compile - omitted for duplicate)
[INFO] | +- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
[INFO] | | +- (org.apache.httpcomponents:httpcore:jar:4.4.13:compile - omitted for conflict with 4.4.15)
[INFO] | | +- commons-logging:commons-logging:jar:1.2:compile
[INFO] | | - (commons-codec:commons-codec:jar:1.11:compile - omitted for conflict with 1.15)
[INFO] | +- org.apache.httpcomponents:httpmime:jar:4.5.13:compile
[INFO] | | - (org.apache.httpcomponents:httpclient:jar:4.5.13:compile - omitted for duplicate)
[INFO] | +- org.hamcrest:hamcrest:jar:2.2:compile
[INFO] | +- org.ccil.cowan.tagsoup:tagsoup:jar:1.2.1:compile
[INFO] | +- (io.rest-assured:json-path:jar:5.3.2:compile - omitted for duplicate)
[INFO] | - (io.rest-assured:xml-path:jar:5.3.2:compile - omitted for duplicate)
[INFO] +- io.rest-assured:rest-assured-common:jar:5.3.2:compile
[INFO] | +- (org.apache.groovy:groovy:jar:4.0.11:compile - omitted for duplicate)
[INFO] | - (org.apache.commons:commons-lang3:jar:3.11:compile - omitted for conflict with 3.12.0)
[INFO] +- io.rest-assured:json-schema-validator:jar:5.3.2:compile
[INFO] | +- com.github.java-json-tools:json-schema-validator:jar:2.2.14:compile
[INFO] | | +- com.github.java-json-tools:jackson-coreutils-equivalence:jar:1.0:compile
[INFO] | | | +- (com.fasterxml.jackson.core:jackson-databind:jar:2.11.0:runtime - omitted for conflict with 2.15.2)
[INFO] | | | - (com.github.java-json-tools:jackson-coreutils:jar:2.0:compile - scope updated from runtime; omitted for duplicate)
[INFO] | | +- com.github.java-json-tools:json-schema-core:jar:1.2.14:compile
[INFO] | | | +- (com.fasterxml.jackson.core:jackson-databind:jar:2.11.0:compile - omitted for conflict with 2.15.2)
[INFO] | | | +- com.github.java-json-tools:jackson-coreutils:jar:2.0:compile
[INFO] | | | | +- (com.fasterxml.jackson.core:jackson-databind:jar:2.11.0:runtime - omitted for conflict with 2.15.2)
[INFO] | | | | +- (com.github.java-json-tools:msg-simple:jar:1.2:compile - scope updated from runtime; omitted for duplicate)
[INFO] | | | | - (com.google.code.findbugs:jsr305:jar:3.0.2:compile - scope updated from runtime; omitted for duplicate)
[INFO] | | | +- (com.github.java-json-tools:jackson-coreutils-equivalence:jar:1.0:compile - omitted for duplicate)
[INFO] | | | +- com.github.java-json-tools:uri-template:jar:0.10:compile
[INFO] | | | | +- com.github.java-json-tools:msg-simple:jar:1.2:compile
[INFO] | | | | | +- com.github.java-json-tools:btf:jar:1.3:compile
[INFO] | | | | | | - (com.google.code.findbugs:jsr305:jar:3.0.2:compile - omitted for conflict with 2.0.1)
[INFO] | | | | | - (com.google.code.findbugs:jsr305:jar:2.0.1:compile - omitted for duplicate)
[INFO] | | | | - (com.google.code.findbugs:jsr305:jar:2.0.1:compile - omitted for conflict with 3.0.2)
[INFO] | | | +- org.mozilla:rhino:jar:1.7.7.2:compile
[INFO] | | | - (com.google.code.findbugs:jsr305:jar:3.0.2:compile - omitted for duplicate)
[INFO] | | +- com.sun.mail:mailapi:jar:1.6.2:compile
[INFO] | | +- (joda-time:joda-time:jar:2.10.5:compile - omitted for conflict with 2.12.2)
[INFO] | | +- com.googlecode.libphonenumber:libphonenumber:jar:8.11.1:compile
[INFO] | | +- (com.google.code.findbugs:jsr305:jar:3.0.2:compile - omitted for duplicate)
[INFO] | | - net.sf.jopt-simple:jopt-simple:jar:5.0.4:compile
[INFO] | +- (com.google.guava:guava:jar:32.0.1-jre:compile - omitted for conflict with 31.1-jre)
[INFO] | - (org.hamcrest:hamcrest:jar:2.2:compile - omitted for duplicate)
[INFO] +- io.rest-assured:json-path:jar:5.3.2:compile
[INFO] | +- org.apache.groovy:groovy-json:jar:4.0.11:compile
[INFO] | | - (org.apache.groovy:groovy:jar:4.0.11:compile - omitted for duplicate)
[INFO] | +- (org.apache.groovy:groovy:jar:4.0.11:compile - omitted for duplicate)
[INFO] | - (io.rest-assured:rest-assured-common:jar:5.3.2:compile - omitted for duplicate)
[INFO] +- io.rest-assured:xml-path:jar:5.3.2:compile
[INFO] | +- (org.apache.groovy:groovy-xml:jar:4.0.11:compile - omitted for duplicate)
[INFO] | +- (org.apache.groovy:groovy:jar:4.0.11:compile - omitted for duplicate)
[INFO] | +- (io.rest-assured:rest-assured-common:jar:5.3.2:compile - omitted for duplicate)
[INFO] | +- (org.apache.commons:commons-lang3:jar:3.11:compile - omitted for duplicate)
[INFO] | - (org.ccil.cowan.tagsoup:tagsoup:jar:1.2.1:compile - omitted for duplicate)
[INFO] +- io.rest-assured:rest-assured-all:jar:5.3.2:compile
[INFO] | +- (org.apache.groovy:groovy:jar:4.0.11:compile - omitted for duplicate)
[INFO] | +- (org.apache.commons:commons-lang3:jar:3.11:compile - omitted for duplicate)
[INFO] | +- (org.apache.groovy:groovy-xml:jar:4.0.11:compile - omitted for duplicate)
[INFO] | +- (org.ccil.cowan.tagsoup:tagsoup:jar:1.2.1:compile - omitted for duplicate)
[INFO] | - (org.apache.groovy:groovy-json:jar:4.0.11:compile - omitted for duplicate)
[INFO] +- com.google.api-client:google-api-client:jar:2.0.0:compile
[INFO] | +- com.google.oauth-client:google-oauth-client:jar:1.34.1:compile
[INFO] | | +- (com.google.http-client:google-http-client:jar:1.42.0:compile - omitted for conflict with 1.42.1)
[INFO] | | +- (com.google.http-client:google-http-client-gson:jar:1.42.0:compile - omitted for conflict with 1.42.1)
[INFO] | | - (com.google.guava:guava:jar:31.1-android:compile - omitted for conflict with 32.0.1-jre)
[INFO] | +- com.google.http-client:google-http-client-gson:jar:1.42.1:compile
[INFO] | | +- (com.google.http-client:google-http-client:jar:1.42.1:compile - omitted for conflict with 1.42.0)
[INFO] | | - (com.google.code.gson:gson:jar:2.9.0:compile - omitted for conflict with 2.10.1)
[INFO] | +- (com.google.guava:guava:jar:31.1-jre:compile - omitted for conflict with 32.0.1-jre)
[INFO] | +- com.google.http-client:google-http-client-apache-v2:jar:1.42.1:compile
[INFO] | | +- (com.google.http-client:google-http-client:jar:1.42.1:compile - omitted for conflict with 1.42.0)
[INFO] | | +- (org.apache.httpcomponents:httpclient:jar:4.5.13:compile - omitted for duplicate)
[INFO] | | - (org.apache.httpcomponents:httpcore:jar:4.4.15:compile - omitted for conflict with 4.4.13)
[INFO] | +- org.apache.httpcomponents:httpcore:jar:4.4.15:compile
[INFO] | +- (org.apache.httpcomponents:httpclient:jar:4.5.13:compile - omitted for duplicate)
[INFO] | - com.google.http-client:google-http-client:jar:1.42.1:compile
[INFO] | +- (org.apache.httpcomponents:httpclient:jar:4.5.13:compile - omitted for duplicate)
[INFO] | +- (org.apache.httpcomponents:httpcore:jar:4.4.15:compile - omitted for duplicate)
[INFO] | +- (com.google.code.findbugs:jsr305:jar:3.0.2:compile - omitted for duplicate)
[INFO] | +- (com.google.guava:guava:jar:30.1.1-android:compile - omitted for conflict with 32.0.1-jre)
[INFO] | +- (com.google.j2objc:j2objc-annotations:jar:1.3:compile - omitted for conflict with 2.8)
[INFO] | +- io.opencensus:opencensus-api:jar:0.31.1:compile
[INFO] | | - io.grpc:grpc-context:jar:1.27.2:compile
[INFO] | - io.opencensus:opencensus-contrib-http-util:jar:0.31.1:compile
[INFO] | +- (io.opencensus:opencensus-api:jar:0.31.1:compile - omitted for duplicate)
[INFO] | - (com.google.guava:guava:jar:29.0-android:compile - omitted for conflict with 32.0.1-jre)
[INFO] +- com.google.oauth-client:google-oauth-client-jetty:jar:1.34.1:compile
[INFO] | +- com.google.oauth-client:google-oauth-client-java6:jar:1.34.1:compile
[INFO] | | +- (com.google.oauth-client:google-oauth-client:jar:1.34.1:compile - omitted for duplicate)
[INFO] | | - (com.google.http-client:google-http-client:jar:1.42.0:compile - omitted for conflict with 1.42.1)
[INFO] | - (com.google.http-client:google-http-client:jar:1.42.0:compile - omitted for conflict with 1.42.1)
[INFO] +- com.google.apis:google-api-services-gmail:jar:v1-rev20220404-2.0.0:compile
[INFO] | - (com.google.api-client:google-api-client:jar:2.0.0:compile - omitted for duplicate)
[INFO] +- com.sun.mail:javax.mail:jar:1.4.7:compile
[INFO] | - javax.activation:activation:jar:1.1:compile
[INFO] +- javax.mail:javax.mail-api:jar:1.6.2:compile
[INFO] +- org.apache.maven:maven-model:jar:3.8.3:compile
[INFO] | - org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
[INFO] +- org.json:json:jar:20230618:compile
[INFO] +- com.google.code.gson:gson:jar:2.10.1:compile
[INFO] +- com.github.scribejava:scribejava-apis:jar:8.3.3:runtime
[INFO] | +- com.github.scribejava:scribejava-core:jar:8.3.3:runtime
[INFO] | | +- com.github.scribejava:scribejava-java8:jar:8.3.3:runtime
[INFO] | | | - (com.fasterxml.jackson.core:jackson-databind:jar:2.14.0:runtime - omitted for conflict with 2.15.2)
[INFO] | | - (com.fasterxml.jackson.core:jackson-databind:jar:2.14.0:runtime - omitted for conflict with 2.15.2)
[INFO] | - (com.fasterxml.jackson.core:jackson-databind:jar:2.14.0:runtime - omitted for conflict with 2.15.2)
[INFO] +- org.mongodb:mongodb-driver:jar:3.12.0:compile
[INFO] | +- org.mongodb:bson:jar:3.12.0:compile
[INFO] | - org.mongodb:mongodb-driver-core:jar:3.12.0:compile
[INFO] | - (org.mongodb:bson:jar:3.12.0:compile - omitted for duplicate)
[INFO] +- com.aventstack:extentreports:jar:3.1.2:compile
[INFO] | +- (org.freemarker:freemarker:jar:2.3.23:compile - omitted for duplicate)
[INFO] | +- (org.mongodb:mongodb-driver:jar:3.3.0:compile - omitted for conflict with 3.12.0)
[INFO] | +- (org.apache.httpcomponents:httpclient:jar:4.5.2:compile - omitted for conflict with 4.5.13)
[INFO] | +- (org.apache.httpcomponents:httpmime:jar:4.5.2:compile - omitted for conflict with 4.5.13)
[INFO] | +- (org.jsoup:jsoup:jar:1.9.2:compile - omitted for conflict with 1.8.3)
[INFO] | - (com.google.code.gson:gson:jar:2.8.0:compile - omitted for conflict with 2.10.1)
[INFO] +- io.cucumber:cucumber-java:jar:7.13.0:compile
[INFO] | +- (io.cucumber:cucumber-core:jar:7.13.0:compile - omitted for duplicate)
[INFO] | - org.apiguardian:apiguardian-api:jar:1.1.2:compile
[INFO] +- io.cucumber:cucumber-bom:pom:7.13.0:compile
[INFO] +- io.cucumber:cucumber-core:jar:7.13.0:compile
[INFO] | +- io.cucumber:cucumber-gherkin:jar:7.13.0:compile
[INFO] | | - (io.cucumber:cucumber-plugin:jar:7.13.0:compile - omitted for duplicate)
[INFO] | +- io.cucumber:cucumber-gherkin-messages:jar:7.13.0:compile
[INFO] | | +- (io.cucumber:gherkin:jar:26.2.0:compile - omitted for duplicate)
[INFO] | | - (io.cucumber:cucumber-gherkin:jar:7.13.0:compile - omitted for duplicate)
[INFO] | +- io.cucumber:messages:jar:22.0.0:compile
[INFO] | +- (io.cucumber:tag-expressions:jar:5.0.1:compile - omitted for conflict with 5.0.2)
[INFO] | +- io.cucumber:cucumber-expressions:jar:16.1.2:compile
[INFO] | | - (org.apiguardian:apiguardian-api:jar:1.1.2:compile - omitted for duplicate)
[INFO] | +- io.cucumber:datatable:jar:7.13.0:compile
[INFO] | | - (org.apiguardian:apiguardian-api:jar:1.1.2:compile - omitted for duplicate)
[INFO] | +- io.cucumber:cucumber-plugin:jar:7.13.0:compile
[INFO] | | - (org.apiguardian:apiguardian-api:jar:1.1.2:compile - omitted for duplicate)
[INFO] | +- io.cucumber:docstring:jar:7.13.0:compile
[INFO] | | - (org.apiguardian:apiguardian-api:jar:1.1.2:compile - omitted for duplicate)
[INFO] | +- io.cucumber:html-formatter:jar:20.3.1:compile
[INFO] | | - (io.cucumber:messages:jar:22.0.0:compile - omitted for duplicate)
[INFO] | +- io.cucumber:junit-xml-formatter:jar:0.2.0:compile
[INFO] | | - (io.cucumber:messages:jar:22.0.0:compile - omitted for duplicate)
[INFO] | +- io.cucumber:ci-environment:jar:9.2.0:compile
[INFO] | - (org.apiguardian:apiguardian-api:jar:1.1.2:compile - omitted for duplicate)
[INFO] +- io.cucumber:gherkin:jar:26.2.0:compile
[INFO] | - (io.cucumber:messages:jar:22.0.0:compile - omitted for duplicate)
[INFO] +- io.cucumber:cucumber-junit:jar:7.13.0:compile
[INFO] | +- (org.apiguardian:apiguardian-api:jar:1.1.2:compile - omitted for duplicate)
[INFO] | +- (io.cucumber:cucumber-core:jar:7.13.0:compile - omitted for duplicate)
[INFO] | - (junit:junit:jar:4.13.2:compile - omitted for duplicate)
[INFO] +- io.cucumber:cucumber-testng:jar:7.13.0:compile
[INFO] | +- (org.apiguardian:apiguardian-api:jar:1.1.2:compile - omitted for duplicate)
[INFO] | +- (io.cucumber:cucumber-core:jar:7.13.0:compile - omitted for duplicate)
[INFO] | - (org.testng:testng:jar:7.8.0:compile - omitted for duplicate)
[INFO] +- io.cucumber:tag-expressions:jar:5.0.2:compile
[INFO] +- io.cucumber:cucumber-picocontainer:jar:7.13.0:compile
[INFO] | +- (io.cucumber:cucumber-core:jar:7.13.0:compile - omitted for duplicate)
[INFO] | +- (org.apiguardian:apiguardian-api:jar:1.1.2:compile - omitted for duplicate)
[INFO] | - org.picocontainer:picocontainer:jar:2.15:compile
[INFO] +- org.glassfish:jakarta.json:jar:2.0.1:compile
[INFO] +- com.mashape.unirest:unirest-java:jar:1.4.9:compile
[INFO] | +- (org.apache.httpcomponents:httpclient:jar:4.5.2:compile - omitted for conflict with 4.5.13)
[INFO] | +- org.apache.httpcomponents:httpasyncclient:jar:4.1.1:compile
[INFO] | | +- (org.apache.httpcomponents:httpcore:jar:4.4.4:compile - omitted for conflict with 4.4.15)
[INFO] | | +- org.apache.httpcomponents:httpcore-nio:jar:4.4.4:compile
[INFO] | | | - (org.apache.httpcomponents:httpcore:jar:4.4.4:compile - omitted for conflict with 4.4.15)
[INFO] | | +- (org.apache.httpcomponents:httpclient:jar:4.5.1:compile - omitted for conflict with 4.5.13)
[INFO] | | - (commons-logging:commons-logging:jar:1.2:compile - omitted for duplicate)
[INFO] | +- (org.apache.httpcomponents:httpmime:jar:4.5.2:compile - omitted for conflict with 4.5.13)
[INFO] | - (org.json:json:jar:20160212:compile - omitted for conflict with 20230618)
[INFO] +- org.jtwig:jtwig-core:jar:5.87.0.RELEASE:compile
[INFO] | +- org.jtwig:jtwig-reflection:jar:5.87.0.RELEASE:compile
[INFO] | | +- (com.google.guava:guava:jar:18.0:compile - omitted for conflict with 32.0.1-jre)
[INFO] | | +- (org.apache.commons:commons-lang3:jar:3.1:compile - omitted for conflict with 3.11)
[INFO] | | - (org.slf4j:slf4j-api:jar:1.7.12:compile - omitted for conflict with 1.7.36)
[INFO] | +- (com.google.guava:guava:jar:18.0:compile - omitted for conflict with 32.0.1-jre)
[INFO] | +- (org.apache.commons:commons-lang3:jar:3.6:compile - omitted for conflict with 3.11)
[INFO] | +- org.parboiled:parboiled-java:jar:1.1.7:compile
[INFO] | | +- org.parboiled:parboiled-core:jar:1.1.7:compile
[INFO] | | +- org.ow2.asm:asm:jar:5.0.3:compile
[INFO] | | +- org.ow2.asm:asm-tree:jar:5.0.3:compile
[INFO] | | | - (org.ow2.asm:asm:jar:5.0.3:compile - omitted for duplicate)
[INFO] | | +- org.ow2.asm:asm-analysis:jar:5.0.3:compile
[INFO] | | | - (org.ow2.asm:asm-tree:jar:5.0.3:compile - omitted for duplicate)
[INFO] | | - org.ow2.asm:asm-util:jar:5.0.3:compile
[INFO] | | - (org.ow2.asm:asm-tree:jar:5.0.3:compile - omitted for duplicate)
[INFO] | +- org.slf4j:slf4j-api:jar:1.7.12:compile
[INFO] | - com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4.2:compile
[INFO] +- mysql:mysql-connector-java:jar:8.0.26:compile
[INFO] | - com.google.protobuf:protobuf-java:jar:3.11.4:compile
[INFO] +- org.seleniumhq.selenium:selenium-devtools-v114:jar:4.10.0:compile
[INFO] | +- com.google.auto.service:auto-service-annotations:jar:1.0.1:compile
[INFO] | +- com.google.auto.service:auto-service:jar:1.0.1:compile
[INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- com.google.auto:auto-common:jar:1.2:compile
[INFO] | | | - (com.google.guava:guava:jar:31.0.1-jre:compile - omitted for conflict with 32.0.1-jre)
[INFO] | | - (com.google.guava:guava:jar:31.0.1-jre:compile - omitted for conflict with 32.0.1-jre)
[INFO] | +- (com.google.guava:guava:jar:31.1-jre:compile - omitted for conflict with 32.0.1-jre)
[INFO] | +- (org.seleniumhq.selenium:selenium-api:jar:4.10.0:compile - omitted for conflict with 4.0.0-beta-4)
[INFO] | +- org.seleniumhq.selenium:selenium-json:jar:4.10.0:compile
[INFO] | | - (org.seleniumhq.selenium:selenium-api:jar:4.10.0:compile - omitted for duplicate)
[INFO] | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.10.0:compile - omitted for conflict with 4.0.0-beta-4)
[INFO] +- org.seleniumhq.selenium:selenium-devtools-v111:jar:4.8.3:compile
[INFO] | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate)
[INFO] | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate)
[INFO] | +- (com.google.guava:guava:jar:31.1-jre:compile - omitted for conflict with 32.0.1-jre)
[INFO] | +- (org.seleniumhq.selenium:selenium-api:jar:4.8.3:compile - omitted for conflict with 4.10.0)
[INFO] | +- (org.seleniumhq.selenium:selenium-json:jar:4.8.3:compile - omitted for conflict with 4.10.0)
[INFO] | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.8.3:compile - omitted for conflict with 4.10.0)
[INFO] +- com.google.guava:guava:jar:31.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.12.0:compile
[INFO] | +- com.google.errorprone:error_prone_annotations:jar:2.11.0:compile
[INFO] | - com.google.j2objc:j2objc-annotations:jar:1.3:compile
[INFO] +- com.opencsv:opencsv:jar:5.5.2:compile
[INFO] | +- (org.apache.commons:commons-lang3:jar:3.12.0:compile - omitted for conflict with 3.11)
[INFO] | +- org.apache.commons:commons-text:jar:1.9:compile
[INFO] | | - (org.apache.commons:commons-lang3:jar:3.11:compile - omitted for duplicate)
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.9.4:compile
[INFO] | | +- (commons-logging:commons-logging:jar:1.2:compile - omitted for duplicate)
[INFO] | | - (commons-collections:commons-collections:jar:3.2.2:compile - omitted for duplicate)
[INFO] | - org.apache.commons:commons-collections4:jar:4.4:compile
[INFO] +- org.slf4j:slf4j-simple:jar:1.7.32:compile
[INFO] | - (org.slf4j:slf4j-api:jar:1.7.32:compile - omitted for conflict with 1.7.12)
[INFO] +- junit:junit:jar:4.13.2:compile
[INFO] | - (org.hamcrest:hamcrest-core:jar:1.3:compile - omitted for conflict with 2.2)
[INFO] +- com.sikulix:sikulixapi:jar:2.0.5:compile
[INFO] | +- org.python:jython-slim:jar:2.7.2:compile
[INFO] | | +- org.antlr:antlr:jar:3.5.2:compile
[INFO] | | | +- org.antlr:antlr-runtime:jar:3.5.2:compile
[INFO] | | | - org.antlr:ST4:jar:4.0.8:compile
[INFO] | | | - (org.antlr:antlr-runtime:jar:3.5.2:compile - omitted for duplicate)
[INFO] | | +- (javax.servlet:javax.servlet-api:jar:3.1.0:compile - scope updated from runtime; omitted for duplicate)
[INFO] | | +- (org.antlr:antlr-runtime:jar:3.5.2:compile - scope updated from runtime; omitted for duplicate)
[INFO] | | +- (org.apache.commons:commons-compress:jar:1.19:runtime - omitted for conflict with 1.21)
[INFO] | | +- (org.bouncycastle:bcpkix-jdk15on:jar:1.62:compile - scope updated from runtime; omitted for duplicate)
[INFO] | | +- (org.bouncycastle:bcprov-jdk15on:jar:1.62:compile - scope updated from runtime; omitted for duplicate)
[INFO] | | +- (org.ow2.asm:asm:jar:7.1:runtime - omitted for conflict with 5.0.3)
[INFO] | | +- org.ow2.asm:asm-commons:jar:7.1:runtime
[INFO] | | | +- (org.ow2.asm:asm:jar:7.1:runtime - omitted for conflict with 5.0.3)
[INFO] | | | +- (org.ow2.asm:asm-tree:jar:7.1:runtime - omitted for conflict with 5.0.3)
[INFO] | | | - (org.ow2.asm:asm-analysis:jar:7.1:runtime - omitted for conflict with 5.0.3)
[INFO] | | +- (org.ow2.asm:asm-util:jar:7.1:runtime - omitted for conflict with 5.0.3)
[INFO] | | +- (com.google.guava:guava:jar:28.0-android:runtime - omitted for conflict with 31.1-jre)
[INFO] | | +- (com.google.guava:failureaccess:jar:1.0.1:runtime - omitted for duplicate)
[INFO] | | +- (com.ibm.icu:icu4j:jar:59.1:compile - scope updated from runtime; omitted for duplicate)
[INFO] | | +- com.carrotsearch:java-sizeof:jar:0.0.5:runtime
[INFO] | | +- com.github.jnr:jffi:jar:1.2.20:runtime
[INFO] | | +- com.github.jnr:jnr-netdb:jar:1.1.6:runtime
[INFO] | | | - (com.github.jnr:jnr-ffi:jar:2.1.0:runtime - omitted for conflict with 2.1.10)
[INFO] | | +- com.github.jnr:jnr-ffi:jar:2.1.10:runtime
[INFO] | | | +- (com.github.jnr:jffi:jar:1.2.19:runtime - omitted for conflict with 1.2.20)
[INFO] | | | +- com.github.jnr:jffi:jar:native:1.2.19:runtime
[INFO] | | | +- (org.ow2.asm:asm:jar:7.1:runtime - omitted for conflict with 5.0.3)
[INFO] | | | +- (org.ow2.asm:asm-commons:jar:7.1:runtime - omitted for duplicate)
[INFO] | | | +- (org.ow2.asm:asm-analysis:jar:7.1:runtime - omitted for conflict with 5.0.3)
[INFO] | | | +- (org.ow2.asm:asm-tree:jar:7.1:runtime - omitted for conflict with 5.0.3)
[INFO] | | | +- (org.ow2.asm:asm-util:jar:7.1:runtime - omitted for conflict with 5.0.3)
[INFO] | | | +- com.github.jnr:jnr-a64asm:jar:1.0.0:runtime
[INFO] | | | - com.github.jnr:jnr-x86asm:jar:1.0.2:runtime
[INFO] | | +- com.github.jnr:jnr-posix:jar:3.0.50:runtime
[INFO] | | | +- (com.github.jnr:jnr-ffi:jar:2.1.10:runtime - omitted for duplicate)
[INFO] | | | - (com.github.jnr:jnr-constants:jar:0.9.12:runtime - omitted for duplicate)
[INFO] | | +- com.github.jnr:jnr-constants:jar:0.9.12:runtime
[INFO] | | +- jline:jline:jar:2.14.5:runtime
[INFO] | | +- (io.netty:netty-buffer:jar:4.1.45.Final:runtime - omitted for conflict with 4.1.92.Final)
[INFO] | | +- (io.netty:netty-codec:jar:4.1.45.Final:compile - scope updated from runtime; omitted for duplicate)
[INFO] | | +- (io.netty:netty-common:jar:4.1.45.Final:runtime - omitted for conflict with 4.1.92.Final)
[INFO] | | +- (io.netty:netty-handler:jar:4.1.45.Final:compile - scope updated from runtime; omitted for duplicate)
[INFO] | | +- (io.netty:netty-resolver:jar:4.1.45.Final:compile - scope updated from runtime; omitted for duplicate)
[INFO] | | +- (io.netty:netty-transport:jar:4.1.45.Final:runtime - omitted for conflict with 4.1.92.Final)
[INFO] | | - org.apache.ant:ant:jar:1.9.7:runtime
[INFO] | | - org.apache.ant:ant-launcher:jar:1.9.7:runtime
[INFO] | +- com.sikulix:sikulix2tigervnc:jar:1.1.4:compile
[INFO] | +- org.openpnp:opencv:jar:4.3.0-3:compile
[INFO] | +- commons-cli:commons-cli:jar:1.4:compile
[INFO] | +- org.apache.commons:commons-exec:jar:1.3:compile
[INFO] | +- net.java.dev.jna:jna-platform:jar:5.6.0:compile
[INFO] | | - net.java.dev.jna:jna:jar:5.6.0:compile
[INFO] | +- net.oneandone.reflections8:reflections8:jar:0.11.6:compile
[INFO] | | - org.javassist:javassist:jar:3.22.0-GA:compile
[INFO] | +- net.sourceforge.tess4j:tess4j:jar:4.5.4:compile
[INFO] | | +- (net.java.dev.jna:jna:jar:5.6.0:compile - omitted for duplicate)
[INFO] | | +- com.github.jai-imageio:jai-imageio-core:jar:1.4.0:compile
[INFO] | | +- org.ghost4j:ghost4j:jar:1.0.1:compile
[INFO] | | | +- (net.java.dev.jna:jna:jar:4.1.0:compile - omitted for conflict with 5.6.0)
[INFO] | | | +- (log4j:log4j:jar:1.2.17:compile - omitted for conflict with 1.2.14)
[INFO] | | | +- (commons-beanutils:commons-beanutils:jar:1.9.2:compile - omitted for conflict with 1.9.4)
[INFO] | | | +- org.apache.xmlgraphics:xmlgraphics-commons:jar:1.4:compile
[INFO] | | | | +- (commons-io:commons-io:jar:1.3.1:compile - omitted for conflict with 2.8.0)
[INFO] | | | | - (commons-logging:commons-logging:jar:1.0.4:compile - omitted for conflict with 1.2)
[INFO] | | | - com.lowagie:itext:jar:2.1.7:compile
[INFO] | | +- org.apache.pdfbox:pdfbox:jar:2.0.21:compile
[INFO] | | | +- org.apache.pdfbox:fontbox:jar:2.0.21:compile
[INFO] | | | | - (commons-logging:commons-logging:jar:1.2:compile - omitted for duplicate)
[INFO] | | | - (commons-logging:commons-logging:jar:1.2:compile - omitted for duplicate)
[INFO] | | +- org.apache.pdfbox:pdfbox-tools:jar:2.0.21:compile
[INFO] | | | - org.apache.pdfbox:pdfbox-debugger:jar:2.0.21:compile
[INFO] | | | - (org.apache.pdfbox:pdfbox:jar:2.0.21:compile - omitted for duplicate)
[INFO] | | +- org.apache.pdfbox:jbig2-imageio:jar:3.0.3:compile
[INFO] | | +- (commons-io:commons-io:jar:2.8.0:compile - omitted for conflict with 2.11.0)
[INFO] | | +- net.sourceforge.lept4j:lept4j:jar:1.13.2:compile
[INFO] | | | +- (net.java.dev.jna:jna:jar:5.6.0:compile - omitted for duplicate)
[INFO] | | | +- (commons-io:commons-io:jar:2.8.0:compile - omitted for duplicate)
[INFO] | | | - (com.github.jai-imageio:jai-imageio-core:jar:1.4.0:compile - omitted for duplicate)
[INFO] | | +- org.jboss:jboss-vfs:jar:3.2.15.Final:compile
[INFO] | | | - (org.jboss.logging:jboss-logging:jar:3.1.4.GA:compile - omitted for conflict with 3.1.3.GA)
[INFO] | | - (org.slf4j:slf4j-api:jar:1.7.30:compile - omitted for conflict with 1.7.12)
[INFO] | +- org.slf4j:slf4j-nop:jar:1.7.28:compile
[INFO] | | - (org.slf4j:slf4j-api:jar:1.7.28:compile - omitted for conflict with 1.7.12)
[INFO] | - net.sf.py4j:py4j:jar:0.10.9.1:compile
[INFO] +- org.apache.maven:maven-plugin-api:jar:3.8.1:compile
[INFO] | +- (org.apache.maven:maven-model:jar:3.8.1:compile - omitted for conflict with 3.8.3)
[INFO] | +- (org.apache.maven:maven-artifact:jar:3.8.1:compile - omitted for duplicate)
[INFO] | +- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
[INFO] | | +- javax.enterprise:cdi-api:jar:1.0:compile
[INFO] | | | +- javax.annotation:jsr250-api:jar:1.0:compile
[INFO] | | | - (javax.inject:javax.inject:jar:1:compile - omitted for duplicate)
[INFO] | | +- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
[INFO] | | +- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile
[INFO] | | +- (org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile - omitted for conflict with 2.6.0)
[INFO] | | - (org.codehaus.plexus:plexus-utils:jar:3.0.17:compile - omitted for conflict with 3.3.0)
[INFO] | +- (org.codehaus.plexus:plexus-utils:jar:3.2.1:compile - omitted for conflict with 3.3.0)
[INFO] | - org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
[INFO] +- com.sikulix:sikulixlibswin:jar:1.1.0:compile
[INFO] +- org.apache.poi:poi-ooxml-full:jar:5.2.3:compile
[INFO] | - org.apache.xmlbeans:xmlbeans:jar:5.1.1:compile
[INFO] | - (org.apache.logging.log4j:log4j-api:jar:2.18.0:compile - omitted for duplicate)
[INFO] +- org.apache.poi:ooxml-schemas:jar:1.4:compile
[INFO] | - (org.apache.xmlbeans:xmlbeans:jar:3.0.1:compile - omitted for conflict with 5.1.1)
[INFO] +- org.apache.poi:poi:jar:5.2.3:compile
[INFO] | +- commons-codec:commons-codec:jar:1.15:compile
[INFO] | +- (org.apache.commons:commons-collections4:jar:4.4:compile - omitted for duplicate)
[INFO] | +- org.apache.commons:commons-math3:jar:3.6.1:compile
[INFO] | +- (commons-io:commons-io:jar:2.11.0:compile - omitted for duplicate)
[INFO] | +- com.zaxxer:SparseBitSet:jar:1.2:compile
[INFO] | - org.apache.logging.log4j:log4j-api:jar:2.18.0:compile
[INFO] +- org.apache.poi:poi-ooxml:jar:5.2.3:compile
[INFO] | +- (org.apache.poi:poi:jar:5.2.3:compile - omitted for duplicate)
[INFO] | +- org.apache.poi:poi-ooxml-lite:jar:5.2.3:compile
[INFO] | | - (org.apache.xmlbeans:xmlbeans:jar:5.1.1:compile - omitted for duplicate)
[INFO] | +- (org.apache.xmlbeans:xmlbeans:jar:5.1.1:compile - omitted for duplicate)
[INFO] | +- org.apache.commons:commons-compress:jar:1.21:compile
[INFO] | +- (commons-io:commons-io:jar:2.11.0:compile - omitted for duplicate)
[INFO] | +- com.github.virtuald:curvesapi:jar:1.07:compile
[INFO] | +- (org.apache.logging.log4j:log4j-api:jar:2.18.0:compile - omitted for duplicate)
[INFO] | - (org.apache.commons:commons-collections4:jar:4.4:compile - omitted for duplicate)
[INFO] +- org.apache.poi:poi-ooxml-schemas:jar:4.1.2:compile
[INFO] | - (org.apache.xmlbeans:xmlbeans:jar:3.1.0:compile - omitted for conflict with 5.1.1)
[INFO] +- com.github.stephenc.monte:monte-screen-recorder:jar:0.7.7.0:compile
[INFO] +- com.googlecode.json-simple:json-simple:jar:1.1.1:compile
[INFO] | - (junit:junit:jar:4.10:compile - omitted for conflict with 4.13.2)
[INFO] +- org.freemarker:freemarker:jar:2.3.23:compile
[INFO] +- org.jsoup:jsoup:jar:1.8.3:compile
[INFO] +- commons-io:commons-io:jar:2.11.0:compile
[INFO] +- ru.yandex.qatools.ashot:ashot:jar:1.5.4:compile
[INFO] | +- (org.seleniumhq.selenium:selenium-remote-driver:jar:2.53.0:compile - omitted for conflict with 4.10.0)
[INFO] | +- (commons-io:commons-io:jar:2.5:compile - omitted for conflict with 2.11.0)
[INFO] | +- (com.google.code.gson:gson:jar:2.6.2:compile - omitted for conflict with 2.10.1)
[INFO] | - (org.hamcrest:hamcrest-core:jar:1.3:compile - omitted for duplicate)
[INFO] +- org.apache.poi:poi-scratchpad:jar:5.2.3:compile
[INFO] | +- (org.apache.poi:poi:jar:5.2.3:compile - omitted for duplicate)
[INFO] | +- (org.apache.logging.log4j:log4j-api:jar:2.18.0:compile - omitted for duplicate)
[INFO] | +- (org.apache.commons:commons-math3:jar:3.6.1:compile - omitted for duplicate)
[INFO] | - (commons-codec:commons-codec:jar:1.15:compile - omitted for duplicate)
[INFO] +- org.hamcrest:hamcrest-all:jar:1.3:compile
[INFO] +- org.seleniumhq.selenium:selenium-chrome-driver:jar:4.0.0-beta-4:compile
[INFO] | +- (com.google.auto.service:auto-service-annotations:jar:1.0:compile - omitted for conflict with 1.0.1)
[INFO] | +- (com.google.auto.service:auto-service:jar:1.0:compile - omitted for conflict with 1.0.1)
[INFO] | +- (com.google.guava:guava:jar:30.1.1-jre:compile - omitted for conflict with 31.1-jre)
[INFO] | +- (org.seleniumhq.selenium:selenium-api:jar:4.0.0-beta-4:compile - omitted for conflict with 4.10.0)
[INFO] | +- org.seleniumhq.selenium:selenium-chromium-driver:jar:4.0.0-beta-4:compile
[INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0:compile - omitted for conflict with 1.0.1)
[INFO] | | +- (com.google.auto.service:auto-service:jar:1.0:compile - omitted for conflict with 1.0.1)
[INFO] | | +- (com.google.guava:guava:jar:30.1.1-jre:compile - omitted for conflict with 31.1-jre)
[INFO] | | +- (org.seleniumhq.selenium:selenium-devtools:jar:4.0.0-beta-4:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-json:jar:4.0.0-beta-4:compile - omitted for conflict with 4.10.0)
[INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.0.0-beta-4:compile - omitted for conflict with 4.10.0)
[INFO] | +- org.seleniumhq.selenium:selenium-devtools:jar:4.0.0-beta-4:compile
[INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0:compile - omitted for conflict with 1.0.1)
[INFO] | | +- (com.google.auto.service:auto-service:jar:1.0:compile - omitted for conflict with 1.0.1)
[INFO] | | +- (com.google.guava:guava:jar:30.1.1-jre:compile - omitted for conflict with 31.1-jre)
[INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.0.0-beta-4:compile - omitted for conflict with 4.10.0)
[INFO] | | +- (org.seleniumhq.selenium:selenium-json:jar:4.0.0-beta-4:compile - omitted for conflict with 4.10.0)
[INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.0.0-beta-4:compile - omitted for conflict with 4.10.0)
[INFO] | +- (org.seleniumhq.selenium:selenium-http:jar:4.0.0-beta-4:compile - omitted for conflict with 4.10.0)
[INFO] | +- (org.seleniumhq.selenium:selenium-json:jar:4.0.0-beta-4:compile - omitted for conflict with 4.10.0)
[INFO] | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.0.0-beta-4:compile - omitted for conflict with 4.10.0)
[INFO] +- io.github.bonigarcia:webdrivermanager:jar:5.4.1:compile
[INFO] | +- (org.slf4j:slf4j-api:jar:2.0.7:compile - omitted for conflict with 1.7.12)
[INFO] | +- (com.google.code.gson:gson:jar:2.10.1:compile - omitted for duplicate)
[INFO] | +- com.github.docker-java:docker-java:jar:3.3.2:compile
[INFO] | | +- com.github.docker-java:docker-java-core:jar:3.3.2:compile
[INFO] | | | +- com.github.docker-java:docker-java-api:jar:3.3.2:compile
[INFO] | | | | +- (com.fasterxml.jackson.core:jackson-annotations:jar:2.10.3:compile - omitted for conflict with 2.15.2)
[INFO] | | | | - (org.slf4j:slf4j-api:jar:1.7.30:compile - omitted for conflict with 1.7.12)
[INFO] | | | +- (com.github.docker-java:docker-java-transport:jar:3.3.2:compile - omitted for duplicate)
[INFO] | | | +- (org.slf4j:slf4j-api:jar:1.7.30:compile - omitted for conflict with 1.7.12)
[INFO] | | | +- (commons-io:commons-io:jar:2.6:compile - omitted for conflict with 2.11.0)
[INFO] | | | +- (org.apache.commons:commons-compress:jar:1.21:compile - omitted for duplicate)
[INFO] | | | +- (org.apache.commons:commons-lang3:jar:3.12.0:compile - omitted for conflict with 3.11)
[INFO] | | | +- (com.fasterxml.jackson.core:jackson-databind:jar:2.10.3:compile - omitted for conflict with 2.15.2)
[INFO] | | | +- (com.google.guava:guava:jar:19.0:compile - omitted for conflict with 31.1-jre)
[INFO] | | | - org.bouncycastle:bcpkix-jdk15on:jar:1.62:compile
[INFO] | | | - org.bouncycastle:bcprov-jdk15on:jar:1.62:compile
[INFO] | | - org.slf4j:jcl-over-slf4j:jar:1.7.30:compile
[INFO] | | - (org.slf4j:slf4j-api:jar:1.7.30:compile - omitted for conflict with 1.7.12)
[INFO] | +- com.github.docker-java:docker-java-transport-httpclient5:jar:3.3.2:compile
[INFO] | | +- com.github.docker-java:docker-java-transport:jar:3.3.2:compile
[INFO] | | +- (org.apache.httpcomponents.client5:httpclient5:jar:5.0.3:compile - omitted for conflict with 5.2.1)
[INFO] | | - (net.java.dev.jna:jna:jar:5.12.1:compile - omitted for conflict with 5.6.0)
[INFO] | +- org.brotli:dec:jar:0.1.2:compile
[INFO] | +- (org.apache.commons:commons-lang3:jar:3.12.0:compile - omitted for conflict with 3.11)
[INFO] | - org.apache.httpcomponents.client5:httpclient5:jar:5.2.1:compile
[INFO] | +- org.apache.httpcomponents.core5:httpcore5:jar:5.2:compile
[INFO] | +- org.apache.httpcomponents.core5:httpcore5-h2:jar:5.2:compile
[INFO] | | - (org.apache.httpcomponents.core5:httpcore5:jar:5.2:compile - omitted for duplicate)
[INFO] | - (org.slf4j:slf4j-api:jar:1.7.36:compile - omitted for conflict with 1.7.12)
[INFO] +- org.seleniumhq.selenium:selenium-java:jar:4.10.0:compile
[INFO] | +- (org.seleniumhq.selenium:selenium-api:jar:4.10.0:compile - omitted for duplicate)
[INFO] | +- (org.seleniumhq.selenium:selenium-chrome-driver:jar:4.10.0:compile - omitted for conflict with 4.0.0-beta-4)
[INFO] | +- org.seleniumhq.selenium:selenium-devtools-v112:jar:4.10.0:compile
[INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- (com.google.guava:guava:jar:31.1-jre:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-json:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.10.0:compile - omitted for duplicate)
[INFO] | +- org.seleniumhq.selenium:selenium-devtools-v113:jar:4.10.0:compile
[INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- (com.google.guava:guava:jar:31.1-jre:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-json:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.10.0:compile - omitted for duplicate)
[INFO] | +- (org.seleniumhq.selenium:selenium-devtools-v114:jar:4.10.0:compile - omitted for duplicate)
[INFO] | +- org.seleniumhq.selenium:selenium-devtools-v85:jar:4.10.0:compile
[INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- (com.google.guava:guava:jar:31.1-jre:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-json:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.10.0:compile - omitted for duplicate)
[INFO] | +- org.seleniumhq.selenium:selenium-edge-driver:jar:4.10.0:compile
[INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- (com.google.guava:guava:jar:31.1-jre:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-chromium-driver:jar:4.10.0:compile - omitted for conflict with 4.0.0-beta-4)
[INFO] | | +- (org.seleniumhq.selenium:selenium-manager:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.10.0:compile - omitted for duplicate)
[INFO] | +- org.seleniumhq.selenium:selenium-firefox-driver:jar:4.10.0:compile
[INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- (com.google.guava:guava:jar:31.1-jre:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-devtools-v85:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-http:jar:4.10.0:compile - omitted for conflict with 4.0.0-beta-4)
[INFO] | | +- (org.seleniumhq.selenium:selenium-json:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-manager:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.10.0:compile - omitted for duplicate)
[INFO] | +- org.seleniumhq.selenium:selenium-ie-driver:jar:4.10.0:compile
[INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-manager:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.10.0:compile - omitted for duplicate)
[INFO] | +- (org.seleniumhq.selenium:selenium-remote-driver:jar:4.10.0:compile - omitted for duplicate)
[INFO] | +- org.seleniumhq.selenium:selenium-safari-driver:jar:4.10.0:compile
[INFO] | | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate)
[INFO] | | +- (com.google.guava:guava:jar:31.1-jre:compile - omitted for duplicate)
[INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.10.0:compile - omitted for duplicate)
[INFO] | - (org.seleniumhq.selenium:selenium-support:jar:4.10.0:compile - omitted for duplicate)
[INFO] +- org.seleniumhq.selenium:selenium-remote-driver:jar:4.0.0-beta-4:compile
[INFO] | +- com.beust:jcommander:jar:1.81:compile
[INFO] | +- (com.google.auto.service:auto-service-annotations:jar:1.0:compile - omitted for conflict with 1.0.1)
[INFO] | +- (com.google.auto.service:auto-service:jar:1.0:compile - omitted for conflict with 1.0.1)
[INFO] | +- (com.google.guava:guava:jar:30.1.1-jre:compile - omitted for conflict with 31.1-jre)
[INFO] | +- io.netty:netty-buffer:jar:4.1.63.Final:compile
[INFO] | | - (io.netty:netty-common:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | +- io.netty:netty-codec-http:jar:4.1.63.Final:compile
[INFO] | | +- (io.netty:netty-common:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | +- (io.netty:netty-buffer:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | +- (io.netty:netty-transport:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | +- io.netty:netty-codec:jar:4.1.63.Final:compile
[INFO] | | | +- (io.netty:netty-common:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | | +- (io.netty:netty-buffer:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | | - (io.netty:netty-transport:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | - io.netty:netty-handler:jar:4.1.63.Final:compile
[INFO] | | +- (io.netty:netty-common:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | +- (io.netty:netty-resolver:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | +- (io.netty:netty-buffer:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | +- (io.netty:netty-transport:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | - (io.netty:netty-codec:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | +- io.netty:netty-common:jar:4.1.63.Final:compile
[INFO] | +- io.netty:netty-transport-native-epoll:jar:4.1.63.Final:compile
[INFO] | | +- (io.netty:netty-common:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | +- (io.netty:netty-buffer:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | +- (io.netty:netty-transport:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | - (io.netty:netty-transport-native-unix-common:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | +- io.netty:netty-transport-native-kqueue:jar:4.1.63.Final:compile
[INFO] | | +- (io.netty:netty-common:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | +- (io.netty:netty-buffer:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | +- (io.netty:netty-transport:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | - (io.netty:netty-transport-native-unix-common:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | +- io.netty:netty-transport-native-unix-common:jar:4.1.63.Final:compile
[INFO] | | +- (io.netty:netty-common:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | +- (io.netty:netty-buffer:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | - (io.netty:netty-transport:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | +- io.netty:netty-transport:jar:4.1.63.Final:compile
[INFO] | | +- (io.netty:netty-common:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | +- (io.netty:netty-buffer:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | | - io.netty:netty-resolver:jar:4.1.63.Final:compile
[INFO] | | - (io.netty:netty-common:jar:4.1.63.Final:compile - omitted for duplicate)
[INFO] | +- io.opentelemetry:opentelemetry-api:jar:1.2.0:compile
[INFO] | | - (io.opentelemetry:opentelemetry-context:jar:1.2.0:compile - omitted for duplicate)
[INFO] | +- io.opentelemetry:opentelemetry-context:jar:1.2.0:compile
[INFO] | +- io.opentelemetry:opentelemetry-exporter-logging:jar:1.2.0:compile
[INFO] | | +- (io.opentelemetry:opentelemetry-sdk:jar:1.2.0:compile - omitted for duplicate)
[INFO] | | - io.opentelemetry:opentelemetry-sdk-metrics:jar:1.2.0-alpha:compile
[INFO] | | +- io.opentelemetry:opentelemetry-api-metrics:jar:1.2.0-alpha:compile
[INFO] | | | - (io.opentelemetry:opentelemetry-api:jar:1.2.0:compile - omitted for duplicate)
[INFO] | | - (io.opentelemetry:opentelemetry-sdk-common:jar:1.2.0:compile - omitted for duplicate)
[INFO] | +- io.opentelemetry:opentelemetry-sdk-common:jar:1.2.0:compile
[INFO] | | +- (io.opentelemetry:opentelemetry-api:jar:1.2.0:compile - omitted for duplicate)
[INFO] | | - (io.opentelemetry:opentelemetry-semconv:jar:1.2.0-alpha:runtime - omitted for duplicate)
[INFO] | +- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:1.2.0-alpha:compile
[INFO] | | +- (io.opentelemetry:opentelemetry-sdk:jar:1.2.0:compile - omitted for duplicate)
[INFO] | | +- (io.opentelemetry:opentelemetry-sdk-metrics:jar:1.2.0-alpha:compile - omitted for duplicate)
[INFO] | | - (io.opentelemetry:opentelemetry-semconv:jar:1.2.0-alpha:runtime - omitted for duplicate)
[INFO] | +- io.opentelemetry:opentelemetry-sdk-trace:jar:1.2.0:compile
[INFO] | | +- (io.opentelemetry:opentelemetry-api:jar:1.2.0:compile - omitted for duplicate)
[INFO] | | +- (io.opentelemetry:opentelemetry-sdk-common:jar:1.2.0:compile - omitted for duplicate)
[INFO] | | +- (io.opentelemetry:opentelemetry-api-metrics:jar:1.2.0-alpha:compile - scope updated from runtime; omitted for duplicate)
[INFO] | | - (io.opentelemetry:opentelemetry-semconv:jar:1.2.0-alpha:runtime - omitted for duplicate)
[INFO] | +- io.opentelemetry:opentelemetry-sdk:jar:1.2.0:compile
[INFO] | | +- (io.opentelemetry:opentelemetry-api:jar:1.2.0:compile - omitted for duplicate)
[INFO] | | +- (io.opentelemetry:opentelemetry-sdk-common:jar:1.2.0:compile - omitted for duplicate)
[INFO] | | - (io.opentelemetry:opentelemetry-sdk-trace:jar:1.2.0:compile - omitted for duplicate)
[INFO] | +- io.opentelemetry:opentelemetry-semconv:jar:1.2.0-alpha:compile
[INFO] | | - (io.opentelemetry:opentelemetry-api:jar:1.2.0:compile - omitted for duplicate)
[INFO] | +- io.ous:jtoml:jar:2.0.0:compile
[INFO] | +- net.bytebuddy:byte-buddy:jar:1.11.0:compile
[INFO] | +- (org.apache.commons:commons-exec:jar:1.3:compile - omitted for duplicate)
[INFO] | +- org.asynchttpclient:async-http-client:jar:2.12.3:compile
[INFO] | | +- org.asynchttpclient:async-http-client-netty-utils:jar:2.12.3:compile
[INFO] | | | +- (io.netty:netty-buffer:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | +- (org.slf4j:slf4j-api:jar:1.7.30:compile - omitted for conflict with 1.7.12)
[INFO] | | | - (com.sun.activation:jakarta.activation:jar:1.2.2:compile - omitted for duplicate)
[INFO] | | +- (io.netty:netty-codec-http:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | +- (io.netty:netty-handler:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | +- io.netty:netty-codec-socks:jar:4.1.60.Final:compile
[INFO] | | | +- (io.netty:netty-common:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | +- (io.netty:netty-buffer:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | +- (io.netty:netty-transport:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | - (io.netty:netty-codec:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | +- io.netty:netty-handler-proxy:jar:4.1.60.Final:compile
[INFO] | | | +- (io.netty:netty-common:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | +- (io.netty:netty-buffer:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | +- (io.netty:netty-transport:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | +- (io.netty:netty-codec:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | +- (io.netty:netty-codec-socks:jar:4.1.60.Final:compile - omitted for duplicate)
[INFO] | | | - (io.netty:netty-codec-http:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.60.Final:compile
[INFO] | | | +- (io.netty:netty-common:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | +- (io.netty:netty-buffer:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | +- (io.netty:netty-transport:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | - (io.netty:netty-transport-native-unix-common:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | +- io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.60.Final:compile
[INFO] | | | +- (io.netty:netty-common:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | +- (io.netty:netty-buffer:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | +- (io.netty:netty-transport:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | - (io.netty:netty-transport-native-unix-common:jar:4.1.60.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | +- org.reactivestreams:reactive-streams:jar:1.0.3:compile
[INFO] | | +- com.typesafe.netty:netty-reactive-streams:jar:2.0.4:compile
[INFO] | | | +- (io.netty:netty-handler:jar:4.1.43.Final:compile - omitted for conflict with 4.1.63.Final)
[INFO] | | | - (org.reactivestreams:reactive-streams:jar:1.0.3:compile - omitted for duplicate)
[INFO] | | +- (org.slf4j:slf4j-api:jar:1.7.30:compile - omitted for conflict with 1.7.12)
[INFO] | | - com.sun.activation:jakarta.activation:jar:1.2.2:compile
[INFO] | +- (org.seleniumhq.selenium:selenium-api:jar:4.0.0-beta-4:compile - omitted for conflict with 4.10.0)
[INFO] | +- (org.seleniumhq.selenium:selenium-http:jar:4.0.0-beta-4:compile - omitted for duplicate)
[INFO] | - (org.seleniumhq.selenium:selenium-json:jar:4.0.0-beta-4:compile - omitted for conflict with 4.10.0)
[INFO] +- org.seleniumhq.selenium:selenium-support:jar:4.10.0:compile
[INFO] | +- (com.google.auto.service:auto-service-annotations:jar:1.0.1:compile - omitted for duplicate)
[INFO] | +- (com.google.auto.service:auto-service:jar:1.0.1:compile - omitted for duplicate)
[INFO] | +- (com.google.guava:guava:jar:31.1-jre:compile - omitted for duplicate)
[INFO] | +- (net.bytebuddy:byte-buddy:jar:1.14.4:compile - omitted for conflict with 1.11.0)
[INFO] | +- (org.seleniumhq.selenium:selenium-api:jar:4.10.0:compile - omitted for duplicate)
[INFO] | +- (org.seleniumhq.selenium:selenium-json:jar:4.10.0:compile - omitted for duplicate)
[INFO] | - (org.seleniumhq.selenium:selenium-remote-driver:jar:4.10.0:compile - omitted for conflict with 4.0.0-beta-4)
[INFO] +- org.seleniumhq.selenium:selenium-api:jar:4.0.0-beta-4:compile
[INFO] +- org.seleniumhq.selenium:selenium-server:jar:4.0.0-alpha-2:compile
[INFO] | +- (org.seleniumhq.selenium:selenium-java:jar:4.0.0-alpha-2:compile - omitted for conflict with 4.10.0)
[INFO] | +- org.seleniumhq.selenium:grid:jar:4.0.0-alpha-2:compile
[INFO] | | +- (org.seleniumhq.selenium:selenium-chrome-driver:jar:4.0.0-alpha-2:compile - omitted for conflict with 4.0.0-beta-4)
[INFO] | | +- org.seleniumhq.selenium:selenium-edgehtml-driver:jar:4.0.0-alpha-2:compile
[INFO] | | | - (org.seleniumhq.selenium:selenium-edge-driver:jar:4.0.0-alpha-2:compile - omitted for conflict with 4.10.0)
[INFO] | | +- (org.seleniumhq.selenium:selenium-firefox-driver:jar:4.0.0-alpha-2:compile - omitted for conflict with 4.10.0)
[INFO] | | +- (org.seleniumhq.selenium:selenium-ie-driver:jar:4.0.0-alpha-2:compile - omitted for conflict with 4.10.0)
[INFO] | | +- (org.seleniumhq.selenium:selenium-safari-driver:jar:4.0.0-alpha-2:compile - omitted for conflict with 4.10.0)
[INFO] | | +- (org.seleniumhq.selenium:selenium-support:jar:4.0.0-alpha-2:compile - omitted for conflict with 4.10.0)
[INFO] | | +- (com.beust:jcommander:jar:1.72:compile - omitted for conflict with 1.81)
[INFO] | | +- org.seleniumhq.selenium:jetty-repacked:jar:9.4.12.v20180830.1:compile
[INFO] | | | +- javax.servlet:javax.servlet-api:jar:3.1.0:compile
[INFO] | | | - (org.slf4j:slf4j-api:jar:1.7.25:compile - omitted for conflict with 1.7.12)
[INFO] | | - org.zeromq:jeromq:jar:0.5.1:compile
[INFO] | | - eu.neilalexander:jnacl:jar:1.0.0:compile
[INFO] | +- net.jcip:jcip-annotations:jar:1.0:compile
[INFO] | - org.yaml:snakeyaml:jar:1.24:compile
[INFO] +- org.seleniumhq.selenium:selenium-http:jar:4.10.0:compile
[INFO] | +- (com.google.guava:guava:jar:31.1-jre:compile - omitted for duplicate)
[INFO] | +- dev.failsafe:failsafe:jar:3.3.1:compile
[INFO] | +- (org.seleniumhq.selenium:selenium-api:jar:4.10.0:compile - omitted for conflict with 4.0.0-beta-4)
[INFO] | - (org.seleniumhq.selenium:selenium-json:jar:4.10.0:compile - omitted for duplicate)
[INFO] +- org.seleniumhq.selenium:selenium-htmlunit-driver:jar:2.52.0:compile
[INFO] | +- (org.seleniumhq.selenium:selenium-support:jar:2.52.0:compile - omitted for conflict with 4.10.0)
[INFO] | +- net.sourceforge.htmlunit:htmlunit:jar:2.18:compile
[INFO] | | +- xalan:xalan:jar:2.7.2:compile
[INFO] | | | - xalan:serializer:jar:2.7.2:compile
[INFO] | | | - (xml-apis:xml-apis:jar:1.3.04:compile - omitted for conflict with 1.4.01)
[INFO] | | +- (org.apache.commons:commons-lang3:jar:3.4:compile - omitted for conflict with 3.11)
[INFO] | | +- (org.apache.httpcomponents:httpclient:jar:4.5:compile - omitted for conflict with 4.5.13)
[INFO] | | +- (org.apache.httpcomponents:httpmime:jar:4.5:compile - omitted for conflict with 4.5.13)
[INFO] | | +- (commons-codec:commons-codec:jar:1.10:compile - omitted for conflict with 1.15)
[INFO] | | +- net.sourceforge.htmlunit:htmlunit-core-js:jar:2.17:compile
[INFO] | | +- xerces:xercesImpl:jar:2.11.0:compile
[INFO] | | | - (xml-apis:xml-apis:jar:1.4.01:compile - omitted for duplicate)
[INFO] | | +- net.sourceforge.nekohtml:nekohtml:jar:1.9.22:compile
[INFO] | | +- net.sourceforge.cssparser:cssparser:jar:0.9.16:compile
[INFO] | | | - org.w3c.css:sac:jar:1.3:compile
[INFO] | | +- (commons-io:commons-io:jar:2.4:compile - omitted for conflict with 2.11.0)
[INFO] | | +- (commons-logging:commons-logging:jar:1.2:compile - omitted for duplicate)
[INFO] | | - org.eclipse.jetty.websocket:websocket-client:jar:9.2.12.v20150709:compile
[INFO] | | +- org.eclipse.jetty:jetty-util:jar:9.2.12.v20150709:compile
[INFO] | | +- org.eclipse.jetty:jetty-io:jar:9.2.12.v20150709:compile
[INFO] | | | - (org.eclipse.jetty:jetty-util:jar:9.2.12.v20150709:compile - omitted for duplicate)
[INFO] | | - org.eclipse.jetty.websocket:websocket-common:jar:9.2.12.v20150709:compile
[INFO] | | +- org.eclipse.jetty.websocket:websocket-api:jar:9.2.12.v20150709:compile
[INFO] | | +- (org.eclipse.jetty:jetty-util:jar:9.2.12.v20150709:compile - omitted for duplicate)
[INFO] | | - (org.eclipse.jetty:jetty-io:jar:9.2.12.v20150709:compile - omitted for duplicate)
[INFO] | +- commons-collections:commons-collections:jar:3.2.2:compile
[INFO] | - (org.apache.httpcomponents:httpclient:jar:4.5.1:compile - omitted for conflict with 4.5.13)
[INFO] +- org.testng:testng:jar:7.8.0:compile
[INFO] | +- (org.slf4j:slf4j-api:jar:1.7.36:compile - omitted for conflict with 1.7.12)
[INFO] | +- (com.beust:jcommander:jar:1.82:compile - omitted for conflict with 1.81)
[INFO] | - org.webjars:jquery:jar:3.6.1:runtime
[INFO] +- org.apache.commons:commons-lang3:jar:3.12.0:compile
[INFO] +- org.apache.logging.log4j:log4j-core:jar:2.20.0:compile
[INFO] | - (org.apache.logging.log4j:log4j-api:jar:2.20.0:compile - omitted for conflict with 2.18.0)
[INFO] +- org.apache.maven:maven-artifact:jar:3.8.1:compile
[INFO] | +- (org.codehaus.plexus:plexus-utils:jar:3.2.1:compile - omitted for conflict with 3.3.0)
[INFO] | - (org.apache.commons:commons-lang3:jar:3.8.1:compile - omitted for conflict with 3.12.0)
[INFO] +- org.hamcrest:hamcrest-core:jar:2.2:compile
[INFO] | - (org.hamcrest:hamcrest:jar:2.2:compile - omitted for duplicate)
[INFO] +- org.hamcrest:hamcrest-library:jar:2.2:compile
[INFO] | - (org.hamcrest:hamcrest-core:jar:2.2:compile - omitted for duplicate)
[INFO] +- org.hamcrest:java-hamcrest:jar:2.0.0.0:compile
[INFO] +- net.serenity-bdd:serenity-core:jar:4.0.12:compile
[INFO] | +- net.serenity-bdd:serenity-model:jar:4.0.12:compile
[INFO] | | +- (net.serenity-bdd:serenity-report-resources:jar:4.0.12:compile - omitted for duplicate)
[INFO] | | +- (org.apache.commons:commons-lang3:jar:3.13.0:compile - omitted for conflict with 3.12.0)
[INFO] | | +- (commons-io:commons-io:jar:2.11.0:compile - omitted for duplicate)
[INFO] | | +- (org.apache.commons:commons-text:jar:1.10.0:compile - omitted for conflict with 1.9)
[INFO] | | +- commons-net:commons-net:jar:3.9.0:compile
[INFO] | | +- (commons-codec:commons-codec:jar:1.16.0:compile - omitted for conflict with 1.15)
[INFO] | | +- (com.google.guava:guava:jar:32.1.2-jre:compile - omitted for conflict with 31.1-jre)
[INFO] | | +- (org.slf4j:slf4j-api:jar:2.0.7:compile - omitted for conflict with 1.7.12)
[INFO] | | +- (org.hamcrest:hamcrest:jar:2.2:compile - omitted for duplicate)
[INFO] | | +- (org.jsoup:jsoup:jar:1.15.4:compile - omitted for conflict with 1.8.3)
[INFO] | | +- (com.fasterxml.jackson.core:jackson-databind:jar:2.15.2:compile - omitted for duplicate)
[INFO] | | +- (com.thoughtworks.xstream:xstream:jar:1.4.20:compile - omitted for conflict with 1.4.1)
[INFO] | | +- (joda-time:joda-time:jar:2.12.2:compile - omitted for conflict with 2.10.5)
[INFO] | | +- (io.cucumber:cucumber-core:jar:7.14.0:compile - omitted for conflict with 7.13.0)
[INFO] | | +- (io.cucumber:cucumber-java:jar:7.14.0:compile - omitted for conflict with 7.13.0)
[INFO] | | +- (com.google.code.gson:gson:jar:2.10.1:compile - omitted for duplicate)
[INFO] | | +- (net.sf.opencsv:opencsv:jar:2.0:compile - omitted for duplicate)
[INFO] | | +- com.typesafe:config:jar:1.4.2:compile
[INFO] | | +- org.imgscalr:imgscalr-lib:jar:4.2:compile
[INFO] | | +- org.awaitility:awaitility:jar:4.2.0:compile
[INFO] | | | - (org.hamcrest:hamcrest:jar:2.1:compile - omitted for conflict with 2.2)
[INFO] | | +- (org.freemarker:freemarker:jar:2.3.32:compile - omitted for conflict with 2.3.23)
[INFO] | | +- io.github.classgraph:classgraph:jar:4.8.157:compile
[INFO] | | +- com.github.ben-manes.caffeine:caffeine:jar:2.9.2:compile
[INFO] | | | +- (org.checkerframework:checker-qual:jar:3.10.0:compile - omitted for conflict with 3.12.0)
[INFO] | | | - (com.google.errorprone:error_prone_annotations:jar:2.5.1:compile - omitted for conflict with 2.11.0)
[INFO] | | +- org.ehcache:ehcache:jar:3.10.8:compile
[INFO] | | | +- javax.cache:cache-api:jar:1.1.0:compile
[INFO] | | | - (org.slf4j:slf4j-api:jar:1.7.36:runtime - omitted for conflict with 1.7.12)
[INFO] | | +- (net.sourceforge.jexcelapi:jxl:jar:2.6.12:compile - omitted for duplicate)
[INFO] | | +- (org.apache.groovy:groovy:jar:4.0.13:compile - omitted for conflict with 4.0.11)
[INFO] | | +- (net.bytebuddy:byte-buddy:jar:1.14.7:compile - omitted for conflict with 1.11.0)
[INFO] | | +- net.bytebuddy:byte-buddy-agent:jar:1.14.7:compile
[INFO] | | +- org.objenesis:objenesis:jar:3.3:compile
[INFO] | | - com.vladsch.flexmark:flexmark-all:jar:0.64.8:compile
[INFO] | | +- com.vladsch.flexmark:flexmark:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-ast:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-builder:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-collection:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-data:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-dependency:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-format:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-html:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-misc:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-sequence:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark-util-visitor:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-abbreviation:jar:0.64.8:compile
[INFO] | | | +- com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile
[INFO] | | | | +- (com.vladsch.flexmark:flexmark-util-ast:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | | +- (com.vladsch.flexmark:flexmark-util-builder:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | | +- (com.vladsch.flexmark:flexmark-util-collection:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | | +- (com.vladsch.flexmark:flexmark-util-data:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | | +- (com.vladsch.flexmark:flexmark-util-dependency:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | | +- (com.vladsch.flexmark:flexmark-util-format:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | | +- (com.vladsch.flexmark:flexmark-util-html:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | | +- (com.vladsch.flexmark:flexmark-util-misc:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | | +- (com.vladsch.flexmark:flexmark-util-options:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | | +- (com.vladsch.flexmark:flexmark-util-sequence:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | | +- (com.vladsch.flexmark:flexmark-util-visitor:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | | - (org.jetbrains:annotations:jar:24.0.1:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-autolink:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-admonition:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-anchorlink:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-aside:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark-jira-converter:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-attributes:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-autolink:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - org.nibor.autolink:autolink:jar:0.6.0:compile
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-definition:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-emoji:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark-jira-converter:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-enumerated-reference:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark-ext-attributes:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-escaped-character:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-footnotes:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-gfm-issues:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-gfm-tasklist:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-gfm-users:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-gitlab:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-jekyll-front-matter:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark-ext-yaml-front-matter:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-jekyll-tag:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-media-tags:jar:0.64.8:compile
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-resizable-image:jar:0.64.8:compile
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-macros:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark-ext-gitlab:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-ins:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-xwiki-macros:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-superscript:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-tables:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-toc:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-typographic:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-wikilink:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-yaml-front-matter:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-ext-youtube-embedded:jar:0.64.8:compile
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-html2md-converter:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark-ext-emoji:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-jira-converter:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-tables:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-wikilink:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-ins:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-superscript:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-pdf-converter:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- com.openhtmltopdf:openhtmltopdf-core:jar:1.0.10:compile
[INFO] | | | +- com.openhtmltopdf:openhtmltopdf-pdfbox:jar:1.0.10:compile
[INFO] | | | | +- (org.apache.pdfbox:pdfbox:jar:2.0.24:compile - omitted for conflict with 2.0.21)
[INFO] | | | | +- org.apache.pdfbox:xmpbox:jar:2.0.24:compile
[INFO] | | | | | - (commons-logging:commons-logging:jar:1.2:compile - omitted for duplicate)
[INFO] | | | | +- (com.openhtmltopdf:openhtmltopdf-core:jar:1.0.10:compile - omitted for duplicate)
[INFO] | | | | - de.rototor.pdfbox:graphics2d:jar:0.32:compile
[INFO] | | | | - (org.apache.pdfbox:pdfbox:jar:2.0.24:compile - omitted for conflict with 2.0.21)
[INFO] | | | - com.openhtmltopdf:openhtmltopdf-rtl-support:jar:1.0.10:compile
[INFO] | | | - (com.openhtmltopdf:openhtmltopdf-core:jar:1.0.10:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-profile-pegdown:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-abbreviation:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-anchorlink:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-aside:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-autolink:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-definition:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-emoji:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-escaped-character:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-footnotes:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-gfm-tasklist:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-ins:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-jekyll-front-matter:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-superscript:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-tables:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-toc:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-typographic:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-ext-wikilink:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-ast:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-data:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-misc:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (com.vladsch.flexmark:flexmark-util-sequence:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-util-ast:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-collection:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-misc:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-data:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-sequence:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-visitor:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - org.jetbrains:annotations:jar:24.0.1:compile
[INFO] | | +- com.vladsch.flexmark:flexmark-util-builder:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-misc:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-data:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (org.jetbrains:annotations:jar:24.0.1:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-util-collection:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-misc:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (org.jetbrains:annotations:jar:24.0.1:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-util-data:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-misc:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (org.jetbrains:annotations:jar:24.0.1:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-util-dependency:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-collection:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-misc:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-data:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (org.jetbrains:annotations:jar:24.0.1:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-util-format:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-ast:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-collection:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-data:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-html:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-misc:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-sequence:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (org.jetbrains:annotations:jar:24.0.1:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-util-html:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-misc:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-sequence:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (org.jetbrains:annotations:jar:24.0.1:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-util-misc:jar:0.64.8:compile
[INFO] | | | - (org.jetbrains:annotations:jar:24.0.1:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-util-options:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-misc:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-sequence:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (org.jetbrains:annotations:jar:24.0.1:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-util-sequence:jar:0.64.8:compile
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-collection:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-data:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | +- (com.vladsch.flexmark:flexmark-util-misc:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | | - (org.jetbrains:annotations:jar:24.0.1:compile - omitted for duplicate)
[INFO] | | +- com.vladsch.flexmark:flexmark-util-visitor:jar:0.64.8:compile
[INFO] | | | - (org.jetbrains:annotations:jar:24.0.1:compile - omitted for duplicate)
[INFO] | | - com.vladsch.flexmark:flexmark-youtrack-converter:jar:0.64.8:compile
[INFO] | | +- (com.vladsch.flexmark:flexmark-util:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- (com.vladsch.flexmark:flexmark:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- (com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | - (com.vladsch.flexmark:flexmark-ext-tables:jar:0.64.8:compile - omitted for duplicate)
[INFO] | +- net.serenity-bdd:serenity-reports:jar:4.0.12:compile
[INFO] | | +- (net.serenity-bdd:serenity-model:jar:4.0.12:compile - omitted for duplicate)
[INFO] | | +- net.serenity-bdd:serenity-stats:jar:4.0.12:compile
[INFO] | | | +- (net.serenity-bdd:serenity-model:jar:4.0.12:compile - omitted for duplicate)
[INFO] | | | - org.jetbrains.kotlin:kotlin-stdlib:jar:1.9.0:compile
[INFO] | | | +- org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.9.0:compile
[INFO] | | | - (org.jetbrains:annotations:jar:13.0:compile - omitted for conflict with 24.0.1)
[INFO] | | +- net.serenity-bdd:serenity-reports-configuration:jar:4.0.12:compile
[INFO] | | | +- (net.serenity-bdd:serenity-model:jar:4.0.12:compile - omitted for duplicate)
[INFO] | | | - (org.jetbrains.kotlin:kotlin-stdlib:jar:1.9.0:compile - omitted for duplicate)
[INFO] | | +- (com.vladsch.flexmark:flexmark-all:jar:0.64.8:compile - omitted for duplicate)
[INFO] | | +- com.ibm.icu:icu4j:jar:59.1:compile
[INFO] | | - es.nitaur.markdown:txtmark:jar:0.16:compile
[INFO] | +- net.serenity-bdd:serenity-report-resources:jar:4.0.12:compile
[INFO] | +- (com.google.code.gson:gson:jar:2.10.1:compile - omitted for duplicate)
[INFO] | +- (com.fasterxml.jackson.core:jackson-core:jar:2.15.2:compile - omitted for conflict with 2.12.5)
[INFO] | +- (com.fasterxml.jackson.core:jackson-databind:jar:2.15.2:compile - omitted for duplicate)
[INFO] | +- (commons-codec:commons-codec:jar:1.16.0:compile - omitted for conflict with 1.15)
[INFO] | +- (commons-io:commons-io:jar:2.11.0:compile - omitted for duplicate)
[INFO] | +- (org.apache.httpcomponents:httpclient:jar:4.5.13:compile - omitted for duplicate)
[INFO] | +- (org.seleniumhq.selenium:selenium-java:jar:4.12.1:compile - omitted for conflict with 4.10.0)
[INFO] | +- (org.seleniumhq.selenium:selenium-api:jar:4.12.1:compile - omitted for conflict with 4.0.0-beta-4)
[INFO] | +- (org.seleniumhq.selenium:selenium-support:jar:4.12.1:compile - omitted for conflict with 4.10.0)
[INFO] | +- (org.seleniumhq.selenium:selenium-chrome-driver:jar:4.12.1:compile - omitted for conflict with 4.0.0-beta-4)
[INFO] | +- (org.seleniumhq.selenium:selenium-firefox-driver:jar:4.12.1:compile - omitted for conflict with 4.10.0)
[INFO] | +- (org.seleniumhq.selenium:selenium-edge-driver:jar:4.12.1:compile - omitted for conflict with 4.10.0)
[INFO] | +- (org.seleniumhq.selenium:selenium-ie-driver:jar:4.12.1:compile - omitted for conflict with 4.10.0)
[INFO] | +- org.projectlombok:lombok:jar:1.18.20:compile
[INFO] | +- org.htmlunit:htmlunit:jar:3.4.0:compile
[INFO] | | +- (org.apache.httpcomponents:httpmime:jar:4.5.14:compile - omitted for conflict with 4.5.13)
[INFO] | | +- org.htmlunit:htmlunit-core-js:jar:3.4.0:compile
[INFO] | | +- org.htmlunit:neko-htmlunit:jar:3.4.0:compile
[INFO] | | +- org.htmlunit:htmlunit-cssparser:jar:3.4.0:compile
[INFO] | | +- org.htmlunit:htmlunit-xpath:jar:3.4.0:compile
[INFO] | | +- (org.apache.commons:commons-lang3:jar:3.12.0:compile - omitted for duplicate)
[INFO] | | +- (org.apache.commons:commons-text:jar:1.10.0:compile - omitted for conflict with 1.9)
[INFO] | | +- (commons-io:commons-io:jar:2.13.0:compile - omitted for conflict with 2.11.0)
[INFO] | | +- (commons-logging:commons-logging:jar:1.2:compile - omitted for duplicate)
[INFO] | | +- (commons-net:commons-net:jar:3.9.0:compile - omitted for duplicate)
[INFO] | | +- (commons-codec:commons-codec:jar:1.16.0:compile - omitted for conflict with 1.15)
[INFO] | | +- (org.brotli:dec:jar:0.1.2:compile - omitted for duplicate)
[INFO] | | +- com.shapesecurity:salvation2:jar:3.0.1:compile
[INFO] | | - (org.eclipse.jetty.websocket:websocket-client:jar:9.4.51.v20230217:compile - omitted for conflict with 9.2.12.v20150709)
[INFO] | +- org.seleniumhq.selenium:htmlunit3-driver:jar:4.10.0:compile
[INFO] | | +- (org.seleniumhq.selenium:selenium-api:jar:4.10.0:compile - omitted for conflict with 4.0.0-beta-4)
[INFO] | | +- (org.seleniumhq.selenium:selenium-support:jar:4.10.0:compile - omitted for duplicate)
[INFO] | | - (org.htmlunit:htmlunit:jar:3.3.0:compile - omitted for conflict with 3.4.0)
[INFO] | +- io.appium:java-client:jar:8.5.1:compile
[INFO] | | +- commons-validator:commons-validator:jar:1.7:runtime
[INFO] | | | +- (commons-beanutils:commons-beanutils:jar:1.9.4:runtime - omitted for duplicate)
[INFO] | | | - commons-digester:commons-digester:jar:2.1:runtime
[INFO] | | +- (org.apache.commons:commons-lang3:jar:3.12.0:runtime - omitted for duplicate)
[INFO] | | - (org.slf4j:slf4j-api:jar:2.0.7:runtime - omitted for conflict with 1.7.12)
[INFO] | +- (org.apache.groovy:groovy:jar:4.0.13:compile - omitted for conflict with 4.0.11)
[INFO] | +- net.sf.opencsv:opencsv:jar:2.0:compile
[INFO] | +- (org.apache.commons:commons-lang3:jar:3.13.0:compile - omitted for conflict with 3.12.0)
[INFO] | +- (org.apache.commons:commons-compress:jar:1.23.0:compile - omitted for conflict with 1.21)
[INFO] | +- org.fluentlenium:fluentlenium-core:jar:0.10.2:compile
[INFO] | +- com.jhlabs:filters:jar:2.0.235:compile
[INFO] | +- com.paulhammant:ngwebdriver:jar:1.1.6:compile
[INFO] | | - (org.seleniumhq.selenium:selenium-java:jar:4.0.0-alpha-3:compile - omitted for conflict with 4.10.0)
[INFO] | +- joda-time:joda-time:jar:2.12.2:compile
[INFO] | +- (org.hamcrest:hamcrest:jar:2.2:compile - omitted for duplicate)
[INFO] | +- com.google.jimfs:jimfs:jar:1.3.0:compile
[INFO] | | - (com.google.guava:guava:jar:32.1.1-jre:compile - omitted for conflict with 31.1-jre)
[INFO] | +- org.mockito:mockito-core:jar:3.3.3:compile
[INFO] | | +- (net.bytebuddy:byte-buddy:jar:1.10.5:compile - omitted for conflict with 1.11.0)
[INFO] | | +- (net.bytebuddy:byte-buddy-agent:jar:1.10.5:compile - omitted for conflict with 1.14.7)
[INFO] | | - (org.objenesis:objenesis:jar:2.6:compile - omitted for conflict with 3.3)
[INFO] | +- org.assertj:assertj-core:jar:3.24.2:compile
[INFO] | | - (net.bytebuddy:byte-buddy:jar:1.12.21:compile - omitted for conflict with 1.11.0)
[INFO] | +- javax.xml.bind:jaxb-api:jar:2.3.1:compile
[INFO] | | - javax.activation:javax.activation-api:jar:1.2.0:compile
[INFO] | +- com.sun.xml.bind:jaxb-core:jar:2.3.0.1:compile
[INFO] | +- com.sun.xml.bind:jaxb-impl:jar:2.3.3:compile
[INFO] | | +- (jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3:compile - omitted for conflict with 4.0.0)
[INFO] | | - (com.sun.activation:jakarta.activation:jar:1.2.2:runtime - omitted for duplicate)
[INFO] | - (javax.activation:activation:jar:1.1.1:compile - omitted for conflict with 1.1)
[INFO] +- net.serenity-bdd:serenity-rest-assured:jar:4.0.12:compile
[INFO] | +- (net.serenity-bdd:serenity-core:jar:4.0.12:compile - omitted for duplicate)
[INFO] | +- (org.apache.httpcomponents:httpclient:jar:4.5.13:compile - omitted for duplicate)
[INFO] | +- (io.rest-assured:rest-assured:jar:5.3.2:compile - omitted for duplicate)
[INFO] | +- (org.apache.groovy:groovy-json:jar:4.0.13:compile - omitted for conflict with 4.0.11)
[INFO] | +- (org.apache.groovy:groovy-xml:jar:4.0.13:compile - omitted for conflict with 4.0.11)
[INFO] | +- (org.apache.groovy:groovy:jar:4.0.13:compile - omitted for conflict with 4.0.11)
[INFO] | - org.opentest4j:opentest4j:jar:1.2.0:compile
[INFO] +- net.serenity-bdd:serenity-junit:jar:4.0.12:compile
[INFO] | +- (net.serenity-bdd:serenity-core:jar:4.0.12:compile - omitted for duplicate)
[INFO] | +- (junit:junit:jar:4.13.2:compile - omitted for duplicate)
[INFO] | +- jakarta.xml.bind:jakarta.xml.bind-api:jar:4.0.0:compile
[INFO] | | - jakarta.activation:jakarta.activation-api:jar:2.1.0:compile
[INFO] | - (com.sun.xml.bind:jaxb-impl:jar:4.0.3:runtime - omitted for conflict with 2.3.3)
[INFO] +- net.thucydides:thucydides-core:jar:0.9.275:compile
[INFO] | +- (com.fasterxml.jackson.core:jackson-core:jar:2.4.3:compile - omitted for conflict with 2.12.5)
[INFO] | +- (com.fasterxml.jackson.core:jackson-annotations:jar:2.4.3:compile - omitted for conflict with 2.15.2)
[INFO] | +- (com.fasterxml.jackson.core:jackson-databind:jar:2.4.3:compile - omitted for conflict with 2.15.2)
[INFO] | +- com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.4.3:compile
[INFO] | | +- (com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0:compile - omitted for conflict with 2.15.2)
[INFO] | | +- (com.fasterxml.jackson.core:jackson-core:jar:2.4.3:compile - omitted for conflict with 2.12.5)
[INFO] | | +- (com.fasterxml.jackson.core:jackson-databind:jar:2.4.3:compile - omitted for conflict with 2.15.2)
[INFO] | | - (joda-time:joda-time:jar:2.2:compile - omitted for conflict with 2.12.2)
[INFO] | +- com.fasterxml.jackson.datatype:jackson-datatype-guava:jar:2.4.3:compile
[INFO] | | +- (com.fasterxml.jackson.core:jackson-databind:jar:2.4.3:compile - omitted for conflict with 2.15.2)
[INFO] | | +- (com.fasterxml.jackson.core:jackson-core:jar:2.4.3:compile - omitted for conflict with 2.12.5)
[INFO] | | - (com.google.guava:guava:jar:15.0:compile - omitted for conflict with 31.1-jre)
[INFO] | +- cglib:cglib:jar:2.2.2:compile
[INFO] | +- (commons-codec:commons-codec:jar:1.9:compile - omitted for conflict with 1.15)
[INFO] | +- (commons-io:commons-io:jar:2.4:compile - omitted for conflict with 2.11.0)
[INFO] | +- (junit:junit:jar:4.11:compile - omitted for conflict with 4.13.2)
[INFO] | +- com.opera:operadriver:jar:1.4:compile
[INFO] | | +- com.opera:operalaunchers:jar:1.1:compile
[INFO] | | +- (com.google.protobuf:protobuf-java:jar:2.4.1:compile - omitted for conflict with 3.11.4)
[INFO] | | +- commons-jxpath:commons-jxpath:jar:1.3:compile
[INFO] | | +- (org.apache.commons:commons-exec:jar:1.1:compile - omitted for conflict with 1.3)
[INFO] | | - org.ini4j:ini4j:jar:0.5.2:compile
[INFO] | +- (org.seleniumhq.selenium:selenium-server:jar:2.43.1:compile - omitted for conflict with 4.0.0-alpha-2)
[INFO] | +- com.github.detro.ghostdriver:phantomjsdriver:jar:1.1.0:compile
[INFO] | | - (org.seleniumhq.selenium:selenium-server:jar:2.39.0:compile - omitted for conflict with 4.0.0-alpha-2)
[INFO] | +- org.hamcrest:hamcrest-integration:jar:1.3:compile
[INFO] | | - (org.hamcrest:hamcrest-library:jar:1.3:compile - omitted for conflict with 2.2)
[INFO] | +- (org.hamcrest:hamcrest-library:jar:1.3:compile - omitted for conflict with 2.2)
[INFO] | +- (org.hamcrest:hamcrest-core:jar:1.3:compile - omitted for conflict with 2.2)
[INFO] | +- (net.sf.opencsv:opencsv:jar:2.0:compile - omitted for duplicate)
[INFO] | +- commons-beanutils:commons-beanutils-core:jar:1.8.3:compile
[INFO] | | - (commons-logging:commons-logging:jar:1.1.1:compile - omitted for conflict with 1.2)
[INFO] | +- com.googlecode.lambdaj:lambdaj:jar:2.3.3:compile
[INFO] | | - (org.objenesis:objenesis:jar:1.2:compile - omitted for conflict with 3.3)
[INFO] | +- (com.google.guava:guava:jar:17.0:compile - omitted for conflict with 31.1-jre)
[INFO] | +- (joda-time:joda-time:jar:2.0:compile - omitted for conflict with 2.12.2)
[INFO] | +- com.thoughtworks.xstream:xstream:jar:1.4.1:compile
[INFO] | | +- xmlpull:xmlpull:jar:1.1.3.1:compile
[INFO] | | - xpp3:xpp3_min:jar:1.1.4c:compile
[INFO] | +- net.thucydides:thucydides-report-resources:jar:0.9.275:compile
[INFO] | | +- (com.google.inject:guice:jar:3.0:compile - omitted for duplicate)
[INFO] | | - (org.slf4j:slf4j-api:jar:1.6.4:compile - omitted for conflict with 1.7.12)
[INFO] | +- (org.apache.commons:commons-lang3:jar:3.1:compile - omitted for conflict with 3.12.0)
[INFO] | +- net.sf.flexjson:flexjson:jar:2.1:compile
[INFO] | +- (org.freemarker:freemarker:jar:2.3.19:compile - omitted for conflict with 2.3.23)
[INFO] | +- net.sourceforge.jexcelapi:jxl:jar:2.6.12:compile
[INFO] | | - log4j:log4j:jar:1.2.14:compile
[INFO] | +- asm:asm:jar:3.3.1:compile
[INFO] | +- (commons-collections:commons-collections:jar:3.2.1:compile - omitted for conflict with 3.2.2)
[INFO] | +- (org.fluentlenium:fluentlenium-core:jar:0.10.2:compile - omitted for duplicate)
[INFO] | +- xml-apis:xml-apis:jar:1.4.01:compile
[INFO] | +- (com.jhlabs:filters:jar:2.0.235:compile - omitted for duplicate)
[INFO] | +- org.asciidoctor:asciidoctor-java-integration:jar:0.1.3:compile
[INFO] | | +- org.jruby:jruby-complete:jar:1.7.4:compile
[INFO] | | - (com.beust:jcommander:jar:1.30:compile - omitted for conflict with 1.81)
[INFO] | +- (com.google.code.gson:gson:jar:2.2.4:compile - omitted for conflict with 2.10.1)
[INFO] | +- org.hibernate:hibernate-validator:jar:5.1.1.Final:compile
[INFO] | | +- javax.validation:validation-api:jar:1.1.0.Final:compile
[INFO] | | +- org.jboss.logging:jboss-logging:jar:3.1.3.GA:compile
[INFO] | | - com.fasterxml:classmate:jar:1.0.0:compile
[INFO] | +- javax.el:javax.el-api:jar:2.2.4:compile
[INFO] | +- org.glassfish.web:javax.el:jar:2.2.4:compile
[INFO] | | - (javax.el:javax.el-api:jar:2.2.4:compile - omitted for duplicate)
[INFO] | +- com.google.inject:guice:jar:3.0:compile
[INFO] | | +- javax.inject:javax.inject:jar:1:compile
[INFO] | | - aopalliance:aopalliance:jar:1.0:compile
[INFO] | - (org.slf4j:slf4j-api:jar:1.6.4:compile - omitted for conflict with 1.7.12)
[INFO] - org.junit.jupiter:junit-jupiter-api:jar:5.10.0:compile
[INFO] +- (org.opentest4j:opentest4j:jar:1.3.0:compile - omitted for conflict with 1.2.0)
[INFO] +- org.junit.platform:junit-platform-commons:jar:1.10.0:compile
[INFO] | - (org.apiguardian:apiguardian-api:jar:1.1.2:compile - omitted for duplicate)
[INFO] - (org.apiguardian:apiguardian-api:jar:1.1.2:compile - omitted for duplicate)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 5.964 s
[INFO] Finished at: 2023-10-03T13:28:30+05:30
[INFO] ------------------------------------------------------------------------

@wakaleo
Copy link
Member

wakaleo commented Oct 3, 2023

Indeed, plenty of conflicts there. Resolve them and your error will go away.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants