serenity-bdd / serenity-core

Serenity BDD is a test automation library designed to make writing automated acceptance tests easier, and more fun.
http://serenity-bdd.info
Other
716 stars 513 forks source link

Maven cucumber(6) dependencies #2543

Closed ahiltenkamp closed 2 years ago

ahiltenkamp commented 2 years ago

Serentiy Core 2.5.8 comes with cucumber-core 6.10.2 while serenity cucumber6 2.5.8 comes cucumber-core 6.10.4

Found:Serentiy-Core (2.5.8) has dependency cucumber-core 6.10.2 and Serenty-Cucumber6 has dependency cucumber-core 6.10.4

Expected: Serentiy-Core and Serenty-Cucumber6 using same cucumber versions (cucumber-core 6.10.4)

wakaleo commented 2 years ago

Can you propose a PR?

ahiltenkamp commented 2 years ago

Sorry when I have to ask, but what's a PR?

ahiltenkamp commented 2 years ago
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>net.example</groupId>
    <artifactId>poc</artifactId>
    <version>1.0-SNAPSHOT</version>
    <name>Cucumber POC</name>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <serenity.core.version>2.5.8</serenity.core.version>
        <serenity.cucumber6.version>${serenity.core.version}</serenity.cucumber6.version>
        <serenity-rest-assured.version>${serenity.core.version}</serenity-rest-assured.version>
        <serenity-maven-plugin.version>${serenity.core.version}</serenity-maven-plugin.version>
        <serenity-jira-plugin.version>1.12.0</serenity-jira-plugin.version>
        <groovy-all.version>3.0.8</groovy-all.version>
        <slf4j-simple.version>1.7.9</slf4j-simple.version>
        <assertj-core.version>3.20.2</assertj-core.version>
        <commons-net.version>3.3</commons-net.version>
        <junit.version>4.12</junit.version>
        <aspectj.version>1.9.7</aspectj.version>
        <maven-compiler-plugin.version>3.2</maven-compiler-plugin.version>
        <maven-failsafe-plugin.version>2.18</maven-failsafe-plugin.version>
        <maven-surefire-plugin.version>2.18</maven-surefire-plugin.version>
        <json-unit.version>2.27.0</json-unit.version>
    </properties>

    <dependencies>
        <!-- Serenity Core -->
        <dependency>
            <groupId>net.serenity-bdd</groupId>
            <artifactId>serenity-core</artifactId>
            <version>${serenity.core.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>org.projectlombok</groupId>
                    <artifactId>lombok</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>net.serenity-bdd</groupId>
            <artifactId>serenity-cucumber6</artifactId>
            <version>${serenity.cucumber6.version}</version>
        </dependency>

        <dependency>
            <groupId>net.serenity-bdd</groupId>
            <artifactId>serenity-rest-assured</artifactId>
            <version>${serenity-rest-assured.version}</version>
        </dependency>

        <!-- Serenity Jira -->
        <!-- dependency>
            <groupId>net.serenity-bdd</groupId>
            <artifactId>serenity-jira-plugin</artifactId>
            <version>${serenity-jira-plugin.version}</version>
        </dependency -->

        <!-- Slf4J -->
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-simple</artifactId>
            <version>${slf4j-simple.version}</version>
        </dependency>

        <!-- AssertJ -->
        <dependency>
            <groupId>org.assertj</groupId>
            <artifactId>assertj-core</artifactId>
            <version>${assertj-core.version}</version>
        </dependency>

        <!-- Groovy -->
        <dependency>
            <groupId>org.codehaus.groovy</groupId>
            <artifactId>groovy-all</artifactId>
            <version>${groovy-all.version}</version>
            <type>pom</type>
        </dependency>

        <!-- Json Unit -->
        <dependency>
            <groupId>net.javacrumbs.json-unit</groupId>
            <artifactId>json-unit</artifactId>
            <version>${json-unit.version}</version>
        </dependency>
        <!-- Aspect4J -->
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjrt</artifactId>
            <version>${aspectj.version}</version>
        </dependency>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>${aspectj.version}</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/org.json/json -->
        <dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
            <version>20210307</version>
        </dependency>

    </dependencies>

    <build>
        <testSourceDirectory>src/main/java</testSourceDirectory>
    <testOutputDirectory>${project.build.directory}/classes</testOutputDirectory>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>aspectj-maven-plugin</artifactId>
                <version>1.9</version>
                <configuration>
                    <complianceLevel>1.8</complianceLevel>
                    <source>1.8</source>
                    <target>1.8</target>
                    <Xlint>ignore</Xlint>
                    <encoding>UTF-8 </encoding>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>compile</goal>
                            <goal>test-compile</goal>
                        </goals>
                    </execution>
                </executions>
                <dependencies>
                    <dependency>
                        <groupId>org.aspectj</groupId>
                        <artifactId>aspectjrt</artifactId>
                        <version>${aspectj.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>org.aspectj</groupId>
                        <artifactId>aspectjtools</artifactId>
                        <version>${aspectj.version}</version>
                    </dependency>
                </dependencies>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>${maven-surefire-plugin.version}</version>
                <configuration>
                    <forkCount>3</forkCount>
                    <reuseForks>true</reuseForks>
                    <argLine>-Xmx1024m -XX:MaxPermSize=512m</argLine>
                    <skip>true</skip>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-failsafe-plugin</artifactId>
                <version>${maven-failsafe-plugin.version}</version>
                <configuration>
                    <includes>
                        <include>**/runner/*.java</include>
                    </includes>
                    <reuseForks>true</reuseForks>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>integration-test</goal>
                            <goal>verify</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>${maven-compiler-plugin.version}</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>net.serenity-bdd.maven.plugins</groupId>
                <artifactId>serenity-maven-plugin</artifactId>
                <version>${serenity-maven-plugin.version}</version>
                <executions>
                    <execution>
                        <id>serenity-reports</id>
                        <phase>post-integration-test</phase>
                        <goals>
                            <goal>aggregate</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>
ahiltenkamp commented 2 years ago
[INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ context-configuration-bdd-tests ---
[INFO] artifact io.cucumber:messages: checking for updates from central
[INFO] com.example:poc:jar:1.0-SNAPSHOT
[INFO] +- net.serenity-bdd:serenity-core:jar:2.5.8:compile
[INFO] |  +- net.serenity-bdd:serenity-model:jar:2.5.8:compile
[INFO] |  |  +- (net.serenity-bdd:serenity-report-resources:jar:2.5.8:compile - omitted for duplicate)
[INFO] |  |  +- (org.apache.commons:commons-lang3:jar:3.11:compile - omitted for duplicate)
[INFO] |  |  +- (commons-io:commons-io:jar:2.8.0:compile - omitted for duplicate)
[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 - omitted for duplicate)
[INFO] |  |  +- commons-net:commons-net:jar:3.6:compile
[INFO] |  |  +- (commons-collections:commons-collections:jar:3.2.2:compile - omitted for duplicate)
[INFO] |  |  +- (commons-codec:commons-codec:jar:1.15:compile - omitted for duplicate)
[INFO] |  |  +- com.google.guava:guava:jar:30.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.5.0:compile
[INFO] |  |  |  +- com.google.errorprone:error_prone_annotations:jar:2.3.4:compile
[INFO] |  |  |  \- com.google.j2objc:j2objc-annotations:jar:1.3:compile
[INFO] |  |  +- (org.slf4j:slf4j-api:jar:1.7.30:compile - omitted for conflict with 1.7.9)
[INFO] |  |  +- (org.hamcrest:hamcrest:jar:2.2:compile - omitted for duplicate)
[INFO] |  |  +- com.google.inject:guice:jar:5.0.1:compile
[INFO] |  |  |  +- javax.inject:javax.inject:jar:1:compile
[INFO] |  |  |  \- aopalliance:aopalliance:jar:1.0:compile
[INFO] |  |  +- org.jsoup:jsoup:jar:1.13.1:compile
[INFO] |  |  +- com.thoughtworks.xstream:xstream:jar:1.4.17:compile
[INFO] |  |  |  \- io.github.x-stream:mxparser:jar:1.2.1:compile
[INFO] |  |  |     \- xmlpull:xmlpull:jar:1.1.3.1:compile
[INFO] |  |  +- (joda-time:joda-time:jar:2.8.2:compile - omitted for duplicate)
[INFO] |  |  +- io.cucumber:cucumber-core:jar:6.10.2:compile
[INFO] |  |  |  +- io.cucumber:cucumber-gherkin:jar:6.10.2:compile
[INFO] |  |  |  |  \- (io.cucumber:cucumber-plugin:jar:6.10.2:compile - omitted for duplicate)
[INFO] |  |  |  +- io.cucumber:cucumber-gherkin-messages:jar:6.10.2:compile
[INFO] |  |  |  |  \- (io.cucumber:cucumber-gherkin:jar:6.10.2:compile - omitted for duplicate)
[INFO] |  |  |  +- io.cucumber:messages:jar:14.0.1:compile
[INFO] |  |  |  +- io.cucumber:tag-expressions:jar:3.0.0:compile
[INFO] |  |  |  +- io.cucumber:cucumber-expressions:jar:10.3.0:compile
[INFO] |  |  |  +- (io.cucumber:datatable:jar:3.5.0:compile - omitted for conflict with 3.4.0)
[INFO] |  |  |  +- io.cucumber:cucumber-plugin:jar:6.10.2:compile
[INFO] |  |  |  +- io.cucumber:docstring:jar:6.10.2:compile
[INFO] |  |  |  +- io.cucumber:html-formatter:jar:12.0.0:compile
[INFO] |  |  |  |  \- (io.cucumber:messages:jar:14.0.1:compile - omitted for duplicate)
[INFO] |  |  |  \- io.cucumber:create-meta:jar:3.0.0:compile
[INFO] |  |  |     \- (io.cucumber:messages:jar:14.0.1:compile - omitted for duplicate)
[INFO] |  |  +- (io.cucumber:cucumber-java:jar:6.10.2:compile - omitted for conflict with 6.10.4)
[INFO] |  |  +- (com.google.code.gson:gson:jar:2.8.7:compile - omitted for duplicate)
[INFO] |  |  +- (net.sf.opencsv:opencsv:jar:2.0:compile - omitted for duplicate)
[INFO] |  |  +- com.typesafe:config:jar:1.3.1:compile
[INFO] |  |  +- org.imgscalr:imgscalr-lib:jar:4.2:compile
[INFO] |  |  +- org.awaitility:awaitility:jar:4.0.3:compile
[INFO] |  |  |  \- (org.hamcrest:hamcrest:jar:2.1:compile - omitted for conflict with 2.2)
[INFO] |  |  +- org.freemarker:freemarker:jar:2.3.29:compile
[INFO] |  |  +- net.sourceforge.jexcelapi:jxl:jar:2.6.12:compile
[INFO] |  |  +- org.asciidoctor:asciidoctorj:jar:2.5.1:compile
[INFO] |  |  |  +- org.asciidoctor:asciidoctorj-api:jar:2.5.1:compile
[INFO] |  |  |  \- org.jruby:jruby:jar:9.2.17.0:compile
[INFO] |  |  |     +- org.jruby:jruby-core:jar:9.2.17.0:compile
[INFO] |  |  |     |  +- com.github.jnr:jnr-netdb:jar:1.2.0:compile
[INFO] |  |  |     |  +- com.github.jnr:jnr-enxio:jar:0.32.3:compile
[INFO] |  |  |     |  |  \- (com.github.jnr:jnr-constants:jar:0.10.1:compile - omitted for duplicate)
[INFO] |  |  |     |  +- com.github.jnr:jnr-unixsocket:jar:0.38.5:compile
[INFO] |  |  |     |  |  +- (com.github.jnr:jnr-constants:jar:0.10.1:compile - omitted for duplicate)
[INFO] |  |  |     |  |  +- (com.github.jnr:jnr-enxio:jar:0.32.3:compile - omitted for duplicate)
[INFO] |  |  |     |  |  \- (com.github.jnr:jnr-posix:jar:3.1.4:compile - omitted for duplicate)
[INFO] |  |  |     |  +- com.github.jnr:jnr-posix:jar:3.1.4:compile
[INFO] |  |  |     |  |  \- (com.github.jnr:jnr-constants:jar:0.10.1:compile - omitted for duplicate)
[INFO] |  |  |     |  +- com.github.jnr:jnr-constants:jar:0.10.1:compile
[INFO] |  |  |     |  +- com.github.jnr:jffi:jar:1.3.1:compile
[INFO] |  |  |     |  +- com.github.jnr:jffi:jar:native:1.3.1:compile
[INFO] |  |  |     |  +- org.jruby.joni:joni:jar:2.1.31:compile
[INFO] |  |  |     |  |  \- (org.jruby.jcodings:jcodings:jar:1.0.46:compile - omitted for duplicate)
[INFO] |  |  |     |  +- org.jruby.jcodings:jcodings:jar:1.0.46:compile
[INFO] |  |  |     |  +- org.jruby:dirgra:jar:0.3:compile
[INFO] |  |  |     |  +- com.headius:invokebinder:jar:1.11:compile
[INFO] |  |  |     |  +- com.headius:options:jar:1.4:compile
[INFO] |  |  |     |  +- com.jcraft:jzlib:jar:1.1.3:compile
[INFO] |  |  |     |  +- com.martiansoftware:nailgun-server:jar:0.9.1:compile
[INFO] |  |  |     |  +- (joda-time:joda-time:jar:2.10.5:compile - omitted for conflict with 2.8.2)
[INFO] |  |  |     |  +- com.headius:backport9:jar:1.8:compile
[INFO] |  |  |     |  \- javax.annotation:javax.annotation-api:jar:1.3.1:compile
[INFO] |  |  |     \- org.jruby:jruby-stdlib:jar:9.2.17.0:compile
[INFO] |  |  +- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  |  +- net.bytebuddy:byte-buddy:jar:1.11.1:compile
[INFO] |  |  +- net.bytebuddy:byte-buddy-agent:jar:1.11.1:compile
[INFO] |  |  \- org.objenesis:objenesis:jar:3.1:compile
[INFO] |  +- net.serenity-bdd:serenity-reports:jar:2.5.8:compile
[INFO] |  |  +- (net.serenity-bdd:serenity-model:jar:2.5.8:compile - omitted for duplicate)
[INFO] |  |  +- net.serenity-bdd:serenity-stats:jar:2.5.8:compile
[INFO] |  |  |  +- (net.serenity-bdd:serenity-model:jar:2.5.8:compile - omitted for duplicate)
[INFO] |  |  |  \- org.jetbrains.kotlin:kotlin-stdlib:jar:1.5.0:compile
[INFO] |  |  |     +- org.jetbrains:annotations:jar:13.0:compile
[INFO] |  |  |     \- org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.0:compile
[INFO] |  |  +- net.serenity-bdd:serenity-reports-configuration:jar:2.5.8:compile
[INFO] |  |  |  +- (net.serenity-bdd:serenity-model:jar:2.5.8:compile - omitted for duplicate)
[INFO] |  |  |  \- (org.jetbrains.kotlin:kotlin-stdlib:jar:1.5.0:compile - omitted for duplicate)
[INFO] |  |  +- com.vladsch.flexmark:flexmark-all:jar:0.34.30:compile
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark:jar:0.34.30:compile
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-abbreviation:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-autolink:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-typographic:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-ins:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-ext-superscript:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-admonition:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-anchorlink:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-aside:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-jira-converter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-attributes:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-autolink:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- org.nibor.autolink:autolink:jar:0.6.0:compile
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-definition:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-emoji:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-jira-converter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-enumerated-reference:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-ext-attributes:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-escaped-character:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-footnotes:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-gfm-issues:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-gfm-tables:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-gfm-tasklist:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-gfm-users:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-gitlab:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-jekyll-front-matter:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-yaml-front-matter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-jekyll-tag:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-media-tags:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- com.vladsch.flexmark:flexmark-test-util:jar:0.34.30:compile
[INFO] |  |  |  |     \- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-ins:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-xwiki-macros:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-superscript:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-tables:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-toc:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-typographic:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-wikilink:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-yaml-front-matter:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-ext-youtube-embedded:jar:0.34.30:compile
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-formatter:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-html-parser:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-ext-emoji:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-jira-converter:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-tables:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-wikilink:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-ins:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-superscript:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-pdf-converter:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- com.openhtmltopdf:openhtmltopdf-core:jar:0.0.1-RC13:compile
[INFO] |  |  |  |  +- com.openhtmltopdf:openhtmltopdf-pdfbox:jar:0.0.1-RC13:compile
[INFO] |  |  |  |  |  +- org.apache.pdfbox:pdfbox:jar:2.0.8:compile
[INFO] |  |  |  |  |  |  +- org.apache.pdfbox:fontbox:jar:2.0.8: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:xmpbox:jar:2.0.8:compile
[INFO] |  |  |  |  |  |  \- (commons-logging:commons-logging:jar:1.2:compile - omitted for duplicate)
[INFO] |  |  |  |  |  +- (com.openhtmltopdf:openhtmltopdf-core:jar:0.0.1-RC13:compile - omitted for duplicate)
[INFO] |  |  |  |  |  \- de.rototor.pdfbox:graphics2d:jar:0.12:compile
[INFO] |  |  |  |  |     \- (org.apache.pdfbox:pdfbox:jar:2.0.8:compile - omitted for duplicate)
[INFO] |  |  |  |  +- com.openhtmltopdf:openhtmltopdf-rtl-support:jar:0.0.1-RC13:compile
[INFO] |  |  |  |  |  +- com.ibm.icu:icu4j:jar:59.1:compile
[INFO] |  |  |  |  |  \- (com.openhtmltopdf:openhtmltopdf-core:jar:0.0.1-RC13:compile - omitted for duplicate)
[INFO] |  |  |  |  \- com.openhtmltopdf:openhtmltopdf-jsoup-dom-converter:jar:0.0.1-RC13:compile
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-profile-pegdown:jar:0.34.30:compile
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-abbreviation:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-anchorlink:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-aside:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-autolink:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-definition:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-emoji:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-escaped-character:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-footnotes:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-gfm-tasklist:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-ins:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-jekyll-front-matter:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-superscript:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-tables:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-toc:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-typographic:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  +- (com.vladsch.flexmark:flexmark-ext-wikilink:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  |  \- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |  +- com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile
[INFO] |  |  |  \- com.vladsch.flexmark:flexmark-youtrack-converter:jar:0.34.30:compile
[INFO] |  |  |     +- (com.vladsch.flexmark:flexmark-util:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |     +- (com.vladsch.flexmark:flexmark:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |     +- (com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  |     \- (com.vladsch.flexmark:flexmark-ext-tables:jar:0.34.30:compile - omitted for duplicate)
[INFO] |  |  \- es.nitaur.markdown:txtmark:jar:0.16:compile
[INFO] |  +- net.serenity-bdd:serenity-report-resources:jar:2.5.8:compile
[INFO] |  +- com.google.code.gson:gson:jar:2.8.7:compile
[INFO] |  +- com.fasterxml.jackson.core:jackson-core:jar:2.12.4:compile
[INFO] |  +- com.fasterxml.jackson.core:jackson-databind:jar:2.12.4:compile
[INFO] |  |  +- com.fasterxml.jackson.core:jackson-annotations:jar:2.12.4:compile
[INFO] |  |  \- (com.fasterxml.jackson.core:jackson-core:jar:2.12.4:compile - omitted for duplicate)
[INFO] |  +- commons-codec:commons-codec:jar:1.15:compile
[INFO] |  +- commons-io:commons-io:jar:2.8.0:compile
[INFO] |  +- org.seleniumhq.selenium:selenium-server:jar:3.141.59:compile
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-java:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-api:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-chrome-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-edge-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-firefox-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-ie-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- org.seleniumhq.selenium:selenium-opera-driver:jar:3.141.59:compile
[INFO] |  |  |  +- (org.seleniumhq.selenium:selenium-api:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  |  +- (org.seleniumhq.selenium:selenium-remote-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  |  +- (org.apache.commons:commons-exec:jar:1.3:compile - omitted for duplicate)
[INFO] |  |  |  +- (com.squareup.okhttp3:okhttp:jar:3.11.0:compile - omitted for duplicate)
[INFO] |  |  |  \- (com.squareup.okio:okio:jar:1.14.0:compile - omitted for duplicate)
[INFO] |  |  +- org.seleniumhq.selenium:selenium-remote-driver:jar:3.141.59:compile
[INFO] |  |  |  +- (org.seleniumhq.selenium:selenium-api:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  |  +- (org.apache.commons:commons-exec:jar:1.3:compile - omitted for duplicate)
[INFO] |  |  |  +- (com.squareup.okhttp3:okhttp:jar:3.11.0:compile - omitted for duplicate)
[INFO] |  |  |  \- (com.squareup.okio:okio:jar:1.14.0:compile - omitted for duplicate)
[INFO] |  |  +- org.seleniumhq.selenium:selenium-safari-driver:jar:3.141.59:compile
[INFO] |  |  |  +- (org.seleniumhq.selenium:selenium-api:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  |  +- (org.seleniumhq.selenium:selenium-remote-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  |  +- (org.apache.commons:commons-exec:jar:1.3:compile - omitted for duplicate)
[INFO] |  |  |  +- (com.squareup.okhttp3:okhttp:jar:3.11.0:compile - omitted for duplicate)
[INFO] |  |  |  \- (com.squareup.okio:okio:jar:1.14.0:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-support:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- com.beust:jcommander:jar:1.72:compile
[INFO] |  |  +- org.apache.commons:commons-exec:jar:1.3:compile
[INFO] |  |  +- net.jcip:jcip-annotations:jar:1.0:compile
[INFO] |  |  +- org.seleniumhq.selenium:jetty-repacked:jar:9.4.12.v20180830:compile
[INFO] |  |  |  \- (javax.servlet:javax.servlet-api:jar:3.1.0:compile - omitted for duplicate)
[INFO] |  |  +- com.squareup.okhttp3:okhttp:jar:3.11.0:compile
[INFO] |  |  |  \- (com.squareup.okio:okio:jar:1.14.0:compile - omitted for duplicate)
[INFO] |  |  +- com.squareup.okio:okio:jar:1.14.0:compile
[INFO] |  |  +- javax.servlet:javax.servlet-api:jar:3.1.0:compile
[INFO] |  |  \- org.yaml:snakeyaml:jar:1.19:compile
[INFO] |  +- org.seleniumhq.selenium:selenium-java:jar:3.141.59:compile
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-api:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-chrome-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-edge-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-firefox-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-ie-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-opera-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-remote-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-safari-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-support:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.apache.commons:commons-exec:jar:1.3:compile - omitted for duplicate)
[INFO] |  |  +- (com.google.guava:guava:jar:25.0-jre:compile - omitted for conflict with 30.1-jre)
[INFO] |  |  +- (com.squareup.okhttp3:okhttp:jar:3.11.0:compile - omitted for duplicate)
[INFO] |  |  \- (com.squareup.okio:okio:jar:1.14.0:compile - omitted for duplicate)
[INFO] |  +- org.seleniumhq.selenium:selenium-api:jar:3.141.59:compile
[INFO] |  +- org.seleniumhq.selenium:selenium-support:jar:3.141.59:compile
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-api:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-remote-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.apache.commons:commons-exec:jar:1.3:compile - omitted for duplicate)
[INFO] |  |  +- (com.google.guava:guava:jar:25.0-jre:compile - omitted for conflict with 30.1-jre)
[INFO] |  |  +- (com.squareup.okhttp3:okhttp:jar:3.11.0:compile - omitted for duplicate)
[INFO] |  |  \- (com.squareup.okio:okio:jar:1.14.0:compile - omitted for duplicate)
[INFO] |  +- org.seleniumhq.selenium:selenium-chrome-driver:jar:3.141.59:compile
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-api:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-remote-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.apache.commons:commons-exec:jar:1.3:compile - omitted for duplicate)
[INFO] |  |  +- (com.google.guava:guava:jar:25.0-jre:compile - omitted for conflict with 30.1-jre)
[INFO] |  |  +- (com.squareup.okhttp3:okhttp:jar:3.11.0:compile - omitted for duplicate)
[INFO] |  |  \- (com.squareup.okio:okio:jar:1.14.0:compile - omitted for duplicate)
[INFO] |  +- org.seleniumhq.selenium:selenium-firefox-driver:jar:3.141.59:compile
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-api:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-remote-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.apache.commons:commons-exec:jar:1.3:compile - omitted for duplicate)
[INFO] |  |  +- (com.google.guava:guava:jar:25.0-jre:compile - omitted for conflict with 30.1-jre)
[INFO] |  |  +- (com.squareup.okhttp3:okhttp:jar:3.11.0:compile - omitted for duplicate)
[INFO] |  |  \- (com.squareup.okio:okio:jar:1.14.0:compile - omitted for duplicate)
[INFO] |  +- org.seleniumhq.selenium:selenium-edge-driver:jar:3.141.59:compile
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-api:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-remote-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.apache.commons:commons-exec:jar:1.3:compile - omitted for duplicate)
[INFO] |  |  +- (com.google.guava:guava:jar:25.0-jre:compile - omitted for conflict with 30.1-jre)
[INFO] |  |  +- (com.squareup.okhttp3:okhttp:jar:3.11.0:compile - omitted for duplicate)
[INFO] |  |  \- (com.squareup.okio:okio:jar:1.14.0:compile - omitted for duplicate)
[INFO] |  +- org.seleniumhq.selenium:selenium-ie-driver:jar:3.141.59:compile
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-api:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-remote-driver:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.apache.commons:commons-exec:jar:1.3:compile - omitted for duplicate)
[INFO] |  |  +- (com.google.guava:guava:jar:25.0-jre:compile - omitted for conflict with 30.1-jre)
[INFO] |  |  +- (com.squareup.okhttp3:okhttp:jar:3.11.0:compile - omitted for duplicate)
[INFO] |  |  \- (com.squareup.okio:okio:jar:1.14.0:compile - omitted for duplicate)
[INFO] |  +- net.sourceforge.htmlunit:htmlunit:jar:2.47.1:compile
[INFO] |  |  +- xalan:xalan:jar:2.7.2:compile
[INFO] |  |  |  \- xalan:serializer:jar:2.7.2:compile
[INFO] |  |  +- (org.apache.commons:commons-lang3:jar:3.11:compile - omitted for duplicate)
[INFO] |  |  +- (org.apache.commons:commons-text:jar:1.9:compile - omitted for duplicate)
[INFO] |  |  +- org.apache.httpcomponents:httpmime:jar:4.5.13:compile
[INFO] |  |  |  \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
[INFO] |  |  |     +- org.apache.httpcomponents:httpcore:jar:4.4.13:compile
[INFO] |  |  |     +- (commons-logging:commons-logging:jar:1.2:compile - omitted for duplicate)
[INFO] |  |  |     \- (commons-codec:commons-codec:jar:1.11:compile - omitted for conflict with 1.15)
[INFO] |  |  +- net.sourceforge.htmlunit:htmlunit-core-js:jar:2.47.0:compile
[INFO] |  |  +- net.sourceforge.htmlunit:neko-htmlunit:jar:2.47.1:compile
[INFO] |  |  |  \- xerces:xercesImpl:jar:2.12.0:compile
[INFO] |  |  |     \- xml-apis:xml-apis:jar:1.4.01:compile
[INFO] |  |  +- net.sourceforge.htmlunit:htmlunit-cssparser:jar:1.7.0:compile
[INFO] |  |  +- (commons-io:commons-io:jar:2.8.0:compile - omitted for duplicate)
[INFO] |  |  +- (commons-logging:commons-logging:jar:1.2:compile - omitted for duplicate)
[INFO] |  |  +- (commons-net:commons-net:jar:3.7.2:compile - omitted for conflict with 3.6)
[INFO] |  |  +- org.brotli:dec:jar:0.1.2:compile
[INFO] |  |  +- com.shapesecurity:salvation2:jar:3.0.0:compile
[INFO] |  |  \- org.eclipse.jetty.websocket:websocket-client:jar:9.4.36.v20210114:compile
[INFO] |  |     +- org.eclipse.jetty:jetty-client:jar:9.4.36.v20210114:compile
[INFO] |  |     |  +- org.eclipse.jetty:jetty-http:jar:9.4.36.v20210114:compile
[INFO] |  |     |  |  +- (org.eclipse.jetty:jetty-util:jar:9.4.36.v20210114:compile - omitted for duplicate)
[INFO] |  |     |  |  \- (org.eclipse.jetty:jetty-io:jar:9.4.36.v20210114:compile - omitted for duplicate)
[INFO] |  |     |  \- (org.eclipse.jetty:jetty-io:jar:9.4.36.v20210114:compile - omitted for duplicate)
[INFO] |  |     +- org.eclipse.jetty:jetty-util:jar:9.4.36.v20210114:compile
[INFO] |  |     +- org.eclipse.jetty:jetty-io:jar:9.4.36.v20210114:compile
[INFO] |  |     |  \- (org.eclipse.jetty:jetty-util:jar:9.4.36.v20210114:compile - omitted for duplicate)
[INFO] |  |     \- org.eclipse.jetty.websocket:websocket-common:jar:9.4.36.v20210114:compile
[INFO] |  |        +- org.eclipse.jetty.websocket:websocket-api:jar:9.4.36.v20210114:compile
[INFO] |  |        +- (org.eclipse.jetty:jetty-util:jar:9.4.36.v20210114:compile - omitted for duplicate)
[INFO] |  |        \- (org.eclipse.jetty:jetty-io:jar:9.4.36.v20210114:compile - omitted for duplicate)
[INFO] |  +- org.seleniumhq.selenium:htmlunit-driver:jar:2.47.1:compile
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-api:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-support:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  |  \- (net.sourceforge.htmlunit:htmlunit:jar:2.47.1:compile - omitted for duplicate)
[INFO] |  +- com.codeborne:phantomjsdriver:jar:1.4.4:compile
[INFO] |  +- io.appium:java-client:jar:7.5.1:compile
[INFO] |  |  +- (org.seleniumhq.selenium:selenium-api:jar:3.141.59:runtime - omitted for duplicate)
[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] |  |  |  \- (commons-collections:commons-collections:jar:3.2.2:runtime - omitted for duplicate)
[INFO] |  |  +- (org.apache.commons:commons-lang3:jar:3.12.0:runtime - omitted for conflict with 3.11)
[INFO] |  |  +- (org.aspectj:aspectjweaver:jar:1.9.6:runtime - omitted for conflict with 1.9.7)
[INFO] |  |  \- (org.slf4j:slf4j-api:jar:1.7.30:runtime - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy:jar:3.0.8:compile
[INFO] |  +- net.sf.opencsv:opencsv:jar:2.0:compile
[INFO] |  +- commons-beanutils:commons-beanutils:jar:1.9.4:compile
[INFO] |  |  \- (commons-collections:commons-collections:jar:3.2.2:compile - omitted for duplicate)
[INFO] |  +- org.apache.commons:commons-lang3:jar:3.11:compile
[INFO] |  +- commons-collections:commons-collections:jar:3.2.2:compile
[INFO] |  +- org.fluentlenium:fluentlenium-core:jar:0.10.2:compile
[INFO] |  +- io.github.bonigarcia:webdrivermanager:jar:4.4.1:compile
[INFO] |  |  +- (org.slf4j:slf4j-api:jar:1.7.30:compile - omitted for duplicate)
[INFO] |  |  +- (commons-io:commons-io:jar:2.8.0:compile - omitted for duplicate)
[INFO] |  |  +- (com.google.code.gson:gson:jar:2.8.6:compile - omitted for conflict with 2.8.7)
[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.0.3:compile
[INFO] |  |  |  +- org.apache.httpcomponents.core5:httpcore5:jar:5.0.2:compile
[INFO] |  |  |  +- org.apache.httpcomponents.core5:httpcore5-h2:jar:5.0.2:compile
[INFO] |  |  |  |  \- (org.apache.httpcomponents.core5:httpcore5:jar:5.0.2:compile - omitted for duplicate)
[INFO] |  |  |  +- (org.slf4j:slf4j-api:jar:1.7.25:compile - omitted for conflict with 1.7.30)
[INFO] |  |  |  \- (commons-codec:commons-codec:jar:1.13:compile - omitted for conflict with 1.15)
[INFO] |  |  +- org.rauschig:jarchivelib:jar:1.1.0:compile
[INFO] |  |  |  \- org.apache.commons:commons-compress:jar:1.20:compile
[INFO] |  |  \- (org.jsoup:jsoup:jar:1.13.1:compile - omitted for duplicate)
[INFO] |  +- com.jhlabs:filters:jar:2.0.235:compile
[INFO] |  +- com.paulhammant:ngwebdriver:jar:1.1.5:compile
[INFO] |  |  \- (org.seleniumhq.selenium:selenium-java:jar:3.141.59:compile - omitted for duplicate)
[INFO] |  +- joda-time:joda-time:jar:2.8.2:compile
[INFO] |  +- org.hamcrest:hamcrest:jar:2.2:compile
[INFO] |  +- com.google.jimfs:jimfs:jar:1.1:compile
[INFO] |  |  \- (com.google.guava:guava:jar:18.0:compile - omitted for conflict with 30.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.1)
[INFO] |  |  +- (net.bytebuddy:byte-buddy-agent:jar:1.10.5:compile - omitted for conflict with 1.11.1)
[INFO] |  |  \- (org.objenesis:objenesis:jar:2.6:compile - omitted for conflict with 3.1)
[INFO] |  +- (org.assertj:assertj-core:jar:3.18.0:compile - omitted for conflict with 3.20.2)
[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
[INFO] |  |  \- com.sun.activation:jakarta.activation:jar:1.2.2:runtime
[INFO] |  \- javax.activation:activation:jar:1.1.1:compile
[INFO] +- net.serenity-bdd:serenity-cucumber6:jar:2.5.8:compile
[INFO] |  +- (net.serenity-bdd:serenity-core:jar:2.5.8:compile - omitted for duplicate)
[INFO] |  +- net.serenity-bdd:serenity-screenplay:jar:2.5.8:compile
[INFO] |  |  \- (net.serenity-bdd:serenity-core:jar:2.5.8:compile - omitted for duplicate)
[INFO] |  +- net.serenity-bdd:serenity-screenplay-webdriver:jar:2.5.8:compile
[INFO] |  |  +- (net.serenity-bdd:serenity-core:jar:2.5.8:compile - omitted for duplicate)
[INFO] |  |  \- (net.serenity-bdd:serenity-screenplay:jar:2.5.8:compile - omitted for duplicate)
[INFO] |  +- io.cucumber:cucumber-java:jar:6.10.4:compile
[INFO] |  |  +- (io.cucumber:cucumber-core:jar:6.10.4:compile - omitted for conflict with 6.10.2)
[INFO] |  |  \- org.apiguardian:apiguardian-api:jar:1.1.1:compile
[INFO] |  +- io.cucumber:cucumber-junit:jar:6.10.4:compile
[INFO] |  |  +- (org.apiguardian:apiguardian-api:jar:1.1.1:compile - omitted for duplicate)
[INFO] |  |  \- (io.cucumber:cucumber-core:jar:6.10.4:compile - omitted for conflict with 6.10.2)
[INFO] |  +- io.cucumber:datatable-matchers:jar:3.4.0:compile
[INFO] |  |  +- (org.apiguardian:apiguardian-api:jar:1.1.0:compile - omitted for conflict with 1.1.1)
[INFO] |  |  +- io.cucumber:datatable:jar:3.4.0:compile
[INFO] |  |  |  \- (org.apiguardian:apiguardian-api:jar:1.1.0:compile - omitted for conflict with 1.1.1)
[INFO] |  |  \- (org.hamcrest:hamcrest:jar:2.2:compile - omitted for duplicate)
[INFO] |  +- commons-logging:commons-logging:jar:1.2:compile
[INFO] |  +- org.apache.commons:commons-csv:jar:1.5:compile
[INFO] |  +- junit:junit:jar:4.13.1:compile
[INFO] |  |  \- org.hamcrest:hamcrest-core:jar:1.3:compile
[INFO] |  \- (com.google.code.gson:gson:jar:2.8.4:compile - omitted for conflict with 2.8.7)
[INFO] +- net.serenity-bdd:serenity-rest-assured:jar:2.5.8:compile
[INFO] |  +- (net.serenity-bdd:serenity-core:jar:2.5.8:compile - omitted for duplicate)
[INFO] |  +- io.rest-assured:rest-assured:jar:4.3.3:compile
[INFO] |  |  +- (org.hamcrest:hamcrest:jar:2.1:compile - omitted for conflict with 2.2)
[INFO] |  |  +- org.ccil.cowan.tagsoup:tagsoup:jar:1.2.1:compile
[INFO] |  |  +- io.rest-assured:json-path:jar:4.3.3:compile
[INFO] |  |  |  \- io.rest-assured:rest-assured-common:jar:4.3.3:compile
[INFO] |  |  \- io.rest-assured:xml-path:jar:4.3.3:compile
[INFO] |  |     +- (io.rest-assured:rest-assured-common:jar:4.3.3:compile - omitted for duplicate)
[INFO] |  |     +- (org.ccil.cowan.tagsoup:tagsoup:jar:1.2.1:compile - omitted for duplicate)
[INFO] |  |     +- (jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3:compile - omitted for duplicate)
[INFO] |  |     \- (com.sun.xml.bind:jaxb-impl:jar:2.3.3:compile - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-json:jar:3.0.8:compile
[INFO] |  |  \- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-xml:jar:3.0.8:compile
[INFO] |  |  \- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  +- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  \- org.opentest4j:opentest4j:jar:1.2.0:compile
[INFO] +- org.slf4j:slf4j-simple:jar:1.7.9:compile
[INFO] |  \- org.slf4j:slf4j-api:jar:1.7.9:compile
[INFO] +- org.assertj:assertj-core:jar:3.20.2:compile
[INFO] +- org.codehaus.groovy:groovy-all:pom:3.0.8:compile
[INFO] |  +- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-ant:jar:3.0.8:compile
[INFO] |  |  +- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  |  +- org.apache.ant:ant:jar:1.10.9:compile
[INFO] |  |  +- org.apache.ant:ant-junit:jar:1.10.9:runtime
[INFO] |  |  |  +- (org.apache.ant:ant:jar:1.10.9:runtime - omitted for duplicate)
[INFO] |  |  |  \- com.sun:tools:jar:1.8.0:system
[INFO] |  |  +- org.apache.ant:ant-launcher:jar:1.10.9:runtime
[INFO] |  |  |  \- (com.sun:tools:jar:1.8.0:system - omitted for duplicate)
[INFO] |  |  +- org.apache.ant:ant-antlr:jar:1.10.9:runtime
[INFO] |  |  |  \- (com.sun:tools:jar:1.8.0:system - omitted for duplicate)
[INFO] |  |  \- (org.codehaus.groovy:groovy-groovydoc:jar:3.0.8:runtime - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-astbuilder:jar:3.0.8:compile
[INFO] |  |  \- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-cli-picocli:jar:3.0.8:compile
[INFO] |  |  +- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  |  \- info.picocli:picocli:jar:4.5.2:runtime
[INFO] |  +- org.codehaus.groovy:groovy-console:jar:3.0.8:compile
[INFO] |  |  +- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  |  +- (org.codehaus.groovy:groovy-templates:jar:3.0.8:runtime - omitted for duplicate)
[INFO] |  |  \- (org.codehaus.groovy:groovy-swing:jar:3.0.8:runtime - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-datetime:jar:3.0.8:compile
[INFO] |  |  \- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-docgenerator:jar:3.0.8:compile
[INFO] |  |  +- (org.codehaus.groovy:groovy-templates:jar:3.0.8:runtime - omitted for duplicate)
[INFO] |  |  +- (org.codehaus.groovy:groovy:jar:3.0.8:runtime - omitted for duplicate)
[INFO] |  |  \- com.thoughtworks.qdox:qdox:jar:1.12.1:runtime
[INFO] |  +- org.codehaus.groovy:groovy-groovydoc:jar:3.0.8:compile
[INFO] |  |  +- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  |  +- com.github.javaparser:javaparser-core:jar:3.18.0:compile
[INFO] |  |  +- (org.codehaus.groovy:groovy-templates:jar:3.0.8:runtime - omitted for duplicate)
[INFO] |  |  \- (org.codehaus.groovy:groovy-docgenerator:jar:3.0.8:runtime - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-groovysh:jar:3.0.8:compile
[INFO] |  |  +- (org.codehaus.groovy:groovy-templates:jar:3.0.8:runtime - omitted for duplicate)
[INFO] |  |  +- (org.codehaus.groovy:groovy:jar:3.0.8:runtime - omitted for duplicate)
[INFO] |  |  +- (org.codehaus.groovy:groovy-console:jar:3.0.8:runtime - omitted for duplicate)
[INFO] |  |  +- (org.codehaus.groovy:groovy-xml:jar:3.0.8:runtime - omitted for duplicate)
[INFO] |  |  \- jline:jline:jar:2.14.6:runtime
[INFO] |  +- org.codehaus.groovy:groovy-jmx:jar:3.0.8:compile
[INFO] |  |  \- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  +- (org.codehaus.groovy:groovy-json:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-jsr223:jar:3.0.8:compile
[INFO] |  |  \- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-macro:jar:3.0.8:compile
[INFO] |  |  \- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-nio:jar:3.0.8:compile
[INFO] |  |  \- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-servlet:jar:3.0.8:compile
[INFO] |  |  +- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  |  +- (org.codehaus.groovy:groovy-templates:jar:3.0.8:runtime - omitted for duplicate)
[INFO] |  |  \- (org.codehaus.groovy:groovy-xml:jar:3.0.8:runtime - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-sql:jar:3.0.8:compile
[INFO] |  |  \- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-swing:jar:3.0.8:compile
[INFO] |  |  \- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-templates:jar:3.0.8:compile
[INFO] |  |  +- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  |  \- (org.codehaus.groovy:groovy-xml:jar:3.0.8:runtime - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-test:jar:3.0.8:compile
[INFO] |  |  +- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  |  \- (junit:junit:jar:4.13.2:compile - omitted for conflict with 4.13.1)
[INFO] |  +- org.codehaus.groovy:groovy-test-junit5:jar:3.0.8:compile
[INFO] |  |  +- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  |  +- org.junit.jupiter:junit-jupiter-api:jar:5.7.0:compile
[INFO] |  |  |  \- (org.opentest4j:opentest4j:jar:1.2.0:compile - omitted for duplicate)
[INFO] |  |  +- org.junit.platform:junit-platform-launcher:jar:1.7.0:runtime
[INFO] |  |  |  \- org.junit.platform:junit-platform-engine:jar:1.7.0:runtime
[INFO] |  |  |     +- (org.opentest4j:opentest4j:jar:1.2.0:runtime - omitted for duplicate)
[INFO] |  |  |     \- org.junit.platform:junit-platform-commons:jar:1.7.0:runtime
[INFO] |  |  \- org.junit.jupiter:junit-jupiter-engine:jar:5.7.0:runtime
[INFO] |  |     +- (org.junit.platform:junit-platform-engine:jar:1.7.0:runtime - omitted for duplicate)
[INFO] |  |     \- (org.junit.jupiter:junit-jupiter-api:jar:5.7.0:runtime - omitted for duplicate)
[INFO] |  +- org.codehaus.groovy:groovy-testng:jar:3.0.8:compile
[INFO] |  |  +- (org.codehaus.groovy:groovy:jar:3.0.8:compile - omitted for duplicate)
[INFO] |  |  \- org.testng:testng:jar:7.4.0:runtime
[INFO] |  |     +- (com.beust:jcommander:jar:1.78:runtime - omitted for conflict with 1.72)
[INFO] |  |     \- org.webjars:jquery:jar:3.5.1:runtime
[INFO] |  \- (org.codehaus.groovy:groovy-xml:jar:3.0.8:compile - omitted for duplicate)
[INFO] +- net.javacrumbs.json-unit:json-unit:jar:2.27.0:compile
[INFO] |  \- net.javacrumbs.json-unit:json-unit-core:jar:2.27.0:compile
[INFO] |     \- (org.hamcrest:hamcrest-core:jar:2.2:compile - omitted for conflict with 1.3)
[INFO] +- org.aspectj:aspectjrt:jar:1.9.7:compile
[INFO] +- org.aspectj:aspectjweaver:jar:1.9.7:compile
[INFO] \- org.json:json:jar:20210307:compile
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
wakaleo commented 2 years ago

PR = Pull Request

wakaleo commented 2 years ago

serenity-cucumber and serenity-core are now released as part of the same build process, with matching version numbers (as of 3.0.5)