You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Adam (Jira)" <ji...@apache.org> on 2021/08/11 07:58:00 UTC

[jira] [Created] (CXF-8580) maven cxf-codegen-plugin + jaxb2-rich-contract-plugin = BadCommandLineException: Error setting up group-interface-plugin, FileNotFoundException: target/null

Adam created CXF-8580:
-------------------------

             Summary: maven cxf-codegen-plugin + jaxb2-rich-contract-plugin = BadCommandLineException: Error setting up group-interface-plugin, FileNotFoundException: target/null
                 Key: CXF-8580
                 URL: https://issues.apache.org/jira/browse/CXF-8580
             Project: CXF
          Issue Type: Bug
    Affects Versions: 3.4.4
            Reporter: Adam


I would like to use the jaxb2-rich-contract-plugin to generate Java from a wsdl file, where each `xs:group` is a Java interface.

The plugin registers correctly. But when I add the arg `<extraarg>-xjc-Xgroup-contract</extraarg>` I get an error:

{code}
[WARNING] Exception in thread "main" org.apache.cxf.tools.common.ToolException: XJC reported 'BadCommandLineException' for -xjc argument:-Xts -Xgroup-contract -verbose
...
[WARNING] Caused by: com.sun.tools.xjc.BadCommandLineException: Error setting up group-interface-plugin javax.xml.xpath.XPathExpressionException: java.io.FileNotFoundException: /Users/username/projects/myproject/target/null (No such file or directory)
{code}

* jdk 11
* maven 3.8.1
* apache-cxf-plugin.version 3.4.4
* apache-cxf-xjc.version 3.3.1


Originally reported: https://github.com/mklemm/jaxb2-rich-contract-plugin/issues/59

> When using group-contracts with Maven [cxf-codegen-plugin](https://cxf.apache.org/docs/maven-cxf-codegen-plugin-wsdl-to-java.html#Mavencxf-codegen-plugin(WSDLtoJava)-Example7:Usingxjcextensions) the build fails with the following `BadCommandLineException` (included below with the first line of the stack trace with `-X` Maven option set):
>
> ```
> Error setting up group-interface-plugin javax.xml.xpath.XPathExpressionException: java.io.FileNotFoundException: /path/to/working/directory/null (No such file or directory)
>     at com.kscs.util.plugins.xjc.GroupInterfacePlugin.generateDummyGroupUsages (GroupInterfacePlugin.java:218)
> ```
>
> The plugin seems to collide with a hack in [`org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBDataBinding`](https://github.com/apache/cxf/blob/master/tools/wsdlto/databinding/jaxb/src/main/java/org/apache/cxf/tools/wsdlto/databinding/jaxb/JAXBDataBinding.java#L404):
>
> ```java
>         if (context.get(ToolConstants.CFG_NO_ADDRESS_BINDING) == null
>             || context.get(ToolConstants.CFG_XJC_ARGS) != null) {
>             try {
>                 // keep parseArguments happy, supply dummy required command-line
>                 // opts
>                 opts.addGrammar(new InputSource("null"));
> ```
>
> The `CFG_NO_ADDRESS_BINDING` value is null and the `CFG_XJC_ARGS` is of course not null because it contains `-Xgroup-contract`. This means that `GroupInterfacePlugin::generateDummyGroupUsages` will receive one input source, the dummy "null" value, and then findIncludeMappings will crash.
>
> This is a quite puzzling hack. It's not that there's no input schemas; everything builds fine when removing groupt-contract from the plugin list (leaving other arguments to trig the conditional above). Will you implement a workaround or should I report this as a bug to Apache CXF, trying to make them make another workaround for the supposed issue with parseArgument?

---

Reproduction:

### pom.xml

{code:xml}

  <dependencies>
    ...

    <dependency>
      <groupId>org.apache.cxf.xjc-utils</groupId>
      <artifactId>cxf-xjc-runtime</artifactId>
      <version>${apache-cxf-xjc.version}</version>
    </dependency>

    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
    </dependency>
  </dependencies>
  ...

      <plugin>
        <groupId>org.apache.cxf</groupId>
        <artifactId>cxf-codegen-plugin</artifactId>
        <version>${apache-cxf-plugin.version}</version>
        <executions>
          <execution>
            <id>generate-sources</id>
            <phase>generate-sources</phase>
            <configuration>
              <defaultOptions>
                <noAddressBinding>true</noAddressBinding>
              </defaultOptions>
              <wsdlOptions>
                <wsdlOption>
                  <wsdl>${project.basedir}/src/main/resources/schemas/simple-schema.wsdl</wsdl>
                  <extraargs>
                    <extraarg>-xjc-Xts</extraarg>

                    <!-- This arg causes an error -->
                    <extraarg>-xjc-Xgroup-contract</extraarg>

                    <extraarg>-impl</extraarg>
                    <extraarg>-verbose</extraarg>
                    <extraarg>-xjc-verbose</extraarg>
                    <extraarg>-keep</extraarg>
                  </extraargs>
                </wsdlOption>
              </wsdlOptions>
            </configuration>
            <goals>
              <goal>wsdl2java</goal>
            </goals>
          </execution>
        </executions>
        <dependencies>
          <dependency>
            <groupId>net.codesup.util</groupId>
            <artifactId>jaxb2-rich-contract-plugin</artifactId>
            <version>2.1.0</version>
          </dependency>
          <dependency>
            <groupId>org.apache.cxf.xjcplugins</groupId>
            <artifactId>cxf-xjc-ts</artifactId>
            <version>${apache-cxf-xjc.version}</version>
          </dependency>
        </dependencies>
      </plugin>
{code}


### wsdl

{code:xml}
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
  xmlns:tns="http://www.example.com/schemas/gggg"
  targetNamespace="http://www.example.com/schemas/gggg">
  <wsdl:types>
    <xs:schema
      xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
      xmlns:matrix="http://www.example.com/schemas/gggg"
      xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc"
      xmlns:xs="http://www.w3.org/2001/XMLSchema"
      attributeFormDefault="unqualified"
      elementFormDefault="qualified"
      targetNamespace="http://www.example.com/schemas/gggg"
      jaxb:extensionBindingPrefixes="xjc"
      jaxb:version="2.1">
      <xs:annotation>
        <xs:appinfo>
          <jaxb:globalBindings generateIsSetMethod="true">
            <xjc:serializable uid="1"/>
          </jaxb:globalBindings>
        </xs:appinfo>
      </xs:annotation>

      <xs:group name="errorResponse">
        <xs:sequence>
          <xs:element name="error" type="matrix:errorType"/>
        </xs:sequence>
      </xs:group>
      <xs:element name="orderResponse" type="matrix:orderSaveResponseType"/>
      <xs:complexType name="orderSaveResponseType">
        <xs:choice>
          <xs:group ref="matrix:errorResponse"/>
          <xs:element name="succes" type="xs:string"/>
        </xs:choice>
      </xs:complexType>
      <xs:element name="orderRequest">
        <xs:complexType>
          <xs:complexContent>
            <xs:extension base="matrix:baseElement">
              <xs:sequence>
                <xs:element name="hash" type="xs:string"/>
                <xs:element minOccurs="0" name="targetWebshop" type="xs:long"/>
                <xs:element name="orderReference" type="xs:string"/>
              </xs:sequence>
            </xs:extension>
          </xs:complexContent>
        </xs:complexType>
      </xs:element>
      <xs:complexType name="errorType">
        <xs:sequence>
          <xs:element name="code" type="xs:int"/>
          <xs:element name="message" type="xs:string"/>
        </xs:sequence>
      </xs:complexType>

      <xs:complexType abstract="true" name="baseElement">
        <xs:sequence>
          <xs:element name="externalId" type="xs:long"/>
        </xs:sequence>
      </xs:complexType>
    </xs:schema>
  </wsdl:types>

  <wsdl:message name="orderResponse">
    <wsdl:part element="tns:orderResponse" name="orderResponse">
    </wsdl:part>
  </wsdl:message>
  <wsdl:message name="orderRequest">
    <wsdl:part element="tns:orderRequest" name="orderRequest">
    </wsdl:part>
  </wsdl:message>
  <wsdl:portType name="Order">

    <wsdl:operation name="order">
      <wsdl:input message="tns:orderRequest" name="orderRequest">
      </wsdl:input>
      <wsdl:output message="tns:orderResponse" name="orderResponse">
      </wsdl:output>
    </wsdl:operation>

  </wsdl:portType>
  <wsdl:binding name="OrderSoap11" type="tns:Order">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="order">
      <soap:operation soapAction=""/>
      <wsdl:input name="orderRequest">
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output name="orderResponse">
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="OrderService">
    <wsdl:port binding="tns:OrderSoap11" name="OrderSoap11">
      <soap:address location="https://zys.asd.com:443/llll/services"/>
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>
{code}



### `mvn clean compile -X -e`

{code}Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
      Maven home: /usr/local/Cellar/maven/3.8.1/libexec
      Java version: 11.0.11, vendor: AdoptOpenJDK, runtime: /Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home
      Default locale: en_GB, platform encoding: UTF-8
      OS name: "mac os x", version: "10.15.7", arch: "x86_64", family: "mac"
      [DEBUG] Created new class realm maven.api
      [DEBUG] Importing foreign packages into class realm maven.api
      [DEBUG]   Imported: javax.annotation.* < plexus.core
      [DEBUG]   Imported: javax.annotation.security.* < plexus.core
      [DEBUG]   Imported: javax.enterprise.inject.* < plexus.core
      [DEBUG]   Imported: javax.enterprise.util.* < plexus.core
      [DEBUG]   Imported: javax.inject.* < plexus.core
      [DEBUG]   Imported: org.apache.maven.* < plexus.core
      [DEBUG]   Imported: org.apache.maven.artifact < plexus.core
      [DEBUG]   Imported: org.apache.maven.classrealm < plexus.core
      [DEBUG]   Imported: org.apache.maven.cli < plexus.core
      [DEBUG]   Imported: org.apache.maven.configuration < plexus.core
      [DEBUG]   Imported: org.apache.maven.exception < plexus.core
      [DEBUG]   Imported: org.apache.maven.execution < plexus.core
      [DEBUG]   Imported: org.apache.maven.execution.scope < plexus.core
      [DEBUG]   Imported: org.apache.maven.lifecycle < plexus.core
      [DEBUG]   Imported: org.apache.maven.model < plexus.core
      [DEBUG]   Imported: org.apache.maven.monitor < plexus.core
      [DEBUG]   Imported: org.apache.maven.plugin < plexus.core
      [DEBUG]   Imported: org.apache.maven.profiles < plexus.core
      [DEBUG]   Imported: org.apache.maven.project < plexus.core
      [DEBUG]   Imported: org.apache.maven.reporting < plexus.core
      [DEBUG]   Imported: org.apache.maven.repository < plexus.core
      [DEBUG]   Imported: org.apache.maven.rtinfo < plexus.core
      [DEBUG]   Imported: org.apache.maven.settings < plexus.core
      [DEBUG]   Imported: org.apache.maven.toolchain < plexus.core
      [DEBUG]   Imported: org.apache.maven.usability < plexus.core
      [DEBUG]   Imported: org.apache.maven.wagon.* < plexus.core
      [DEBUG]   Imported: org.apache.maven.wagon.authentication < plexus.core
      [DEBUG]   Imported: org.apache.maven.wagon.authorization < plexus.core
      [DEBUG]   Imported: org.apache.maven.wagon.events < plexus.core
      [DEBUG]   Imported: org.apache.maven.wagon.observers < plexus.core
      [DEBUG]   Imported: org.apache.maven.wagon.proxy < plexus.core
      [DEBUG]   Imported: org.apache.maven.wagon.repository < plexus.core
      [DEBUG]   Imported: org.apache.maven.wagon.resource < plexus.core
      [DEBUG]   Imported: org.codehaus.classworlds < plexus.core
      [DEBUG]   Imported: org.codehaus.plexus.* < plexus.core
      [DEBUG]   Imported: org.codehaus.plexus.classworlds < plexus.core
      [DEBUG]   Imported: org.codehaus.plexus.component < plexus.core
      [DEBUG]   Imported: org.codehaus.plexus.configuration < plexus.core
      [DEBUG]   Imported: org.codehaus.plexus.container < plexus.core
      [DEBUG]   Imported: org.codehaus.plexus.context < plexus.core
      [DEBUG]   Imported: org.codehaus.plexus.lifecycle < plexus.core
      [DEBUG]   Imported: org.codehaus.plexus.logging < plexus.core
      [DEBUG]   Imported: org.codehaus.plexus.personality < plexus.core
      [DEBUG]   Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
      [DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
      [DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
      [DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
      [DEBUG]   Imported: org.eclipse.aether.* < plexus.core
      [DEBUG]   Imported: org.eclipse.aether.artifact < plexus.core
      [DEBUG]   Imported: org.eclipse.aether.collection < plexus.core
      [DEBUG]   Imported: org.eclipse.aether.deployment < plexus.core
      [DEBUG]   Imported: org.eclipse.aether.graph < plexus.core
      [DEBUG]   Imported: org.eclipse.aether.impl < plexus.core
      [DEBUG]   Imported: org.eclipse.aether.installation < plexus.core
      [DEBUG]   Imported: org.eclipse.aether.internal.impl < plexus.core
      [DEBUG]   Imported: org.eclipse.aether.metadata < plexus.core
      [DEBUG]   Imported: org.eclipse.aether.repository < plexus.core
      [DEBUG]   Imported: org.eclipse.aether.resolution < plexus.core
      [DEBUG]   Imported: org.eclipse.aether.spi < plexus.core
      [DEBUG]   Imported: org.eclipse.aether.transfer < plexus.core
      [DEBUG]   Imported: org.eclipse.aether.version < plexus.core
      [DEBUG]   Imported: org.fusesource.jansi.* < plexus.core
      [DEBUG]   Imported: org.slf4j.* < plexus.core
      [DEBUG]   Imported: org.slf4j.event.* < plexus.core
      [DEBUG]   Imported: org.slf4j.helpers.* < plexus.core
      [DEBUG]   Imported: org.slf4j.spi.* < plexus.core
      [DEBUG] Populating class realm maven.api
      [INFO] Error stacktraces are turned on.
      [DEBUG] Message scheme: color
      [DEBUG] Message styles: debug info warning error success failure strong mojo project
      [DEBUG] Reading global settings from /usr/local/Cellar/maven/3.8.1/libexec/conf/settings.xml
      [DEBUG] Reading user settings from /Users/username/.m2/settings.xml
      [DEBUG] Reading global toolchains from /usr/local/Cellar/maven/3.8.1/libexec/conf/toolchains.xml
      [DEBUG] Reading user toolchains from /Users/username/.m2/toolchains.xml
      [DEBUG] Using local repository at /Users/username/.m2/repository
      [DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/username/.m2/repository
      [INFO] Scanning for projects...
      [DEBUG] Extension realms for project com.company.internal:my-project:jar:1.0-SNAPSHOT: (none)
      [DEBUG] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
      [DEBUG] Extension realms for project org.springframework.boot:spring-boot-starter-parent:pom:2.5.3: (none)
      [DEBUG] Looking up lifecycle mappings for packaging pom from ClassRealm[plexus.core, parent: null]
      [DEBUG] Extension realms for project org.springframework.boot:spring-boot-dependencies:pom:2.5.3: (none)
      [DEBUG] Looking up lifecycle mappings for packaging pom from ClassRealm[plexus.core, parent: null]
      [DEBUG] === REACTOR BUILD PLAN ================================================
      [DEBUG] Project: com.company.internal:my-project:jar:1.0-SNAPSHOT
      [DEBUG] Tasks:   [clean, compile]
      [DEBUG] Style:   Regular
      [DEBUG] =======================================================================
      [INFO] 
      [INFO] ----------< com.company.internal:my-project >----------
      [INFO] Building my-project 1.0-SNAPSHOT
      [INFO] --------------------------------[ jar ]---------------------------------
      [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
      [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
      [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
      [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
      [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
      [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
      [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
      [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
      [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
      [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
      [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
      [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
      [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
      [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
      [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
      [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
      [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
      [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
      [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
      [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
      [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
      [DEBUG] === PROJECT BUILD PLAN ================================================
      [DEBUG] Project:       com.company.internal:my-project:1.0-SNAPSHOT
      [DEBUG] Dependencies (collect): []
      [DEBUG] Dependencies (resolve): [compile, runtime, test]
      [DEBUG] Repositories (dependencies): [central (https://repo.maven.apache.org/maven2, default, releases)]
      [DEBUG] Repositories (plugins)     : [central (https://repo.maven.apache.org/maven2, default, releases)]
      [DEBUG] -----------------------------------------------------------------------
      [DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:3.1.0:clean (default-clean)
      [DEBUG] Style:         Regular
      [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
      <configuration>
        <directory default-value="${project.build.directory}"/>
        <excludeDefaultDirectories default-value="false">${maven.clean.excludeDefaultDirectories}</excludeDefaultDirectories>
        <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
        <followSymLinks default-value="false">${maven.clean.followSymLinks}</followSymLinks>
        <outputDirectory default-value="${project.build.outputDirectory}"/>
        <reportDirectory default-value="${project.build.outputDirectory}"/>
        <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
        <skip default-value="false">${maven.clean.skip}</skip>
        <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
        <verbose>${maven.clean.verbose}</verbose>
      </configuration>
      [DEBUG] -----------------------------------------------------------------------
      [DEBUG] Goal:          org.jacoco:jacoco-maven-plugin:0.8.7:prepare-agent (prepare-agent)
      [DEBUG] Style:         Regular
      [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
      <configuration>
        <address>${jacoco.address}</address>
        <append>${jacoco.append}</append>
        <classDumpDir>${jacoco.classDumpDir}</classDumpDir>
        <destFile default-value="${project.build.directory}/jacoco.exec">${jacoco.destFile}</destFile>
        <dumpOnExit>${jacoco.dumpOnExit}</dumpOnExit>
        <exclClassLoaders>${jacoco.exclClassLoaders}</exclClassLoaders>
        <inclBootstrapClasses>${jacoco.inclBootstrapClasses}</inclBootstrapClasses>
        <inclNoLocationClasses>${jacoco.inclNoLocationClasses}</inclNoLocationClasses>
        <jmx>${jacoco.jmx}</jmx>
        <output>${jacoco.output}</output>
        <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>
        <port>${jacoco.port}</port>
        <project>${project}</project>
        <propertyName>${jacoco.propertyName}</propertyName>
        <sessionId>${jacoco.sessionId}</sessionId>
        <skip default-value="false">${jacoco.skip}</skip>
      </configuration>
      [DEBUG] -----------------------------------------------------------------------
      [DEBUG] Goal:          org.apache.cxf:cxf-codegen-plugin:3.4.4:wsdl2java (generate-sources)
      [DEBUG] Style:         Regular
      [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
      <configuration>
        <additionalJvmArgs>${cxf.codegen.jvmArgs}</additionalJvmArgs>
        <classesDirectory>${project.build.outputDirectory}</classesDirectory>
        <defaultOptions>
          <noAddressBinding>true</noAddressBinding>
        </defaultOptions>
        <disableDependencyScan default-value="false">${cxf.disableDependencyScan}</disableDependencyScan>
        <disableDirectoryScan default-value="false">${cxf.disableDirectoryScan}</disableDirectoryScan>
        <encoding default-value="${project.build.sourceEncoding}"/>
        <fork default-value="false"/>
        <markerDirectory default-value="${project.build.directory}/cxf-codegen-plugin-markers">${cxf.markerDirectory}</markerDirectory>
        <mavenSession>${session}</mavenSession>
        <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
        <project>${project}</project>
        <skipGarbageCollection default-value="false">${cxf.skipGarbageCollection}</skipGarbageCollection>
        <sourceRoot default-value="${project.build.directory}/generated-sources/cxf">${cxf.sourceRoot}</sourceRoot>
        <testSourceRoot>${cxf.testSourceRoot}</testSourceRoot>
        <testWsdlRoot default-value="${basedir}/src/test/resources/wsdl">${cxf.testWsdlRoot}</testWsdlRoot>
        <useCompileClasspath default-value="false">${cxf.useCompileClasspath}</useCompileClasspath>
        <wsdlOptions>
          <wsdlOption>
            <wsdl>/Users/username/projects/myproject/src/main/resources/schemas/simple-schema.wsdl</wsdl>
            <extraargs>
              <extraarg>-xjc-Xts</extraarg>
              <extraarg>-xjc-Xgroup-contract</extraarg>
              <extraarg>-impl</extraarg>
              <extraarg>-verbose</extraarg>
              <extraarg>-xjc-verbose</extraarg>
              <extraarg>-keep</extraarg>
            </extraargs>
          </wsdlOption>
        </wsdlOptions>
        <wsdlRoot default-value="${basedir}/src/main/resources/wsdl">${cxf.wsdlRoot}</wsdlRoot>
      </configuration>
      [DEBUG] -----------------------------------------------------------------------
      [DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources)
      [DEBUG] Style:         Regular
      [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
      <configuration>
        <addDefaultExcludes default-value="true"/>
        <buildFilters default-value="${project.build.filters}"/>
        <delimiters>
          <delimiter>@</delimiter>
        </delimiters>
        <encoding default-value="${project.build.sourceEncoding}"/>
        <escapeWindowsPaths default-value="true"/>
        <fileNameFiltering default-value="false"/>
        <includeEmptyDirs default-value="false"/>
        <outputDirectory default-value="${project.build.outputDirectory}"/>
        <overwrite default-value="false"/>
        <project default-value="${project}"/>
        <propertiesEncoding>UTF-8</propertiesEncoding>
        <resources default-value="${project.resources}"/>
        <session default-value="${session}"/>
        <skip default-value="false">${maven.resources.skip}</skip>
        <supportMultiLineFiltering default-value="false"/>
        <useBuildFilters default-value="true"/>
        <useDefaultDelimiters default-value="true">false</useDefaultDelimiters>
      </configuration>
      [DEBUG] -----------------------------------------------------------------------
      [DEBUG] Goal:          org.jetbrains.kotlin:kotlin-maven-plugin:1.5.21:compile (compile)
      [DEBUG] Style:         Regular
      [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
      <configuration>
        <apiVersion>${kotlin.compiler.apiVersion}</apiVersion>
        <args>
          <arg>-Xopt-in=kotlin.time.ExperimentalTime</arg>
          <arg>-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi</arg>
          <arg>-Xopt-in=kotlinx.coroutines.FlowPreview</arg>
          <arg>-Xjsr305=strict</arg>
        </args>
        <classpath default-value="${project.compileClasspathElements}"/>
        <compilerPlugins>
          <plugin>spring</plugin>
          <plugin>no-arg</plugin>
        </compilerPlugins>
        <experimentalCoroutines>${kotlin.compiler.experimental.coroutines}</experimentalCoroutines>
        <incrementalCachesRoot default-value="${project.build.directory}/kotlin-ic">${kotlin.compiler.incremental.cache.root}</incrementalCachesRoot>
        <javaParameters>true</javaParameters>
        <jdkHome>${kotlin.compiler.jdkHome}</jdkHome>
        <jvmTarget>11</jvmTarget>
        <languageVersion>${kotlin.compiler.languageVersion}</languageVersion>
        <moduleName default-value="${project.artifactId}"/>
        <myIncremental default-value="false">${kotlin.compiler.incremental}</myIncremental>
        <nowarn default-value="false"/>
        <output default-value="${project.build.outputDirectory}"/>
        <project default-value="${project}"/>
        <scriptTemplates>${kotlin.compiler.scriptTemplates}</scriptTemplates>
        <sourceDirs>
          <sourceDir>/Users/username/projects/myproject/src/main/kotlin</sourceDir>
          <sourceDir>/Users/username/projects/myproject/src/main/java</sourceDir>
          <sourceDir>/Users/username/projects/myproject/target/generated-sources/wsimport</sourceDir>
          <sourceDir>/Users/username/projects/myproject/target/generated-sources/cxf</sourceDir>
        </sourceDirs>
        <testClasspath default-value="${project.testClasspathElements}"/>
        <testModuleName default-value="${project.artifactId}-test"/>
        <testOutput default-value="${project.build.testOutputDirectory}"/>
        <mojoExecution default-value="${mojoExecution}"/>
      </configuration>
      [DEBUG] -----------------------------------------------------------------------
      [DEBUG] Goal:          org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (java-compile)
      [DEBUG] Style:         Regular
      [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
      <configuration>
        <basedir default-value="${basedir}"/>
        <buildDirectory default-value="${project.build.directory}"/>
        <compilePath default-value="${project.compileClasspathElements}"/>
        <compileSourceRoots default-value="${project.compileSourceRoots}"/>
        <compilerId default-value="javac">${maven.compiler.compilerId}</compilerId>
        <compilerReuseStrategy default-value="${reuseCreated}">${maven.compiler.compilerReuseStrategy}</compilerReuseStrategy>
        <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
        <debug default-value="true">${maven.compiler.debug}</debug>
        <debuglevel>${maven.compiler.debuglevel}</debuglevel>
        <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
        <executable>${maven.compiler.executable}</executable>
        <failOnError default-value="true">${maven.compiler.failOnError}</failOnError>
        <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
        <forceJavacCompilerUse default-value="false">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse>
        <fork default-value="false">${maven.compiler.fork}</fork>
        <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
        <maxmem>${maven.compiler.maxmem}</maxmem>
        <meminitial>${maven.compiler.meminitial}</meminitial>
        <mojoExecution default-value="${mojoExecution}"/>
        <optimize default-value="false">${maven.compiler.optimize}</optimize>
        <outputDirectory default-value="${project.build.outputDirectory}"/>
        <parameters default-value="false">true</parameters>
        <project default-value="${project}"/>
        <projectArtifact default-value="${project.artifact}"/>
        <release>${maven.compiler.release}</release>
        <session default-value="${session}"/>
        <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
        <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
        <skipMain>${maven.main.skip}</skipMain>
        <skipMultiThreadWarning default-value="false">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>
        <source default-value="1.6">${maven.compiler.source}</source>
        <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
        <target default-value="1.6">${maven.compiler.target}</target>
        <useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
        <verbose default-value="false">${maven.compiler.verbose}</verbose>
      </configuration>
      [DEBUG] =======================================================================
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for apache.snapshots (http://repository.apache.org/snapshots).
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository).
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for ow2-snapshot (http://repository.ow2.org/nexus/content/repositories/snapshots).
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for codehaus.snapshots (http://snapshots.repository.codehaus.org).
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for apache-snapshots (http://people.apache.org/repo/m2-snapshot-repository).
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for apache-incubator (http://people.apache.org/repo/m2-incubating-repository/).
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for codehaus-snapshots (http://snapshots.repository.codehaus.org).
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for terracotta-snapshots (http://www.terracotta.org/download/reflector/snapshots).
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for terracotta-releases (http://www.terracotta.org/download/reflector/releases).
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for vaadin-snapshots (http://oss.sonatype.org/content/repositories/vaadin-snapshots/).
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for vaadin-releases (http://oss.sonatype.org/content/repositories/vaadin-releases/).
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for ossrh-snapshots (http://oss.sonatype.org/content/repositories/snapshots).
      [DEBUG] Dependency collection stats {ConflictMarker.analyzeTime=2629690, ConflictMarker.markTime=769286, ConflictMarker.nodeCount=846, ConflictIdSorter.graphTime=1482397, ConflictIdSorter.topsortTime=420949, ConflictIdSorter.conflictIdCount=186, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=15281866, ConflictResolver.conflictItemCount=462, DefaultDependencyCollector.collectTime=405806892, DefaultDependencyCollector.transformTime=22377536}
      [DEBUG] com.company.internal:my-project:jar:1.0-SNAPSHOT
      [DEBUG]    org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.5.21:compile
      [DEBUG]       org.jetbrains.kotlin:kotlin-stdlib:jar:1.5.21:compile (version managed from 1.5.21)
      [DEBUG]          org.jetbrains:annotations:jar:13.0:compile
      [DEBUG]          org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.21:compile (version managed from 1.5.21)
      [DEBUG]       org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.5.21:compile (version managed from 1.5.21)
      [DEBUG]    org.jetbrains.kotlin:kotlin-reflect:jar:1.5.21:compile
      [DEBUG]    org.jetbrains.kotlinx:kotlinx-coroutines-core:jar:1.5.1:compile
      [DEBUG]       org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:jar:1.5.1:compile (version managed from 1.5.1)
      [DEBUG]    com.neovisionaries:nv-i18n:jar:1.28:compile
      [DEBUG]    org.codehaus.woodstox:woodstox-core-asl:jar:4.4.1:compile
      [DEBUG]       javax.xml.stream:stax-api:jar:1.0-2:compile
      [DEBUG]       org.codehaus.woodstox:stax2-api:jar:3.1.4:compile
      [DEBUG]    org.apache.pdfbox:pdfbox:jar:2.0.24:compile
      [DEBUG]       org.apache.pdfbox:fontbox:jar:2.0.24:compile
      [DEBUG]       commons-logging:commons-logging:jar:1.2:compile
      [DEBUG]    org.apache.pdfbox:pdfbox-tools:jar:2.0.24:compile
      [DEBUG]       org.apache.pdfbox:pdfbox-debugger:jar:2.0.24:compile
      [DEBUG]    org.apache.cxf:cxf-rt-frontend-jaxws:jar:3.3.4:compile
      [DEBUG]       xml-resolver:xml-resolver:jar:1.2:compile
      [DEBUG]       org.ow2.asm:asm:jar:7.1:compile
      [DEBUG]       org.apache.cxf:cxf-core:jar:3.3.4:compile
      [DEBUG]          org.glassfish.jaxb:jaxb-runtime:jar:2.3.4:compile (version managed from 2.3.2)
      [DEBUG]             org.glassfish.jaxb:txw2:jar:2.3.4:compile (version managed from 2.3.4)
      [DEBUG]             com.sun.istack:istack-commons-runtime:jar:3.0.12:compile
      [DEBUG]          com.fasterxml.woodstox:woodstox-core:jar:5.0.3:compile
      [DEBUG]          org.apache.ws.xmlschema:xmlschema-core:jar:2.2.4:compile
      [DEBUG]       org.apache.cxf:cxf-rt-bindings-soap:jar:3.3.4:compile
      [DEBUG]          org.apache.cxf:cxf-rt-wsdl:jar:3.3.4:compile
      [DEBUG]             wsdl4j:wsdl4j:jar:1.6.3:compile (version managed from 1.6.3)
      [DEBUG]          org.apache.cxf:cxf-rt-databinding-jaxb:jar:3.3.4:compile
      [DEBUG]       org.apache.cxf:cxf-rt-bindings-xml:jar:3.3.4:compile
      [DEBUG]       org.apache.cxf:cxf-rt-frontend-simple:jar:3.3.4:compile
      [DEBUG]       org.apache.cxf:cxf-rt-ws-addr:jar:3.3.4:compile
      [DEBUG]          org.apache.cxf:cxf-rt-ws-policy:jar:3.3.4:compile
      [DEBUG]       javax.annotation:javax.annotation-api:jar:1.3.2:compile (version managed from 1.3.2)
      [DEBUG]       javax.xml.ws:jaxws-api:jar:2.3.1:compile (version managed from 2.3.0)
      [DEBUG]          javax.xml.soap:javax.xml.soap-api:jar:1.4.0:compile
      [DEBUG]       com.sun.activation:javax.activation:jar:1.2.0:compile
      [DEBUG]       org.apache.geronimo.specs:geronimo-ws-metadata_2.0_spec:jar:1.1.3:compile
      [DEBUG]       com.sun.xml.messaging.saaj:saaj-impl:jar:1.5.3:compile (version managed from 1.4.0-b03)
      [DEBUG]          jakarta.xml.soap:jakarta.xml.soap-api:jar:1.4.2:compile (version managed from 1.4.2)
      [DEBUG]          org.jvnet.staxex:stax-ex:jar:1.8.3:compile
      [DEBUG]          com.sun.activation:jakarta.activation:jar:1.2.2:runtime (version managed from 1.2.2)
      [DEBUG]       org.jacorb:jacorb-omgapi:jar:3.7:compile
      [DEBUG]       org.apache.geronimo.specs:geronimo-jta_1.1_spec:jar:1.1.1:compile
      [DEBUG]       org.jboss.spec.javax.rmi:jboss-rmi-api_1.0_spec:jar:1.0.6.Final:compile
      [DEBUG]    org.apache.cxf:cxf-rt-transports-http-hc:jar:3.3.4:compile
      [DEBUG]       org.apache.cxf:cxf-rt-transports-http:jar:3.3.4:compile
      [DEBUG]       org.slf4j:slf4j-api:jar:1.7.29:compile (version managed from 1.7.28)
      [DEBUG]       org.slf4j:jcl-over-slf4j:jar:1.7.29:compile (version managed from 1.7.28)
      [DEBUG]       org.apache.httpcomponents:httpcore-nio:jar:4.4.14:compile (version managed from 4.4.12)
      [DEBUG]          org.apache.httpcomponents:httpcore:jar:4.4.14:compile (version managed from 4.4.14)
      [DEBUG]       org.apache.httpcomponents:httpasyncclient:jar:4.1.4:compile (version managed from 4.1.4) (exclusions managed from [commons-logging:commons-logging:*:*])
      [DEBUG]          org.apache.httpcomponents:httpclient:jar:4.5.13:compile (version managed from 4.5.6) (exclusions managed from [])
      [DEBUG]             commons-codec:commons-codec:jar:1.15:compile (version managed from 1.11)
      [DEBUG]    org.apache.cxf:cxf-rt-ws-security:jar:3.3.4:compile
      [DEBUG]       org.apache.cxf:cxf-rt-security-saml:jar:3.3.4:compile
      [DEBUG]          org.apache.cxf:cxf-rt-security:jar:3.3.4:compile
      [DEBUG]       net.sf.ehcache:ehcache:jar:2.10.9.2:compile (version managed from 2.10.6)
      [DEBUG]       org.apache.wss4j:wss4j-ws-security-dom:jar:2.2.4:compile
      [DEBUG]          org.apache.wss4j:wss4j-ws-security-common:jar:2.2.4:compile
      [DEBUG]             org.apache.santuario:xmlsec:jar:2.1.4:compile
      [DEBUG]             org.opensaml:opensaml-saml-impl:jar:3.3.0:compile
      [DEBUG]                org.opensaml:opensaml-profile-api:jar:3.3.0:compile
      [DEBUG]                   org.opensaml:opensaml-core:jar:3.3.0:compile
      [DEBUG]                      io.dropwizard.metrics:metrics-core:jar:4.1.25:compile (version managed from 3.1.2)
      [DEBUG]                org.opensaml:opensaml-saml-api:jar:3.3.0:compile
      [DEBUG]                   org.opensaml:opensaml-xmlsec-api:jar:3.3.0:compile
      [DEBUG]                   org.opensaml:opensaml-soap-api:jar:3.3.0:compile
      [DEBUG]                org.opensaml:opensaml-security-impl:jar:3.3.0:compile
      [DEBUG]                   org.opensaml:opensaml-security-api:jar:3.3.0:compile
      [DEBUG]                      org.cryptacular:cryptacular:jar:1.1.1:compile
      [DEBUG]                      org.bouncycastle:bcprov-jdk15on:jar:1.54:compile
      [DEBUG]                org.opensaml:opensaml-xmlsec-impl:jar:3.3.0:compile
      [DEBUG]                net.shibboleth.utilities:java-support:jar:7.3.0:compile
      [DEBUG]             org.opensaml:opensaml-xacml-impl:jar:3.3.0:compile
      [DEBUG]                org.opensaml:opensaml-xacml-api:jar:3.3.0:compile
      [DEBUG]             org.opensaml:opensaml-xacml-saml-impl:jar:3.3.0:compile
      [DEBUG]                org.opensaml:opensaml-xacml-saml-api:jar:3.3.0:compile
      [DEBUG]             org.jasypt:jasypt:jar:1.9.3:compile
      [DEBUG]             org.apache.geronimo.javamail:geronimo-javamail_1.4_mail:jar:1.8.4:compile
      [DEBUG]       org.apache.wss4j:wss4j-policy:jar:2.2.4:compile
      [DEBUG]          org.apache.neethi:neethi:jar:3.1.1:compile
      [DEBUG]       org.apache.wss4j:wss4j-ws-security-stax:jar:2.2.4:compile
      [DEBUG]          org.apache.wss4j:wss4j-bindings:jar:2.2.4:compile
      [DEBUG]       org.apache.wss4j:wss4j-ws-security-policy-stax:jar:2.2.4:compile
      [DEBUG]    org.springframework.boot:spring-boot-starter:jar:2.5.3:compile
      [DEBUG]       org.springframework.boot:spring-boot:jar:2.5.3:compile (version managed from 2.5.3)
      [DEBUG]          org.springframework:spring-context:jar:5.3.9:compile (version managed from 5.3.9)
      [DEBUG]             org.springframework:spring-aop:jar:5.3.9:compile (version managed from 5.3.9)
      [DEBUG]             org.springframework:spring-beans:jar:5.3.9:compile (version managed from 5.3.9)
      [DEBUG]             org.springframework:spring-expression:jar:5.3.9:compile (version managed from 5.3.9)
      [DEBUG]       org.springframework.boot:spring-boot-autoconfigure:jar:2.5.3:compile (version managed from 2.5.3)
      [DEBUG]       jakarta.annotation:jakarta.annotation-api:jar:1.3.5:compile (version managed from 1.3.5)
      [DEBUG]       org.springframework:spring-core:jar:5.3.9:compile (version managed from 5.3.9)
      [DEBUG]          org.springframework:spring-jcl:jar:5.3.9:compile (version managed from 5.3.9)
      [DEBUG]       org.yaml:snakeyaml:jar:1.28:compile (version managed from 1.28)
      [DEBUG]    org.springframework.boot:spring-boot-starter-log4j2:jar:2.5.3:compile
      [DEBUG]       org.apache.logging.log4j:log4j-slf4j-impl:jar:2.14.1:compile (version managed from 2.14.1)
      [DEBUG]          org.apache.logging.log4j:log4j-api:jar:2.14.1:compile (version managed from 2.14.1)
      [DEBUG]       org.apache.logging.log4j:log4j-core:jar:2.14.1:compile (version managed from 2.14.1)
      [DEBUG]       org.apache.logging.log4j:log4j-jul:jar:2.14.1:compile (version managed from 2.14.1)
      [DEBUG]       org.slf4j:jul-to-slf4j:jar:1.7.29:compile (version managed from 1.7.32)
      [DEBUG]    org.springframework.boot:spring-boot-configuration-processor:jar:2.5.3:compile
      [DEBUG]    com.fasterxml.jackson.core:jackson-databind:jar:2.12.4:compile
      [DEBUG]       com.fasterxml.jackson.core:jackson-annotations:jar:2.12.4:compile (version managed from 2.12.4)
      [DEBUG]       com.fasterxml.jackson.core:jackson-core:jar:2.12.4:compile (version managed from 2.12.4)
      [DEBUG]    org.jsoup:jsoup:jar:1.14.1:compile
      [DEBUG]    com.github.javafaker:javafaker:jar:1.0.2:compile
      [DEBUG]       org.yaml:snakeyaml:jar:android:1.23:compile
      [DEBUG]       com.github.mifmif:generex:jar:1.0.2:compile
      [DEBUG]          dk.brics.automaton:automaton:jar:1.11-8:compile
      [DEBUG]    org.springframework.boot:spring-boot-starter-test:jar:2.5.3:test
      [DEBUG]       org.springframework.boot:spring-boot-test:jar:2.5.3:test (version managed from 2.5.3)
      [DEBUG]       org.springframework.boot:spring-boot-test-autoconfigure:jar:2.5.3:test (version managed from 2.5.3)
      [DEBUG]       com.jayway.jsonpath:json-path:jar:2.5.0:test (version managed from 2.5.0)
      [DEBUG]          net.minidev:json-smart:jar:2.4.7:test (version managed from 2.3)
      [DEBUG]             net.minidev:accessors-smart:jar:2.4.7:test
      [DEBUG]       jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3:compile (version managed from 2.3.3)
      [DEBUG]       org.hamcrest:hamcrest:jar:2.2:test (version managed from 2.2)
      [DEBUG]       org.mockito:mockito-core:jar:3.9.0:test (version managed from 3.9.0)
      [DEBUG]          net.bytebuddy:byte-buddy:jar:1.10.22:test (version managed from 1.10.20)
      [DEBUG]          net.bytebuddy:byte-buddy-agent:jar:1.10.22:test (version managed from 1.10.20)
      [DEBUG]          org.objenesis:objenesis:jar:3.2:test
      [DEBUG]       org.mockito:mockito-junit-jupiter:jar:3.9.0:test (version managed from 3.9.0)
      [DEBUG]       org.skyscreamer:jsonassert:jar:1.5.0:test (version managed from 1.5.0)
      [DEBUG]          com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test
      [DEBUG]       org.springframework:spring-test:jar:5.3.9:test (version managed from 5.3.9)
      [DEBUG]       org.xmlunit:xmlunit-core:jar:2.8.2:test (version managed from 2.8.2)
      [DEBUG]    org.junit.jupiter:junit-jupiter:jar:5.7.1:test
      [DEBUG]       org.junit.jupiter:junit-jupiter-api:jar:5.7.1:test (version managed from 5.7.1)
      [DEBUG]          org.opentest4j:opentest4j:jar:1.2.0:test
      [DEBUG]          org.junit.platform:junit-platform-commons:jar:1.7.2:test (version managed from 1.7.1)
      [DEBUG]       org.junit.jupiter:junit-jupiter-params:jar:5.7.2:test (version managed from 5.7.1)
      [DEBUG]       org.junit.jupiter:junit-jupiter-engine:jar:5.7.1:test (version managed from 5.7.1)
      [DEBUG]    org.junit.platform:junit-platform-launcher:jar:1.7.2:test
      [DEBUG]       org.apiguardian:apiguardian-api:jar:1.1.1:compile (version managed from 1.1.0)
      [DEBUG]       org.junit.platform:junit-platform-engine:jar:1.7.1:test (version managed from 1.7.2)
      [DEBUG]    org.assertj:assertj-core:jar:3.19.0:compile
      [DEBUG]    io.cucumber:cucumber-java:jar:6.10.4:test
      [DEBUG]       io.cucumber:cucumber-core:jar:6.10.4:compile (version managed from 6.10.4)
      [DEBUG]          io.cucumber:cucumber-gherkin:jar:6.10.4:compile (version managed from 6.10.4)
      [DEBUG]          io.cucumber:cucumber-gherkin-messages:jar:6.10.4:compile (version managed from 6.10.4)
      [DEBUG]          io.cucumber:messages:jar:15.0.0:compile (version managed from 15.0.0)
      [DEBUG]          io.cucumber:tag-expressions:jar:3.0.1:compile (version managed from 3.0.1)
      [DEBUG]          io.cucumber:cucumber-expressions:jar:10.3.0:compile (version managed from 10.3.0)
      [DEBUG]          io.cucumber:datatable:jar:3.5.0:compile (version managed from 3.5.0)
      [DEBUG]          io.cucumber:cucumber-plugin:jar:6.10.4:compile (version managed from 6.10.4)
      [DEBUG]          io.cucumber:docstring:jar:6.10.4:compile (version managed from 6.10.4)
      [DEBUG]          io.cucumber:html-formatter:jar:13.0.0:compile (version managed from 13.0.0)
      [DEBUG]          io.cucumber:create-meta:jar:4.0.0:compile (version managed from 4.0.0)
      [DEBUG]    io.cucumber:cucumber-junit-platform-engine:jar:6.10.4:test
      [DEBUG]    io.cucumber:cucumber-spring:jar:6.10.4:compile
      [DEBUG]    net.masterthought:cucumber-reporting:jar:5.5.3:test
      [DEBUG]       com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.12.4:test (version managed from 2.12.1)
      [DEBUG]       org.apache.velocity:velocity-engine-core:jar:2.2:test
      [DEBUG]       commons-collections:commons-collections:jar:3.2.2:test
      [DEBUG]       joda-time:joda-time:jar:2.10.9:compile
      [DEBUG]       commons-io:commons-io:jar:2.6:test
      [DEBUG]       org.codehaus.plexus:plexus-utils:jar:3.3.0:test
      [DEBUG]       com.googlecode.owasp-java-html-sanitizer:owasp-java-html-sanitizer:jar:20200713.1:test
      [DEBUG]          com.google.guava:guava:jar:27.1-jre:compile
      [DEBUG]             com.google.guava:failureaccess:jar:1.0.1:compile
      [DEBUG]             com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
      [DEBUG]             com.google.code.findbugs:jsr305:jar:3.0.2:compile
      [DEBUG]             org.checkerframework:checker-qual:jar:2.5.2:compile
      [DEBUG]             com.google.errorprone:error_prone_annotations:jar:2.2.0:compile
      [DEBUG]             com.google.j2objc:j2objc-annotations:jar:1.1:compile
      [DEBUG]             org.codehaus.mojo:animal-sniffer-annotations:jar:1.17:compile
      [DEBUG]       commons-configuration:commons-configuration:jar:1.10:test
      [DEBUG]          commons-lang:commons-lang:jar:2.6:test
      [DEBUG]    org.apache.cxf.xjc-utils:cxf-xjc-runtime:jar:3.3.1:compile
      [DEBUG]       jakarta.xml.ws:jakarta.xml.ws-api:jar:2.3.3:compile (version managed from 2.3.2)
      [DEBUG]          jakarta.jws:jakarta.jws-api:jar:2.1.0:runtime
      [DEBUG]       jakarta.activation:jakarta.activation-api:jar:1.2.2:compile (version managed from 1.2.1)
      [DEBUG]    org.apache.commons:commons-lang3:jar:3.12.0:compile
      [INFO] 
      [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ my-project ---
      [DEBUG] Dependency collection stats {ConflictMarker.analyzeTime=66029, ConflictMarker.markTime=21690, ConflictMarker.nodeCount=14, ConflictIdSorter.graphTime=37940, ConflictIdSorter.topsortTime=16432, ConflictIdSorter.conflictIdCount=12, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=148259, ConflictResolver.conflictItemCount=14, DefaultDependencyCollector.collectTime=21408982, DefaultDependencyCollector.transformTime=341770}
      [DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:3.1.0
      [DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile
      [DEBUG]       org.apache.maven:maven-model:jar:3.0:compile
      [DEBUG]          org.codehaus.plexus:plexus-utils:jar:2.0.4:compile
      [DEBUG]       org.apache.maven:maven-artifact:jar:3.0:compile
      [DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile
      [DEBUG]          org.codehaus.plexus:plexus-component-annotations:jar:1.7.1:compile (version managed from default)
      [DEBUG]          org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile
      [DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile
      [DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile
      [DEBUG]    org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
      [DEBUG]       commons-io:commons-io:jar:2.5:compile
      [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.1.0
      [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.1.0
      [DEBUG]   Imported:  < maven.api
      [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.1.0
      [DEBUG]   Included: org.apache.maven.plugins:maven-clean-plugin:jar:3.1.0
      [DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:2.0.4
      [DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.7.1
      [DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2
      [DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7
      [DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.2.1
      [DEBUG]   Included: commons-io:commons-io:jar:2.5
      [DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:3.1.0:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:3.1.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@277050dc]
      [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:3.1.0:clean' with basic configurator -->
      [DEBUG]   (f) directory = /Users/username/projects/myproject/target
      [DEBUG]   (f) excludeDefaultDirectories = false
      [DEBUG]   (f) failOnError = true
      [DEBUG]   (f) followSymLinks = false
      [DEBUG]   (f) outputDirectory = /Users/username/projects/myproject/target/classes
      [DEBUG]   (f) reportDirectory = /Users/username/projects/myproject/target/classes
      [DEBUG]   (f) retryOnError = true
      [DEBUG]   (f) skip = false
      [DEBUG]   (f) testOutputDirectory = /Users/username/projects/myproject/target/test-classes
      [DEBUG] -- end configuration --
      [INFO] Deleting /Users/username/projects/myproject/target
      [INFO] Deleting directory /Users/username/projects/myproject/target/cxf-codegen-plugin-markers
      [INFO] Deleting directory /Users/username/projects/myproject/target/classes
      [INFO] Deleting directory /Users/username/projects/myproject/target/generated-sources/cxf
      [INFO] Deleting directory /Users/username/projects/myproject/target/generated-sources
      [INFO] Deleting directory /Users/username/projects/myproject/target
      [DEBUG] Skipping non-existing directory /Users/username/projects/myproject/target/classes
      [DEBUG] Skipping non-existing directory /Users/username/projects/myproject/target/test-classes
      [DEBUG] Skipping non-existing directory /Users/username/projects/myproject/target/classes
      [INFO] 
      [INFO] --- jacoco-maven-plugin:0.8.7:prepare-agent (prepare-agent) @ my-project ---
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for snapshots (http://snapshots.maven.codehaus.org/maven2).
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for apache.snapshots (http://cvs.apache.org/maven-snapshot-repository).
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for central (http://repo1.maven.org/maven2).
      [DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for apache.snapshots (http://people.apache.org/maven-snapshot-repository).
      [DEBUG] Dependency collection stats {ConflictMarker.analyzeTime=59708, ConflictMarker.markTime=43358, ConflictMarker.nodeCount=94, ConflictIdSorter.graphTime=28088, ConflictIdSorter.topsortTime=38321, ConflictIdSorter.conflictIdCount=40, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=702462, ConflictResolver.conflictItemCount=87, DefaultDependencyCollector.collectTime=53548895, DefaultDependencyCollector.transformTime=903420}
      [DEBUG] org.jacoco:jacoco-maven-plugin:jar:0.8.7
      [DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile
      [DEBUG]       org.apache.maven:maven-model:jar:3.0:compile
      [DEBUG]       org.apache.maven:maven-artifact:jar:3.0:compile
      [DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile
      [DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile
      [DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile
      [DEBUG]    org.apache.maven:maven-core:jar:3.0:compile
      [DEBUG]       org.apache.maven:maven-settings:jar:3.0:compile
      [DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile
      [DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile
      [DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile
      [DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime
      [DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile
      [DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile
      [DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile
      [DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile
      [DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.14:compile
      [DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile
      [DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile
      [DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
      [DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile
      [DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.22:compile
      [DEBUG]    org.apache.maven.shared:file-management:jar:1.2.1:compile
      [DEBUG]       org.apache.maven.shared:maven-shared-io:jar:1.1:compile
      [DEBUG]          org.apache.maven:maven-artifact-manager:jar:2.0.2:compile
      [DEBUG]          org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:compile
      [DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9:compile
      [DEBUG]          junit:junit:jar:4.13.1:compile (version managed from default)
      [DEBUG]             org.hamcrest:hamcrest-core:jar:1.3:compile
      [DEBUG]          classworlds:classworlds:jar:1.1-alpha-2:compile
      [DEBUG]    org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile
      [DEBUG]       org.apache.maven.doxia:doxia-sink-api:jar:1.0:compile
      [DEBUG]    org.jacoco:org.jacoco.agent:jar:runtime:0.8.7:compile
      [DEBUG]    org.jacoco:org.jacoco.core:jar:0.8.7:compile
      [DEBUG]       org.ow2.asm:asm:jar:9.1:compile (version managed from default)
      [DEBUG]       org.ow2.asm:asm-commons:jar:9.1:compile (version managed from default)
      [DEBUG]          org.ow2.asm:asm-analysis:jar:9.1:compile (version managed from default)
      [DEBUG]       org.ow2.asm:asm-tree:jar:9.1:compile (version managed from default)
      [DEBUG]    org.jacoco:org.jacoco.report:jar:0.8.7:compile
      [DEBUG] Created new class realm plugin>org.jacoco:jacoco-maven-plugin:0.8.7
      [DEBUG] Importing foreign packages into class realm plugin>org.jacoco:jacoco-maven-plugin:0.8.7
      [DEBUG]   Imported:  < maven.api
      [DEBUG] Populating class realm plugin>org.jacoco:jacoco-maven-plugin:0.8.7
      [DEBUG]   Included: org.jacoco:jacoco-maven-plugin:jar:0.8.7
      [DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2
      [DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7
      [DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7
      [DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.14
      [DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
      [DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
      [DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4
      [DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.22
      [DEBUG]   Included: org.apache.maven.shared:file-management:jar:1.2.1
      [DEBUG]   Included: org.apache.maven.shared:maven-shared-io:jar:1.1
      [DEBUG]   Included: junit:junit:jar:4.13.1
      [DEBUG]   Included: org.hamcrest:hamcrest-core:jar:1.3
      [DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0
      [DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0
      [DEBUG]   Included: org.jacoco:org.jacoco.agent:jar:runtime:0.8.7
      [DEBUG]   Included: org.jacoco:org.jacoco.core:jar:0.8.7
      [DEBUG]   Included: org.ow2.asm:asm:jar:9.1
      [DEBUG]   Included: org.ow2.asm:asm-commons:jar:9.1
      [DEBUG]   Included: org.ow2.asm:asm-analysis:jar:9.1
      [DEBUG]   Included: org.ow2.asm:asm-tree:jar:9.1
      [DEBUG]   Included: org.jacoco:org.jacoco.report:jar:0.8.7
      [DEBUG] Configuring mojo org.jacoco:jacoco-maven-plugin:0.8.7:prepare-agent from plugin realm ClassRealm[plugin>org.jacoco:jacoco-maven-plugin:0.8.7, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@277050dc]
      [DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.8.7:prepare-agent' with basic configurator -->
      [DEBUG]   (f) destFile = /Users/username/projects/myproject/target/jacoco.exec
      [DEBUG]   (f) pluginArtifactMap = {org.jacoco:jacoco-maven-plugin=org.jacoco:jacoco-maven-plugin:maven-plugin:0.8.7:, org.apache.maven:maven-plugin-api=org.apache.maven:maven-plugin-api:jar:3.0:compile, org.apache.maven:maven-model=org.apache.maven:maven-model:jar:3.0:compile, org.apache.maven:maven-artifact=org.apache.maven:maven-artifact:jar:3.0:compile, org.sonatype.sisu:sisu-inject-plexus=org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile, org.sonatype.sisu:sisu-inject-bean=org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile, org.sonatype.sisu:sisu-guice=org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile, org.apache.maven:maven-core=org.apache.maven:maven-core:jar:3.0:compile, org.apache.maven:maven-settings=org.apache.maven:maven-settings:jar:3.0:compile, org.apache.maven:maven-settings-builder=org.apache.maven:maven-settings-builder:jar:3.0:compile, org.apache.maven:maven-repository-metadata=org.apache.maven:maven-repository-metadata:jar:3.0:compile, org.apache.maven:maven-model-builder=org.apache.maven:maven-model-builder:jar:3.0:compile, org.apache.maven:maven-aether-provider=org.apache.maven:maven-aether-provider:jar:3.0:runtime, org.sonatype.aether:aether-impl=org.sonatype.aether:aether-impl:jar:1.7:compile, org.sonatype.aether:aether-spi=org.sonatype.aether:aether-spi:jar:1.7:compile, org.sonatype.aether:aether-api=org.sonatype.aether:aether-api:jar:1.7:compile, org.sonatype.aether:aether-util=org.sonatype.aether:aether-util:jar:1.7:compile, org.codehaus.plexus:plexus-interpolation=org.codehaus.plexus:plexus-interpolation:jar:1.14:compile, org.codehaus.plexus:plexus-classworlds=org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile, org.codehaus.plexus:plexus-component-annotations=org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile, org.sonatype.plexus:plexus-sec-dispatcher=org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile, org.sonatype.plexus:plexus-cipher=org.sonatype.plexus:plexus-cipher:jar:1.4:compile, org.codehaus.plexus:plexus-utils=org.codehaus.plexus:plexus-utils:jar:3.0.22:compile, org.apache.maven.shared:file-management=org.apache.maven.shared:file-management:jar:1.2.1:compile, org.apache.maven.shared:maven-shared-io=org.apache.maven.shared:maven-shared-io:jar:1.1:compile, org.apache.maven:maven-artifact-manager=org.apache.maven:maven-artifact-manager:jar:2.0.2:compile, org.apache.maven.wagon:wagon-provider-api=org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:compile, org.codehaus.plexus:plexus-container-default=org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9:compile, junit:junit=junit:junit:jar:4.13.1:compile, org.hamcrest:hamcrest-core=org.hamcrest:hamcrest-core:jar:1.3:compile, classworlds:classworlds=classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven.reporting:maven-reporting-api=org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile, org.apache.maven.doxia:doxia-sink-api=org.apache.maven.doxia:doxia-sink-api:jar:1.0:compile, org.jacoco:org.jacoco.agent=org.jacoco:org.jacoco.agent:jar:runtime:0.8.7:compile, org.jacoco:org.jacoco.core=org.jacoco:org.jacoco.core:jar:0.8.7:compile, org.ow2.asm:asm=org.ow2.asm:asm:jar:9.1:compile, org.ow2.asm:asm-commons=org.ow2.asm:asm-commons:jar:9.1:compile, org.ow2.asm:asm-analysis=org.ow2.asm:asm-analysis:jar:9.1:compile, org.ow2.asm:asm-tree=org.ow2.asm:asm-tree:jar:9.1:compile, org.jacoco:org.jacoco.report=org.jacoco:org.jacoco.report:jar:0.8.7:compile}
      [DEBUG]   (f) project = MavenProject: com.company.internal:my-project:1.0-SNAPSHOT @ /Users/username/projects/myproject/pom.xml
      [DEBUG]   (f) skip = false
      [DEBUG] -- end configuration --
      [INFO] argLine set to -javaagent:/Users/username/.m2/repository/org/jacoco/org.jacoco.agent/0.8.7/org.jacoco.agent-0.8.7-runtime.jar=destfile=/Users/username/projects/myproject/target/jacoco.exec
      [INFO] 
      [INFO] --- cxf-codegen-plugin:3.4.4:wsdl2java (generate-sources) @ my-project ---
      [DEBUG] Dependency collection stats {ConflictMarker.analyzeTime=217149, ConflictMarker.markTime=153205, ConflictMarker.nodeCount=402, ConflictIdSorter.graphTime=152045, ConflictIdSorter.topsortTime=60324, ConflictIdSorter.conflictIdCount=63, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1598174, ConflictResolver.conflictItemCount=206, DefaultDependencyCollector.collectTime=71079097, DefaultDependencyCollector.transformTime=2225418}
      [DEBUG] org.apache.cxf:cxf-codegen-plugin:jar:3.4.4
      [DEBUG]    net.codesup.util:jaxb2-rich-contract-plugin:jar:2.1.0:runtime
      [DEBUG]       net.codesup.util:jaxb-plugin-lib:jar:1.4.0:runtime
      [DEBUG]       com.github.davidmoten:word-wrap:jar:0.1.6:runtime
      [DEBUG]          com.github.davidmoten:guava-mini:jar:0.1.2:runtime
      [DEBUG]    org.apache.cxf.xjcplugins:cxf-xjc-ts:jar:3.3.1:runtime
      [DEBUG]       org.apache.commons:commons-lang3:jar:3.11:compile (version managed from default)
      [DEBUG]       jakarta.activation:jakarta.activation-api:jar:1.2.1:compile
      [DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.2.0:compile
      [DEBUG]    org.codehaus.plexus:plexus-archiver:jar:4.2.0:compile
      [DEBUG]       org.codehaus.plexus:plexus-io:jar:3.2.0:compile
      [DEBUG]          commons-io:commons-io:jar:2.9.0:compile (version managed from default)
      [DEBUG]       org.apache.commons:commons-compress:jar:1.19:compile
      [DEBUG]       org.iq80.snappy:snappy:jar:0.4:compile
      [DEBUG]       org.tukaani:xz:jar:1.8:runtime
      [DEBUG]    org.apache.cxf:cxf-core:jar:3.4.4:compile
      [DEBUG]       org.glassfish.jaxb:jaxb-runtime:jar:2.3.4:compile (version managed from default)
      [DEBUG]          org.glassfish.jaxb:txw2:jar:2.3.4:compile
      [DEBUG]          com.sun.istack:istack-commons-runtime:jar:3.0.12:compile
      [DEBUG]       com.fasterxml.woodstox:woodstox-core:jar:6.2.6:compile (version managed from default) (exclusions managed from default)
      [DEBUG]          org.codehaus.woodstox:stax2-api:jar:4.2.1:compile
      [DEBUG]       org.apache.ws.xmlschema:xmlschema-core:jar:2.2.5:compile (version managed from default) (exclusions managed from default)
      [DEBUG]       jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3:compile (version managed from default)
      [DEBUG]    org.apache.cxf:cxf-tools-common:jar:3.4.4:compile
      [DEBUG]       org.apache.velocity:velocity-engine-core:jar:2.3:compile (version managed from default)
      [DEBUG]          org.slf4j:slf4j-api:jar:1.7.30:compile (version managed from default)
      [DEBUG]       commons-collections:commons-collections:jar:3.2.2:compile
      [DEBUG]       wsdl4j:wsdl4j:jar:1.6.3:compile (version managed from default)
      [DEBUG]       org.glassfish.jaxb:jaxb-xjc:jar:2.3.4:compile (version managed from default)
      [DEBUG]          org.glassfish.jaxb:xsom:jar:2.3.4:compile
      [DEBUG]             com.sun.xml.bind.external:relaxng-datatype:jar:2.3.4:compile
      [DEBUG]          org.glassfish.jaxb:codemodel:jar:2.3.4:compile
      [DEBUG]          com.sun.xml.bind.external:rngom:jar:2.3.4:compile
      [DEBUG]          com.sun.xml.dtd-parser:dtd-parser:jar:1.4.4:compile
      [DEBUG]          com.sun.istack:istack-commons-tools:jar:3.0.11:compile (version managed from default)
      [DEBUG]    org.apache.cxf:cxf-tools-wsdlto-core:jar:3.4.4:compile
      [DEBUG]       org.apache.cxf:cxf-tools-validator:jar:3.4.4:compile (version managed from default)
      [DEBUG]          org.apache.cxf:cxf-rt-bindings-soap:jar:3.4.4:compile (version managed from default)
      [DEBUG]             org.apache.cxf:cxf-rt-databinding-jaxb:jar:3.4.4:compile (version managed from default)
      [DEBUG]       org.apache.cxf:cxf-rt-wsdl:jar:3.4.4:compile (version managed from default)
      [DEBUG]          org.ow2.asm:asm:jar:9.1:compile (version managed from default)
      [DEBUG]    org.apache.cxf:cxf-tools-wsdlto-databinding-jaxb:jar:3.4.4:compile
      [DEBUG]    org.apache.cxf:cxf-tools-wsdlto-frontend-jaxws:jar:3.4.4:compile
      [DEBUG]       xml-resolver:xml-resolver:jar:1.2:compile (version managed from default)
      [DEBUG]       org.apache.commons:commons-text:jar:1.9:compile (version managed from default)
      [DEBUG]    org.apache.cxf:cxf-tools-wsdlto-frontend-javascript:jar:3.4.4:compile
      [DEBUG]       org.apache.cxf:cxf-rt-javascript:jar:3.4.4:compile (version managed from default)
      [DEBUG]    org.springframework:spring-core:jar:5.2.15.RELEASE:compile (optional) (exclusions managed from default)
      [DEBUG]       org.springframework:spring-jcl:jar:5.2.15.RELEASE:compile (optional)
      [DEBUG]    org.springframework:spring-beans:jar:5.2.15.RELEASE:compile (optional) (exclusions managed from default)
      [DEBUG]    org.springframework:spring-context:jar:5.2.15.RELEASE:compile (optional) (exclusions managed from default)
      [DEBUG]       org.springframework:spring-aop:jar:5.2.15.RELEASE:compile (optional) (version managed from default) (exclusions managed from default)
      [DEBUG]       org.springframework:spring-expression:jar:5.2.15.RELEASE:compile (optional)
      [DEBUG]    org.sonatype.plexus:plexus-build-api:jar:0.0.7:compile (optional)
      [DEBUG]    jakarta.annotation:jakarta.annotation-api:jar:1.3.5:compile
      [DEBUG]    jakarta.xml.ws:jakarta.xml.ws-api:jar:2.3.3:compile
      [DEBUG]    jakarta.jws:jakarta.jws-api:jar:2.1.0:compile
      [DEBUG]    jakarta.xml.soap:jakarta.xml.soap-api:jar:1.4.2:compile
      [DEBUG]    com.sun.activation:jakarta.activation:jar:1.2.2:compile
      [DEBUG]    com.sun.xml.messaging.saaj:saaj-impl:jar:1.5.3:runtime
      [DEBUG]       org.jvnet.staxex:stax-ex:jar:1.8.3:runtime
      [DEBUG]    org.apache.geronimo.specs:geronimo-jta_1.1_spec:jar:1.1.1:compile
      [DEBUG]    org.jboss.spec.javax.rmi:jboss-rmi-api_1.0_spec:jar:1.0.6.Final:compile
      [DEBUG] Created new class realm plugin>org.apache.cxf:cxf-codegen-plugin:3.4.4
      [DEBUG] Importing foreign packages into class realm plugin>org.apache.cxf:cxf-codegen-plugin:3.4.4
      [DEBUG]   Imported:  < maven.api
      [DEBUG] Populating class realm plugin>org.apache.cxf:cxf-codegen-plugin:3.4.4
      [DEBUG]   Included: org.apache.cxf:cxf-codegen-plugin:jar:3.4.4
      [DEBUG]   Included: net.codesup.util:jaxb2-rich-contract-plugin:jar:2.1.0
      [DEBUG]   Included: net.codesup.util:jaxb-plugin-lib:jar:1.4.0
      [DEBUG]   Included: com.github.davidmoten:word-wrap:jar:0.1.6
      [DEBUG]   Included: com.github.davidmoten:guava-mini:jar:0.1.2
      [DEBUG]   Included: org.apache.cxf.xjcplugins:cxf-xjc-ts:jar:3.3.1
      [DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.11
      [DEBUG]   Included: jakarta.activation:jakarta.activation-api:jar:1.2.1
      [DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.2.0
      [DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:4.2.0
      [DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:3.2.0
      [DEBUG]   Included: commons-io:commons-io:jar:2.9.0
      [DEBUG]   Included: org.apache.commons:commons-compress:jar:1.19
      [DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4
      [DEBUG]   Included: org.tukaani:xz:jar:1.8
      [DEBUG]   Included: org.apache.cxf:cxf-core:jar:3.4.4
      [DEBUG]   Included: org.glassfish.jaxb:jaxb-runtime:jar:2.3.4
      [DEBUG]   Included: org.glassfish.jaxb:txw2:jar:2.3.4
      [DEBUG]   Included: com.sun.istack:istack-commons-runtime:jar:3.0.12
      [DEBUG]   Included: com.fasterxml.woodstox:woodstox-core:jar:6.2.6
      [DEBUG]   Included: org.codehaus.woodstox:stax2-api:jar:4.2.1
      [DEBUG]   Included: org.apache.ws.xmlschema:xmlschema-core:jar:2.2.5
      [DEBUG]   Included: jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3
      [DEBUG]   Included: org.apache.cxf:cxf-tools-common:jar:3.4.4
      [DEBUG]   Included: org.apache.velocity:velocity-engine-core:jar:2.3
      [DEBUG]   Included: commons-collections:commons-collections:jar:3.2.2
      [DEBUG]   Included: wsdl4j:wsdl4j:jar:1.6.3
      [DEBUG]   Included: org.glassfish.jaxb:jaxb-xjc:jar:2.3.4
      [DEBUG]   Included: org.glassfish.jaxb:xsom:jar:2.3.4
      [DEBUG]   Included: com.sun.xml.bind.external:relaxng-datatype:jar:2.3.4
      [DEBUG]   Included: org.glassfish.jaxb:codemodel:jar:2.3.4
      [DEBUG]   Included: com.sun.xml.bind.external:rngom:jar:2.3.4
      [DEBUG]   Included: com.sun.xml.dtd-parser:dtd-parser:jar:1.4.4
      [DEBUG]   Included: com.sun.istack:istack-commons-tools:jar:3.0.11
      [DEBUG]   Included: org.apache.cxf:cxf-tools-wsdlto-core:jar:3.4.4
      [DEBUG]   Included: org.apache.cxf:cxf-tools-validator:jar:3.4.4
      [DEBUG]   Included: org.apache.cxf:cxf-rt-bindings-soap:jar:3.4.4
      [DEBUG]   Included: org.apache.cxf:cxf-rt-databinding-jaxb:jar:3.4.4
      [DEBUG]   Included: org.apache.cxf:cxf-rt-wsdl:jar:3.4.4
      [DEBUG]   Included: org.ow2.asm:asm:jar:9.1
      [DEBUG]   Included: org.apache.cxf:cxf-tools-wsdlto-databinding-jaxb:jar:3.4.4
      [DEBUG]   Included: org.apache.cxf:cxf-tools-wsdlto-frontend-jaxws:jar:3.4.4
      [DEBUG]   Included: xml-resolver:xml-resolver:jar:1.2
      [DEBUG]   Included: org.apache.commons:commons-text:jar:1.9
      [DEBUG]   Included: org.apache.cxf:cxf-tools-wsdlto-frontend-javascript:jar:3.4.4
      [DEBUG]   Included: org.apache.cxf:cxf-rt-javascript:jar:3.4.4
      [DEBUG]   Included: org.springframework:spring-core:jar:5.2.15.RELEASE
      [DEBUG]   Included: org.springframework:spring-jcl:jar:5.2.15.RELEASE
      [DEBUG]   Included: org.springframework:spring-beans:jar:5.2.15.RELEASE
      [DEBUG]   Included: org.springframework:spring-context:jar:5.2.15.RELEASE
      [DEBUG]   Included: org.springframework:spring-aop:jar:5.2.15.RELEASE
      [DEBUG]   Included: org.springframework:spring-expression:jar:5.2.15.RELEASE
      [DEBUG]   Included: org.sonatype.plexus:plexus-build-api:jar:0.0.7
      [DEBUG]   Included: jakarta.annotation:jakarta.annotation-api:jar:1.3.5
      [DEBUG]   Included: jakarta.xml.ws:jakarta.xml.ws-api:jar:2.3.3
      [DEBUG]   Included: jakarta.jws:jakarta.jws-api:jar:2.1.0
      [DEBUG]   Included: jakarta.xml.soap:jakarta.xml.soap-api:jar:1.4.2
      [DEBUG]   Included: com.sun.activation:jakarta.activation:jar:1.2.2
      [DEBUG]   Included: com.sun.xml.messaging.saaj:saaj-impl:jar:1.5.3
      [DEBUG]   Included: org.jvnet.staxex:stax-ex:jar:1.8.3
      [DEBUG]   Included: org.apache.geronimo.specs:geronimo-jta_1.1_spec:jar:1.1.1
      [DEBUG]   Included: org.jboss.spec.javax.rmi:jboss-rmi-api_1.0_spec:jar:1.0.6.Final
      [DEBUG] Configuring mojo org.apache.cxf:cxf-codegen-plugin:3.4.4:wsdl2java from plugin realm ClassRealm[plugin>org.apache.cxf:cxf-codegen-plugin:3.4.4, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@277050dc]
      [DEBUG] Configuring mojo 'org.apache.cxf:cxf-codegen-plugin:3.4.4:wsdl2java' with basic configurator -->
      [DEBUG]   (f) classesDirectory = /Users/username/projects/myproject/target/classes
      [DEBUG]   (s) noAddressBinding = true
      [DEBUG]   (f) defaultOptions = org.apache.cxf.maven_plugin.wsdl2java.Option@77f991c
      [DEBUG]   (f) disableDependencyScan = false
      [DEBUG]   (f) disableDirectoryScan = false
      [DEBUG]   (f) encoding = UTF-8
      [DEBUG]   (f) fork = false
      [DEBUG]   (f) markerDirectory = /Users/username/projects/myproject/target/cxf-codegen-plugin-markers
      [DEBUG]   (f) mavenSession = org.apache.maven.execution.MavenSession@3a7e365
      [DEBUG]   (f) pluginArtifacts = [org.apache.cxf:cxf-codegen-plugin:maven-plugin:3.4.4:, net.codesup.util:jaxb2-rich-contract-plugin:jar:2.1.0:runtime, net.codesup.util:jaxb-plugin-lib:jar:1.4.0:runtime, com.github.davidmoten:word-wrap:jar:0.1.6:runtime, com.github.davidmoten:guava-mini:jar:0.1.2:runtime, org.apache.cxf.xjcplugins:cxf-xjc-ts:jar:3.3.1:runtime, org.apache.commons:commons-lang3:jar:3.11:compile, jakarta.activation:jakarta.activation-api:jar:1.2.1:compile, org.codehaus.plexus:plexus-utils:jar:3.2.0:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.0:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, commons-io:commons-io:jar:2.9.0:compile, org.apache.commons:commons-compress:jar:1.19:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.apache.cxf:cxf-core:jar:3.4.4:compile, org.glassfish.jaxb:jaxb-runtime:jar:2.3.4:compile, org.glassfish.jaxb:txw2:jar:2.3.4:compile, com.sun.istack:istack-commons-runtime:jar:3.0.12:compile, com.fasterxml.woodstox:woodstox-core:jar:6.2.6:compile, org.codehaus.woodstox:stax2-api:jar:4.2.1:compile, org.apache.ws.xmlschema:xmlschema-core:jar:2.2.5:compile, jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3:compile, org.apache.cxf:cxf-tools-common:jar:3.4.4:compile, org.apache.velocity:velocity-engine-core:jar:2.3:compile, org.slf4j:slf4j-api:jar:1.7.30:compile, commons-collections:commons-collections:jar:3.2.2:compile, wsdl4j:wsdl4j:jar:1.6.3:compile, org.glassfish.jaxb:jaxb-xjc:jar:2.3.4:compile, org.glassfish.jaxb:xsom:jar:2.3.4:compile, com.sun.xml.bind.external:relaxng-datatype:jar:2.3.4:compile, org.glassfish.jaxb:codemodel:jar:2.3.4:compile, com.sun.xml.bind.external:rngom:jar:2.3.4:compile, com.sun.xml.dtd-parser:dtd-parser:jar:1.4.4:compile, com.sun.istack:istack-commons-tools:jar:3.0.11:compile, org.apache.cxf:cxf-tools-wsdlto-core:jar:3.4.4:compile, org.apache.cxf:cxf-tools-validator:jar:3.4.4:compile, org.apache.cxf:cxf-rt-bindings-soap:jar:3.4.4:compile, org.apache.cxf:cxf-rt-databinding-jaxb:jar:3.4.4:compile, org.apache.cxf:cxf-rt-wsdl:jar:3.4.4:compile, org.ow2.asm:asm:jar:9.1:compile, org.apache.cxf:cxf-tools-wsdlto-databinding-jaxb:jar:3.4.4:compile, org.apache.cxf:cxf-tools-wsdlto-frontend-jaxws:jar:3.4.4:compile, xml-resolver:xml-resolver:jar:1.2:compile, org.apache.commons:commons-text:jar:1.9:compile, org.apache.cxf:cxf-tools-wsdlto-frontend-javascript:jar:3.4.4:compile, org.apache.cxf:cxf-rt-javascript:jar:3.4.4:compile, org.springframework:spring-core:jar:5.2.15.RELEASE:compile, org.springframework:spring-jcl:jar:5.2.15.RELEASE:compile, org.springframework:spring-beans:jar:5.2.15.RELEASE:compile, org.springframework:spring-context:jar:5.2.15.RELEASE:compile, org.springframework:spring-aop:jar:5.2.15.RELEASE:compile, org.springframework:spring-expression:jar:5.2.15.RELEASE:compile, org.sonatype.plexus:plexus-build-api:jar:0.0.7:compile, jakarta.annotation:jakarta.annotation-api:jar:1.3.5:compile, jakarta.xml.ws:jakarta.xml.ws-api:jar:2.3.3:compile, jakarta.jws:jakarta.jws-api:jar:2.1.0:compile, jakarta.xml.soap:jakarta.xml.soap-api:jar:1.4.2:compile, com.sun.activation:jakarta.activation:jar:1.2.2:compile, com.sun.xml.messaging.saaj:saaj-impl:jar:1.5.3:runtime, org.jvnet.staxex:stax-ex:jar:1.8.3:runtime, org.apache.geronimo.specs:geronimo-jta_1.1_spec:jar:1.1.1:compile, org.jboss.spec.javax.rmi:jboss-rmi-api_1.0_spec:jar:1.0.6.Final:compile]
      [DEBUG]   (f) project = MavenProject: com.company.internal:my-project:1.0-SNAPSHOT @ /Users/username/projects/myproject/pom.xml
      [DEBUG]   (f) skipGarbageCollection = false
      [DEBUG]   (f) sourceRoot = /Users/username/projects/myproject/target/generated-sources/cxf
      [DEBUG]   (f) testWsdlRoot = /Users/username/projects/myproject/src/test/resources/wsdl
      [DEBUG]   (f) useCompileClasspath = false
      [DEBUG]   (s) wsdl = /Users/username/projects/myproject/src/main/resources/schemas/simple-schema.wsdl
      [DEBUG]   (s) extraargs = [-xjc-Xts, -xjc-Xgroup-contract, -impl, -verbose, -xjc-verbose, -keep]
      [DEBUG]   (f) wsdlOptions = [WSDL: /Users/username/projects/myproject/src/main/resources/schemas/simple-schema.wsdl
      OutputDir: null
      Extraargs: [-xjc-Xts, -xjc-Xgroup-contract, -impl, -verbose, -xjc-verbose, -keep]
      XJCargs: []
      Packagenames: []
      
      ]
      [DEBUG]   (f) wsdlRoot = /Users/username/projects/myproject/src/main/resources/wsdl
      [DEBUG] -- end configuration --
      [DEBUG] Classpath: [file:/Users/username/projects/myproject/target/classes/, file:/Users/username/projects/myproject/target/classes/, file:/Users/username/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.5.21/kotlin-stdlib-jdk8-1.5.21.jar, file:/Users/username/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.5.21/kotlin-stdlib-1.5.21.jar, file:/Users/username/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.jar, file:/Users/username/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.5.21/kotlin-stdlib-common-1.5.21.jar, file:/Users/username/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.5.21/kotlin-stdlib-jdk7-1.5.21.jar, file:/Users/username/.m2/repository/org/jetbrains/kotlin/kotlin-reflect/1.5.21/kotlin-reflect-1.5.21.jar, file:/Users/username/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-core/1.5.1/kotlinx-coroutines-core-1.5.1.jar, file:/Users/username/.m2/repository/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.5.1/kotlinx-coroutines-core-jvm-1.5.1.jar, file:/Users/username/.m2/repository/com/neovisionaries/nv-i18n/1.28/nv-i18n-1.28.jar, file:/Users/username/.m2/repository/org/codehaus/woodstox/woodstox-core-asl/4.4.1/woodstox-core-asl-4.4.1.jar, file:/Users/username/.m2/repository/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar, file:/Users/username/.m2/repository/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar, file:/Users/username/.m2/repository/org/apache/pdfbox/pdfbox/2.0.24/pdfbox-2.0.24.jar, file:/Users/username/.m2/repository/org/apache/pdfbox/fontbox/2.0.24/fontbox-2.0.24.jar, file:/Users/username/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar, file:/Users/username/.m2/repository/org/apache/pdfbox/pdfbox-tools/2.0.24/pdfbox-tools-2.0.24.jar, file:/Users/username/.m2/repository/org/apache/pdfbox/pdfbox-debugger/2.0.24/pdfbox-debugger-2.0.24.jar, file:/Users/username/.m2/repository/org/apache/cxf/cxf-rt-frontend-jaxws/3.3.4/cxf-rt-frontend-jaxws-3.3.4.jar, file:/Users/username/.m2/repository/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar, file:/Users/username/.m2/repository/org/ow2/asm/asm/7.1/asm-7.1.jar, file:/Users/username/.m2/repository/org/apache/cxf/cxf-core/3.3.4/cxf-core-3.3.4.jar, file:/Users/username/.m2/repository/org/glassfish/jaxb/jaxb-runtime/2.3.4/jaxb-runtime-2.3.4.jar, file:/Users/username/.m2/repository/org/glassfish/jaxb/txw2/2.3.4/txw2-2.3.4.jar, file:/Users/username/.m2/repository/com/sun/istack/istack-commons-runtime/3.0.12/istack-commons-runtime-3.0.12.jar, file:/Users/username/.m2/repository/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.jar, file:/Users/username/.m2/repository/org/apache/ws/xmlschema/xmlschema-core/2.2.4/xmlschema-core-2.2.4.jar, file:/Users/username/.m2/repository/org/apache/cxf/cxf-rt-bindings-soap/3.3.4/cxf-rt-bindings-soap-3.3.4.jar, file:/Users/username/.m2/repository/org/apache/cxf/cxf-rt-wsdl/3.3.4/cxf-rt-wsdl-3.3.4.jar, file:/Users/username/.m2/repository/wsdl4j/wsdl4j/1.6.3/wsdl4j-1.6.3.jar, file:/Users/username/.m2/repository/org/apache/cxf/cxf-rt-databinding-jaxb/3.3.4/cxf-rt-databinding-jaxb-3.3.4.jar, file:/Users/username/.m2/repository/org/apache/cxf/cxf-rt-bindings-xml/3.3.4/cxf-rt-bindings-xml-3.3.4.jar, file:/Users/username/.m2/repository/org/apache/cxf/cxf-rt-frontend-simple/3.3.4/cxf-rt-frontend-simple-3.3.4.jar, file:/Users/username/.m2/repository/org/apache/cxf/cxf-rt-ws-addr/3.3.4/cxf-rt-ws-addr-3.3.4.jar, file:/Users/username/.m2/repository/org/apache/cxf/cxf-rt-ws-policy/3.3.4/cxf-rt-ws-policy-3.3.4.jar, file:/Users/username/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar, file:/Users/username/.m2/repository/javax/xml/ws/jaxws-api/2.3.1/jaxws-api-2.3.1.jar, file:/Users/username/.m2/repository/javax/xml/soap/javax.xml.soap-api/1.4.0/javax.xml.soap-api-1.4.0.jar, file:/Users/username/.m2/repository/com/sun/activation/javax.activation/1.2.0/javax.activation-1.2.0.jar, file:/Users/username/.m2/repository/org/apache/geronimo/specs/geronimo-ws-metadata_2.0_spec/1.1.3/geronimo-ws-metadata_2.0_spec-1.1.3.jar, file:/Users/username/.m2/repository/com/sun/xml/messaging/saaj/saaj-impl/1.5.3/saaj-impl-1.5.3.jar, file:/Users/username/.m2/repository/jakarta/xml/soap/jakarta.xml.soap-api/1.4.2/jakarta.xml.soap-api-1.4.2.jar, file:/Users/username/.m2/repository/org/jvnet/staxex/stax-ex/1.8.3/stax-ex-1.8.3.jar, file:/Users/username/.m2/repository/com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2.jar, file:/Users/username/.m2/repository/org/jacorb/jacorb-omgapi/3.7/jacorb-omgapi-3.7.jar, file:/Users/username/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1.1/geronimo-jta_1.1_spec-1.1.1.jar, file:/Users/username/.m2/repository/org/jboss/spec/javax/rmi/jboss-rmi-api_1.0_spec/1.0.6.Final/jboss-rmi-api_1.0_spec-1.0.6.Final.jar, file:/Users/username/.m2/repository/org/apache/cxf/cxf-rt-transports-http-hc/3.3.4/cxf-rt-transports-http-hc-3.3.4.jar, file:/Users/username/.m2/repository/org/apache/cxf/cxf-rt-transports-http/3.3.4/cxf-rt-transports-http-3.3.4.jar, file:/Users/username/.m2/repository/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar, file:/Users/username/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.29/jcl-over-slf4j-1.7.29.jar, file:/Users/username/.m2/repository/org/apache/httpcomponents/httpcore-nio/4.4.14/httpcore-nio-4.4.14.jar, file:/Users/username/.m2/repository/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar, file:/Users/username/.m2/repository/org/apache/httpcomponents/httpasyncclient/4.1.4/httpasyncclient-4.1.4.jar, file:/Users/username/.m2/repository/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar, file:/Users/username/.m2/repository/commons-codec/commons-codec/1.15/commons-codec-1.15.jar, file:/Users/username/.m2/repository/org/apache/cxf/cxf-rt-ws-security/3.3.4/cxf-rt-ws-security-3.3.4.jar, file:/Users/username/.m2/repository/org/apache/cxf/cxf-rt-security-saml/3.3.4/cxf-rt-security-saml-3.3.4.jar, file:/Users/username/.m2/repository/org/apache/cxf/cxf-rt-security/3.3.4/cxf-rt-security-3.3.4.jar, file:/Users/username/.m2/repository/net/sf/ehcache/ehcache/2.10.9.2/ehcache-2.10.9.2.jar, file:/Users/username/.m2/repository/org/apache/wss4j/wss4j-ws-security-dom/2.2.4/wss4j-ws-security-dom-2.2.4.jar, file:/Users/username/.m2/repository/org/apache/wss4j/wss4j-ws-security-common/2.2.4/wss4j-ws-security-common-2.2.4.jar, file:/Users/username/.m2/repository/org/apache/santuario/xmlsec/2.1.4/xmlsec-2.1.4.jar, file:/Users/username/.m2/repository/org/opensaml/opensaml-saml-impl/3.3.0/opensaml-saml-impl-3.3.0.jar, file:/Users/username/.m2/repository/org/opensaml/opensaml-profile-api/3.3.0/opensaml-profile-api-3.3.0.jar, file:/Users/username/.m2/repository/org/opensaml/opensaml-core/3.3.0/opensaml-core-3.3.0.jar, file:/Users/username/.m2/repository/io/dropwizard/metrics/metrics-core/4.1.25/metrics-core-4.1.25.jar, file:/Users/username/.m2/repository/org/opensaml/opensaml-saml-api/3.3.0/opensaml-saml-api-3.3.0.jar, file:/Users/username/.m2/repository/org/opensaml/opensaml-xmlsec-api/3.3.0/opensaml-xmlsec-api-3.3.0.jar, file:/Users/username/.m2/repository/org/opensaml/opensaml-soap-api/3.3.0/opensaml-soap-api-3.3.0.jar, file:/Users/username/.m2/repository/org/opensaml/opensaml-security-impl/3.3.0/opensaml-security-impl-3.3.0.jar, file:/Users/username/.m2/repository/org/opensaml/opensaml-security-api/3.3.0/opensaml-security-api-3.3.0.jar, file:/Users/username/.m2/repository/org/cryptacular/cryptacular/1.1.1/cryptacular-1.1.1.jar, file:/Users/username/.m2/repository/org/bouncycastle/bcprov-jdk15on/1.54/bcprov-jdk15on-1.54.jar, file:/Users/username/.m2/repository/org/opensaml/opensaml-xmlsec-impl/3.3.0/opensaml-xmlsec-impl-3.3.0.jar, file:/Users/username/.m2/repository/net/shibboleth/utilities/java-support/7.3.0/java-support-7.3.0.jar, file:/Users/username/.m2/repository/org/opensaml/opensaml-xacml-impl/3.3.0/opensaml-xacml-impl-3.3.0.jar, file:/Users/username/.m2/repository/org/opensaml/opensaml-xacml-api/3.3.0/opensaml-xacml-api-3.3.0.jar, file:/Users/username/.m2/repository/org/opensaml/opensaml-xacml-saml-impl/3.3.0/opensaml-xacml-saml-impl-3.3.0.jar, file:/Users/username/.m2/repository/org/opensaml/opensaml-xacml-saml-api/3.3.0/opensaml-xacml-saml-api-3.3.0.jar, file:/Users/username/.m2/repository/org/jasypt/jasypt/1.9.3/jasypt-1.9.3.jar, file:/Users/username/.m2/repository/org/apache/geronimo/javamail/geronimo-javamail_1.4_mail/1.8.4/geronimo-javamail_1.4_mail-1.8.4.jar, file:/Users/username/.m2/repository/org/apache/wss4j/wss4j-policy/2.2.4/wss4j-policy-2.2.4.jar, file:/Users/username/.m2/repository/org/apache/neethi/neethi/3.1.1/neethi-3.1.1.jar, file:/Users/username/.m2/repository/org/apache/wss4j/wss4j-ws-security-stax/2.2.4/wss4j-ws-security-stax-2.2.4.jar, file:/Users/username/.m2/repository/org/apache/wss4j/wss4j-bindings/2.2.4/wss4j-bindings-2.2.4.jar, file:/Users/username/.m2/repository/org/apache/wss4j/wss4j-ws-security-policy-stax/2.2.4/wss4j-ws-security-policy-stax-2.2.4.jar, file:/Users/username/.m2/repository/org/springframework/boot/spring-boot-starter/2.5.3/spring-boot-starter-2.5.3.jar, file:/Users/username/.m2/repository/org/springframework/boot/spring-boot/2.5.3/spring-boot-2.5.3.jar, file:/Users/username/.m2/repository/org/springframework/spring-context/5.3.9/spring-context-5.3.9.jar, file:/Users/username/.m2/repository/org/springframework/spring-aop/5.3.9/spring-aop-5.3.9.jar, file:/Users/username/.m2/repository/org/springframework/spring-beans/5.3.9/spring-beans-5.3.9.jar, file:/Users/username/.m2/repository/org/springframework/spring-expression/5.3.9/spring-expression-5.3.9.jar, file:/Users/username/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.5.3/spring-boot-autoconfigure-2.5.3.jar, file:/Users/username/.m2/repository/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar, file:/Users/username/.m2/repository/org/springframework/spring-core/5.3.9/spring-core-5.3.9.jar, file:/Users/username/.m2/repository/org/springframework/spring-jcl/5.3.9/spring-jcl-5.3.9.jar, file:/Users/username/.m2/repository/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar, file:/Users/username/.m2/repository/org/springframework/boot/spring-boot-starter-log4j2/2.5.3/spring-boot-starter-log4j2-2.5.3.jar, file:/Users/username/.m2/repository/org/apache/logging/log4j/log4j-slf4j-impl/2.14.1/log4j-slf4j-impl-2.14.1.jar, file:/Users/username/.m2/repository/org/apache/logging/log4j/log4j-api/2.14.1/log4j-api-2.14.1.jar, file:/Users/username/.m2/repository/org/apache/logging/log4j/log4j-core/2.14.1/log4j-core-2.14.1.jar, file:/Users/username/.m2/repository/org/apache/logging/log4j/log4j-jul/2.14.1/log4j-jul-2.14.1.jar, file:/Users/username/.m2/repository/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.jar, file:/Users/username/.m2/repository/org/springframework/boot/spring-boot-configuration-processor/2.5.3/spring-boot-configuration-processor-2.5.3.jar, file:/Users/username/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.4/jackson-databind-2.12.4.jar, file:/Users/username/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.4/jackson-annotations-2.12.4.jar, file:/Users/username/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.4/jackson-core-2.12.4.jar, file:/Users/username/.m2/repository/org/jsoup/jsoup/1.14.1/jsoup-1.14.1.jar, file:/Users/username/.m2/repository/com/github/javafaker/javafaker/1.0.2/javafaker-1.0.2.jar, file:/Users/username/.m2/repository/org/yaml/snakeyaml/1.23/snakeyaml-1.23-android.jar, file:/Users/username/.m2/repository/com/github/mifmif/generex/1.0.2/generex-1.0.2.jar, file:/Users/username/.m2/repository/dk/brics/automaton/automaton/1.11-8/automaton-1.11-8.jar, file:/Users/username/.m2/repository/org/springframework/boot/spring-boot-starter-test/2.5.3/spring-boot-starter-test-2.5.3.jar, file:/Users/username/.m2/repository/org/springframework/boot/spring-boot-test/2.5.3/spring-boot-test-2.5.3.jar, file:/Users/username/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/2.5.3/spring-boot-test-autoconfigure-2.5.3.jar, file:/Users/username/.m2/repository/com/jayway/jsonpath/json-path/2.5.0/json-path-2.5.0.jar, file:/Users/username/.m2/repository/net/minidev/json-smart/2.4.7/json-smart-2.4.7.jar, file:/Users/username/.m2/repository/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.jar, file:/Users/username/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar, file:/Users/username/.m2/repository/org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar, file:/Users/username/.m2/repository/org/mockito/mockito-core/3.9.0/mockito-core-3.9.0.jar, file:/Users/username/.m2/repository/net/bytebuddy/byte-buddy/1.10.22/byte-buddy-1.10.22.jar, file:/Users/username/.m2/repository/net/bytebuddy/byte-buddy-agent/1.10.22/byte-buddy-agent-1.10.22.jar, file:/Users/username/.m2/repository/org/objenesis/objenesis/3.2/objenesis-3.2.jar, file:/Users/username/.m2/repository/org/mockito/mockito-junit-jupiter/3.9.0/mockito-junit-jupiter-3.9.0.jar, file:/Users/username/.m2/repository/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar, file:/Users/username/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar, file:/Users/username/.m2/repository/org/springframework/spring-test/5.3.9/spring-test-5.3.9.jar, file:/Users/username/.m2/repository/org/xmlunit/xmlunit-core/2.8.2/xmlunit-core-2.8.2.jar, file:/Users/username/.m2/repository/org/junit/jupiter/junit-jupiter/5.7.1/junit-jupiter-5.7.1.jar, file:/Users/username/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.7.1/junit-jupiter-api-5.7.1.jar, file:/Users/username/.m2/repository/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar, file:/Users/username/.m2/repository/org/junit/platform/junit-platform-commons/1.7.2/junit-platform-commons-1.7.2.jar, file:/Users/username/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.7.2/junit-jupiter-params-5.7.2.jar, file:/Users/username/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.7.1/junit-jupiter-engine-5.7.1.jar, file:/Users/username/.m2/repository/org/junit/platform/junit-platform-launcher/1.7.2/junit-platform-launcher-1.7.2.jar, file:/Users/username/.m2/repository/org/apiguardian/apiguardian-api/1.1.1/apiguardian-api-1.1.1.jar, file:/Users/username/.m2/repository/org/junit/platform/junit-platform-engine/1.7.1/junit-platform-engine-1.7.1.jar, file:/Users/username/.m2/repository/org/assertj/assertj-core/3.19.0/assertj-core-3.19.0.jar, file:/Users/username/.m2/repository/io/cucumber/cucumber-java/6.10.4/cucumber-java-6.10.4.jar, file:/Users/username/.m2/repository/io/cucumber/cucumber-core/6.10.4/cucumber-core-6.10.4.jar, file:/Users/username/.m2/repository/io/cucumber/cucumber-gherkin/6.10.4/cucumber-gherkin-6.10.4.jar, file:/Users/username/.m2/repository/io/cucumber/cucumber-gherkin-messages/6.10.4/cucumber-gherkin-messages-6.10.4.jar, file:/Users/username/.m2/repository/io/cucumber/messages/15.0.0/messages-15.0.0.jar, file:/Users/username/.m2/repository/io/cucumber/tag-expressions/3.0.1/tag-expressions-3.0.1.jar, file:/Users/username/.m2/repository/io/cucumber/cucumber-expressions/10.3.0/cucumber-expressions-10.3.0.jar, file:/Users/username/.m2/repository/io/cucumber/datatable/3.5.0/datatable-3.5.0.jar, file:/Users/username/.m2/repository/io/cucumber/cucumber-plugin/6.10.4/cucumber-plugin-6.10.4.jar, file:/Users/username/.m2/repository/io/cucumber/docstring/6.10.4/docstring-6.10.4.jar, file:/Users/username/.m2/repository/io/cucumber/html-formatter/13.0.0/html-formatter-13.0.0.jar, file:/Users/username/.m2/repository/io/cucumber/create-meta/4.0.0/create-meta-4.0.0.jar, file:/Users/username/.m2/repository/io/cucumber/cucumber-junit-platform-engine/6.10.4/cucumber-junit-platform-engine-6.10.4.jar, file:/Users/username/.m2/repository/io/cucumber/cucumber-spring/6.10.4/cucumber-spring-6.10.4.jar, file:/Users/username/.m2/repository/net/masterthought/cucumber-reporting/5.5.3/cucumber-reporting-5.5.3.jar, file:/Users/username/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.12.4/jackson-datatype-jsr310-2.12.4.jar, file:/Users/username/.m2/repository/org/apache/velocity/velocity-engine-core/2.2/velocity-engine-core-2.2.jar, file:/Users/username/.m2/repository/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar, file:/Users/username/.m2/repository/joda-time/joda-time/2.10.9/joda-time-2.10.9.jar, file:/Users/username/.m2/repository/commons-io/commons-io/2.6/commons-io-2.6.jar, file:/Users/username/.m2/repository/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar, file:/Users/username/.m2/repository/com/googlecode/owasp-java-html-sanitizer/owasp-java-html-sanitizer/20200713.1/owasp-java-html-sanitizer-20200713.1.jar, file:/Users/username/.m2/repository/com/google/guava/guava/27.1-jre/guava-27.1-jre.jar, file:/Users/username/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar, file:/Users/username/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar, file:/Users/username/.m2/repository/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar, file:/Users/username/.m2/repository/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar, file:/Users/username/.m2/repository/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0.jar, file:/Users/username/.m2/repository/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar, file:/Users/username/.m2/repository/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar, file:/Users/username/.m2/repository/commons-configuration/commons-configuration/1.10/commons-configuration-1.10.jar, file:/Users/username/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar, file:/Users/username/.m2/repository/org/apache/cxf/xjc-utils/cxf-xjc-runtime/3.3.1/cxf-xjc-runtime-3.3.1.jar, file:/Users/username/.m2/repository/jakarta/xml/ws/jakarta.xml.ws-api/2.3.3/jakarta.xml.ws-api-2.3.3.jar, file:/Users/username/.m2/repository/jakarta/jws/jakarta.jws-api/2.1.0/jakarta.jws-api-2.1.0.jar, file:/Users/username/.m2/repository/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar, file:/Users/username/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar]
      [INFO] Running code generation in fork mode...
      [DEBUG] Running code generation in fork mode with args [/var/folders/9f/fhw9jxgs2slgmwtwvhq521rc0000gn/T/cxf-tmp-10737132685890947744/cxf-w2j5898897234045666782args]
      [DEBUG] The java executable is set to default value
      [INFO] The java executable is /Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home/bin/java
      [INFO] Building jar: /var/folders/9f/fhw9jxgs2slgmwtwvhq521rc0000gn/T/cxf-tmp-10737132685890947744/cxf-codegen12612068774288568669.jar
      [INFO] Loading FrontEnd jaxws ...
      [INFO] Loading DataBinding jaxb ...
      [INFO] wsdl2java -encoding UTF-8 -d /Users/username/projects/myproject/target/generated-sources/cxf -noAddressBinding -xjc-Xts -xjc-Xgroup-contract -impl -verbose -xjc-verbose -keep file:/Users/username/projects/myproject/src/main/resources/schemas/simple-schema.wsdl
      [INFO] wsdl2java - Apache CXF 3.4.4
      [INFO] 
      [WARNING] Exception in thread "main" org.apache.cxf.tools.common.ToolException: XJC reported 'BadCommandLineException' for -xjc argument:-Xts -Xgroup-contract -verbose 
      [WARNING] 
      [WARNING] Available plugin options:
      [WARNING] Usage: -Xconstrained-properties
      [WARNING] 
      [WARNING] Generate bound properties for JAXB serializable classes.
      [WARNING] 
      [WARNING] Options:
      [WARNING] 
      [WARNING] 	-constrained={y|n} (y)
      [WARNING] 		switch "constrained" property contract generation on/off. Default: yes
      [WARNING] 
      [WARNING] 
      [WARNING] 	-bound={y|n} (y)
      [WARNING] 		switch "bound" property contract generation on/off. Default: yes
      [WARNING] 
      [WARNING] 
      [WARNING] 	-setterThrows={y|n} (n)
      [WARNING] 		Declare setXXX methods to throw PropertyVetoException (yes), or rethrow
      [WARNING] 		as RuntimeException (no). Default: no
      [WARNING] 
      [WARNING] 
      [WARNING] 	-generateTools={y|n} (y)
      [WARNING] 		Generate helper classes needed for collection change event detection. Turn
      [WARNING] 		off in modules that import other generated modules. Default: yes
      [WARNING] 
      [WARNING] 
      [WARNING] Usage: -Xclone
      [WARNING] 
      [WARNING] Generates Cloneable JAXB classes.
      [WARNING] 
      [WARNING] Options:
      [WARNING] 
      [WARNING] 	-cloneThrows={y|n} (y)
      [WARNING] 		Declare CloneNotSupportedException to be thrown by 'clone()' (yes), or suppress
      [WARNING] 		throws clause and wrap all `CloneNotSupportedException`s as `RuntimeException`
      [WARNING] 		(no).
      [WARNING] 		If  you set this to `no`, the resulting code will violate the `java.lang.Cloneable`
      [WARNING] 		contract, since it is stated that an object that cannot be cloned should
      [WARNING] 		throw CloneNotSupportedException, and nothing else. This option has been
      [WARNING] 		added, however, to support legacy code that doesn't catch CloneNotSupportedExceptions.
      [WARNING] 
      [WARNING] 
      [WARNING] Usage: -Xcopy
      [WARNING] 
      [WARNING] Generates Copyable JAXB classes. Optionally, copy constructor and partial copy functionality
      [WARNING] can be generated.
      [WARNING] 
      [WARNING] Options:
      [WARNING] 
      [WARNING] 	-partial={y|n} (y)
      [WARNING] 		Generates an additional 'createCopy'-method and copy-constructor (if constructors
      [WARNING] 		are to generated at all) that takes a PropertyTree instance to restrict
      [WARNING] 		the copy operation to selected nodes in the object tree.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-generateTools={y|n} (y)
      [WARNING] 		Generate utility classes as source code. If you say "no" here, you will
      [WARNING] 		have to add the plugin JAR to the runtime classpath of the generated class
      [WARNING] 		domain.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-constructor={y|n} (y)
      [WARNING] 		Generates a copy constructor on each of the classes generated from the current
      [WARNING] 		XSD model.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-narrow={y|n} (n)
      [WARNING] 		Uses copy constructors for all child nodes in the object tree as long as
      [WARNING] 		they are available. This will cause the new instance to be as narrow as
      [WARNING] 		possible to the declared types.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-selectorClassName=<string> (Selector)
      [WARNING] 		Name of the generated nested "Selector" builder class, used to build up
      [WARNING] 		a property tree for partial copy functionality. This setting will also affect
      [WARNING] 		the "fluent-builder" plugin if it is active and set to "copy-partial=y".
      [WARNING] 
      [WARNING] 
      [WARNING] 	-rootSelectorClassName=<string> (Select)
      [WARNING] 		Name of the generated nested static "Select" entry point class to be used
      [WARNING] 		by client code for the "partial copy" feature. This setting will also affect
      [WARNING] 		the "fluent-builder" plugin if it is active and set to "copy-partial=y".
      [WARNING] 
      [WARNING] 
      [WARNING] Usage: -Xgroup-contract
      [WARNING] 
      [WARNING] Transforms <group> and <attributeGroup> XSD definitions to java interface declarations,
      [WARNING] and makes complexTypes using the group implement this interface.
      [WARNING] 
      [WARNING] Options:
      [WARNING] 
      [WARNING] 	-declareSetters={y|n} (y)
      [WARNING] 		Also generate property setter methods in interface declarations.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-declareBuilderInterface={y|n} (y)
      [WARNING] 		If the "fluent builder plugin" (-Xfluent-builder) is also active, generate
      [WARNING] 		interface for the internal builder classes as well.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-supportInterfaceNameSuffix=<string> (Lifecycle)
      [WARNING] 		If this is set, methods that could cause type conflicts when two generated
      [WARNING] 		interfaces are used together as type parameter bounds, will be put in another
      [WARNING] 		interface named the same as the original interface, but with the suffix
      [WARNING] 		specified here.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-upstreamEpisodeFile=<string> (META-INF/jaxb-interfaces.episode)
      [WARNING] 		Use the given resource file to obtain information about interfaces defined
      [WARNING] 		in an upstream module (refer to "-episode" option of XJC).
      [WARNING] 
      [WARNING] 
      [WARNING] 	-downstreamEpisodeFile=<string> (/META-INF/jaxb-interfaces.episode)
      [WARNING] 		Generate "episode" file for downstream modules in the given resource location.
      [WARNING] 
      [WARNING] 
      [WARNING] Usage: -Ximmutable
      [WARNING] 
      [WARNING] Makes XJC generate immutable classes. "set"-methods are being transformed to "protected"
      [WARNING] access, collections are exposed as "collections.unmodifiableCollection".
      [WARNING] 
      [WARNING] Options:
      [WARNING] 
      [WARNING] 	-fake={y|n} (n)
      [WARNING] 		Do not actually make anything immutable. For test and debug purpose only.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-overrideCollectionClass=<string> (null)
      [WARNING] 		Modify collection getters to be declared to return a custom type implementing
      [WARNING] 		java.lang.Iterable instead of List.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-constructorAccess=<string> (public)
      [WARNING] 		Generate constructors of an immutable class with the specified access level
      [WARNING] 		("public", "private", "protected", "default"). By specification, JAXB needs
      [WARNING] 		a public no-arg constructor for marshalling and unmarshalling objects to
      [WARNING] 		an from XML. It turns out, however, that many implementations support protected
      [WARNING] 		constructors as well.
      [WARNING] 		This  option has been included since it doesn't make sense to construct
      [WARNING] 		an empty object which then cannot be modified, But anyway, use with caution.
      [WARNING] 
      [WARNING] 
      [WARNING] Usage: -Xmodifier
      [WARNING] 
      [WARNING] Generates an inner class that allows write access to an object's state, even if write
      [WARNING] access is prohibited by the "immutable" plugin. This can be useful if objects have
      [WARNING] to be mutable in some special scenarios, but this fact should be controlled.
      [WARNING] 
      [WARNING] Options:
      [WARNING] 
      [WARNING] 	-modifierClassName=<string> (Modifier)
      [WARNING] 		Name of the generated inner class that allows to modify the state of generated
      [WARNING] 		objects.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-modifierMethodName=<string> (modifier)
      [WARNING] 		Name of the generated method that allows to instantiate the modifier class.
      [WARNING] 
      [WARNING] 
      [WARNING] Usage: -Xfluent-builder
      [WARNING] 
      [WARNING] Generates an inner fluent builder for JAXB classes. Optionally, copy constructor and
      [WARNING] partial clone functionality can be generated.
      [WARNING] 
      [WARNING] Options:
      [WARNING] 
      [WARNING] 	-rootSelectorClassName=<string> (Select)
      [WARNING] 		Name of the generated nested static "Select" entry point class to be used
      [WARNING] 		by client code for the "partial copy" feature. This setting will only have
      [WARNING] 		an effect if the "deep-copy-plugin" isn't also active. If it is, the "copy"
      [WARNING] 		plugin's settings will take precedence.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-newBuilderMethodName=<string> (builder)
      [WARNING] 		Name of the generated static method to instantiate a new fluent builder.
      [WARNING] 		Can be set to handle naming conflicts.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-newCopyBuilderMethodName=<string> (newCopyBuilder)
      [WARNING] 		Name of the generated instance method to instantiate a new fluent builder
      [WARNING] 		intitialized with a copy of the current instance.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-copyToMethodName=<string> (copyTo)
      [WARNING] 		Name of the generated "copyTo" method.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-builderFieldSuffix=<string> (_Builder)
      [WARNING] 		Suffix to append to the field holding the builder, change to prevent name
      [WARNING] 		clashes.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-generateTools={y|n} (y)
      [WARNING] 		Generate utility classes as static source code artifacts. If no, the plugin
      [WARNING] 		JAR must be in compile- and runtime classpath.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-narrow={y|n} (n)
      [WARNING] 		Uses copy constructors for all child nodes in the object tree as long as
      [WARNING] 		they are available. This will cause the new instance to be as narrow as
      [WARNING] 		possible to the declared types.
      [WARNING] 		Abstract  types and types not generated from this XSD-model will always
      [WARNING] 		be copied by their "clone()"-method.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-copyPartial={y|n} (y)
      [WARNING] 		Generates an additional 'copyOf'-method that takes a PropertyTree instance
      [WARNING] 		to restrict the copy operation to selected nodes in the object tree.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-selectorClassName=<string> (Selector)
      [WARNING] 		Name of the generated nested "Selector" builder class, used to build up
      [WARNING] 		a property tree for partial copy functionality. This setting will only have
      [WARNING] 		an effect if the "deep-copy-plugin" isn't also active. If it is, the "copy"
      [WARNING] 		plugin's settings will take precedence.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-builderClassName=<string> (Builder)
      [WARNING] 		Name of the generated nested builder class. Can be set to handle naming
      [WARNING] 		conflicts.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-builderInterfaceName=<string> (BuildSupport)
      [WARNING] 		Name of the generated nested builder interface. Can be set to handle naming
      [WARNING] 		conflicts.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-copyAlways={y|n} (n)
      [WARNING] 		If true, generate code of fluent-builder "withXXX" methods so that all objects
      [WARNING] 		passed to the builder are inherently deep-copied.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-buildMethodName=<string> (build)
      [WARNING] 		Name of the generated "build" method that concludes building and returns
      [WARNING] 		the product. Can be set here to handle naming conflicts.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-endMethodName=<string> (end)
      [WARNING] 		Name of the generated "end" method that concludes a nested builder and returns
      [WARNING] 		to the outer builder. Can be set here to handle naming conflicts.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-generateJavadocFromAnnotations={y|n} (n)
      [WARNING] 		If true, append schema annotation text (./annotation/documentation) to class
      [WARNING] 		getters/setters and builder methods.
      [WARNING] 
      [WARNING] 
      [WARNING] Usage: -Xmeta
      [WARNING] 
      [WARNING] XJC plugin to generate meta data for generated JAXB classes. Generates an inner class
      [WARNING] with static field containing information about each of the defined properties.
      [WARNING] 
      [WARNING] Options:
      [WARNING] 
      [WARNING] 	-generateTools={y|n} (y)
      [WARNING] 		Generate helper class used to represent extended metadata as source code.
      [WARNING] If
      [WARNING] 		this is set to "n" and "-extended=y", the plugin JAR will have to be in
      [WARNING] 		the runtime classpath of the client application.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-extended={y|n} (n)
      [WARNING] 		Generate extended meta data for each property: Name, type, multiplicity,
      [WARNING] 		default value.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-camelCase={y|n} (n)
      [WARNING] 		Generate names of constant meta fields like field names, instead of Java
      [WARNING] 		constant name convention.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-metaClassName=<string> (PropInfo)
      [WARNING] 		Name of the generated meta-information nested class.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-allowSet={y|n} (y)
      [WARNING] 		Allow property values to be set via property meta information.
      [WARNING] 
      [WARNING] 
      [WARNING] 	-visitMethodName=<string> (visit)
      [WARNING] 		Name of the method to apply a visitor.
      [WARNING] 
      [WARNING] 
      [WARNING]   -Xts                 : Activate plugin to add a toString() method to generated classes
      [WARNING]          equivalent to: -Xts:style:org.apache.cxf.xjc.runtime.JAXBToStringStyle.DEFAULT_STYLE
      [WARNING]   -Xts:style:multiline : Have toString produce multi line output
      [WARNING]          equivalent to: -Xts:style:org.apache.cxf.xjc.runtime.JAXBToStringStyle.MULTI_LINE_STYLE
      [WARNING]   -Xts:style:simple    : Have toString produce single line terse output
      [WARNING]          equivalent to: -Xts:style:org.apache.cxf.xjc.runtime.JAXBToStringStyle.SIMPLE_STYLE
      [WARNING]   -Xts:style:org.apache.commons.lang3.builder.ToStringStyle.FIELD : The full class+field
      [WARNING]          name of the ToStringStyle to use.
      [WARNING]   -Xinject-code       :  inject specified Java code fragments into the generated code
      [WARNING]   -Xlocator           :  enable source location support for generated code
      [WARNING]   -Xsync-methods      :  generate accessor methods with the 'synchronized' keyword
      [WARNING]   -mark-generated     :  mark the generated code as @javax.annotation.Generated
      [WARNING]                       -noDate            : do not add date
      [WARNING]                       -Xann <annotation> : generate <annotation> instead of @javax.annotation.Generated
      [WARNING]   -episode <FILE>     :  generate the episode file for separate compilation
      [WARNING]   -Xpropertyaccessors :  Use XmlAccessType PROPERTY instead of FIELD for generated classes
      [WARNING] 
      [WARNING] 	at org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBDataBinding.initialize(JAXBDataBinding.java:426)
      [WARNING] 	at org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.generateTypes(WSDLToJavaContainer.java:713)
      [WARNING] 	at org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.processWsdl(WSDLToJavaContainer.java:259)
      [WARNING] 	at org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.execute(WSDLToJavaContainer.java:156)
      [WARNING] 	at org.apache.cxf.tools.wsdlto.WSDLToJavaContainer.execute(WSDLToJavaContainer.java:402)
      [WARNING] 	at org.apache.cxf.tools.common.toolspec.ToolRunner.runTool(ToolRunner.java:105)
      [WARNING] 	at org.apache.cxf.tools.wsdlto.WSDLToJava.run(WSDLToJava.java:113)
      [WARNING] 	at org.apache.cxf.tools.wsdlto.WSDLToJava.run(WSDLToJava.java:86)
      [WARNING] 	at org.apache.cxf.maven_plugin.wsdl2java.ForkOnceWSDL2Java.main(ForkOnceWSDL2Java.java:51)
      [WARNING] Caused by: com.sun.tools.xjc.BadCommandLineException: Error setting up group-interface-plugin javax.xml.xpath.XPathExpressionException: java.io.FileNotFoundException: /Users/username/projects/myproject/target/null (No such file or directory)
      [WARNING] 	at com.kscs.util.plugins.xjc.GroupInterfacePlugin.generateDummyGroupUsages(GroupInterfacePlugin.java:218)
      [WARNING] 	at com.kscs.util.plugins.xjc.GroupInterfacePlugin.onActivated(GroupInterfacePlugin.java:166)
      [WARNING] 	at com.sun.tools.xjc.Options.parseArgument(Options.java:698)
      [WARNING] 	at com.sun.tools.xjc.Options.parseArguments(Options.java:827)
      [WARNING] 	at org.apache.cxf.tools.wsdlto.databinding.jaxb.JAXBDataBinding.initialize(JAXBDataBinding.java:410)
      [WARNING] 	... 8 more
      [INFO] ------------------------------------------------------------------------
      [INFO] BUILD FAILURE
      [INFO] ------------------------------------------------------------------------
      [INFO] Total time:  3.568 s
      [INFO] Finished at: 2021-08-11T09:56:02+02:00
      [INFO] ------------------------------------------------------------------------
      [ERROR] Failed to execute goal org.apache.cxf:cxf-codegen-plugin:3.4.4:wsdl2java (generate-sources) on project my-project: 
      [ERROR] Exit code: 1
      [ERROR] Command line was: /Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home/bin/java --add-exports=jdk.xml.dom/org.w3c.dom.html=ALL-UNNAMED --add-exports=java.xml/com.sun.org.apache.xerces.internal.impl.xs=ALL-UNNAMED --add-opens java.base/java.security=ALL-UNNAMED --add-opens java.base/java.net=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.util.concurrent=ALL-UNNAMED -jar /var/folders/9f/fhw9jxgs2slgmwtwvhq521rc0000gn/T/cxf-tmp-10737132685890947744/cxf-codegen12612068774288568669.jar /var/folders/9f/fhw9jxgs2slgmwtwvhq521rc0000gn/T/cxf-tmp-10737132685890947744/cxf-w2j5898897234045666782args
      [ERROR] 
      [ERROR] 
      [ERROR] -> [Help 1]
      org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.cxf:cxf-codegen-plugin:3.4.4:wsdl2java (generate-sources) on project my-project: 
      Exit code: 1
      Command line was: /Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home/bin/java --add-exports=jdk.xml.dom/org.w3c.dom.html=ALL-UNNAMED --add-exports=java.xml/com.sun.org.apache.xerces.internal.impl.xs=ALL-UNNAMED --add-opens java.base/java.security=ALL-UNNAMED --add-opens java.base/java.net=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.util.concurrent=ALL-UNNAMED -jar /var/folders/9f/fhw9jxgs2slgmwtwvhq521rc0000gn/T/cxf-tmp-10737132685890947744/cxf-codegen12612068774288568669.jar /var/folders/9f/fhw9jxgs2slgmwtwvhq521rc0000gn/T/cxf-tmp-10737132685890947744/cxf-w2j5898897234045666782args
      
      
          at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
          at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
          at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
          at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
          at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
          at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
          at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
          at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
          at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
          at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
          at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
          at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
          at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
          at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
          at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
          at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
          at java.lang.reflect.Method.invoke (Method.java:566)
          at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
          at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
          at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
          at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
      Caused by: org.apache.maven.plugin.MojoExecutionException: 
      Exit code: 1
      Command line was: /Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home/bin/java --add-exports=jdk.xml.dom/org.w3c.dom.html=ALL-UNNAMED --add-exports=java.xml/com.sun.org.apache.xerces.internal.impl.xs=ALL-UNNAMED --add-opens java.base/java.security=ALL-UNNAMED --add-opens java.base/java.net=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.util.concurrent=ALL-UNNAMED -jar /var/folders/9f/fhw9jxgs2slgmwtwvhq521rc0000gn/T/cxf-tmp-10737132685890947744/cxf-codegen12612068774288568669.jar /var/folders/9f/fhw9jxgs2slgmwtwvhq521rc0000gn/T/cxf-tmp-10737132685890947744/cxf-w2j5898897234045666782args
      
      
          at org.apache.cxf.maven_plugin.AbstractCodegenMojo.runForked (AbstractCodegenMojo.java:688)
          at org.apache.cxf.maven_plugin.AbstractCodegenMojo.forkOnce (AbstractCodegenMojo.java:550)
          at org.apache.cxf.maven_plugin.AbstractCodegenMojo.execute (AbstractCodegenMojo.java:268)
          at org.apache.cxf.maven_plugin.wsdl2java.WSDL2JavaMojo.execute (WSDL2JavaMojo.java:501)
          at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
          at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
          at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
          at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
          at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
          at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
          at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
          at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
          at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
          at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
          at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
          at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
          at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
          at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
          at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
          at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
          at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
          at java.lang.reflect.Method.invoke (Method.java:566)
          at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
          at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
          at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
          at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
      [ERROR] 
      [ERROR] 
      [ERROR] For more information about the errors and possible solutions, please read the following articles:
      [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

{code}




--
This message was sent by Atlassian Jira
(v8.3.4#803005)