mule-lint / mule-lint-maven-plugin

MIT License
4 stars 3 forks source link

error while Building Project #4

Closed ptupakul closed 4 years ago

ptupakul commented 4 years ago

Hi,

I was configured my pom.xml with the mule-lint-plugin in my sample project for testing some rules but i am unable to test the rules i am getting this following errors while maven build. I am using the Anypoint studio 7.5v and 4.3EE Runtime. But in project libraries able to importing slf4j-api(1.7.25) jar still it is not found. I need your help to solve this.. Waiting for your response..

POM.xml

<plugin>
    <groupId>org.nuisto</groupId>
    <artifactId>mule-lint-maven-plugin</artifactId>
    <version>0.5.1</version>
    <executions>
        <execution>
        <id>runit</id>
        <phase>compile</phase>
        <goals>
        <goal>analyze-mule</goal>
        </goals>
        </execution>
    </executions>
    <configuration>
        <dictionary>src/main/dictionary.txt</dictionary>
        <rules>src/main/rules.txt</rules>
        <sources>src/main/mule</sources>
        <output>src/main/results.json</output>
    </configuration>
</plugin>

[ERROR] -----------------------------------------------------: org.slf4j.event.LoggingEvent cannot be found by org.mule.tooling.maven.embedded_7.5.1.202005190111

[ERROR] Failed to execute goal org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule (runit) on project sampleproject: Execution runit of goal org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule failed: A required class was missing while executing org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule: org/slf4j/event/LoggingEvent

Thanks in advance.

cgorshing commented 4 years ago

Let me check on this - I've got some other people saying they can't build the mule-lint project either, I've got some work to do :)

cgorshing commented 4 years ago

I've check on my end and I don't get this error, can you give me more details on what environment this is happening?

ptupakul commented 4 years ago

HI, We are running in local Env. please just run this project file and see the error.(mule 4V, 4.3EE )

sampleproject.zip

cgorshing commented 4 years ago

Appreciate that - I still can not reproduce the error you are seeing.

I did see a problem with your rules file though, and that did cause an error (just not the one you referenced above). It is missing the version line. This is what the project has:

flows are camel cased

I changed that to be:

version '0.0.1'

flows are camel cased

After the above change I was able to mvn clean packge the project fine (both in 0.5.1 and 0.5.2-SNAPSHOT). I will be working on a better messaging when the version line is missing. So thanks!

ptupakul commented 4 years ago

May I know What studio and Runtime version you are Using?

we are Using Studio version 7.5 and 4.3 Runtime Enterprise Edition.

cgorshing commented 4 years ago

Anypoint Studio doesn't have any bearing on mule-lint, the runtime is specified in the pom, which is missing in your sample project.

See https://github.com/mule-lint/example-mule-lint-project/blob/master/pom.xml#L123-L128 for the runtime specified in the example project.

Can I get the output of these commands please?

java -version mvn --version mvn -e -X clean compile

ptupakul commented 4 years ago

java -version java version "1.8.0_151" Java(TM) SE Runtime Environment (build 1.8.0_151-b12) Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)


MAVEN we are using the inbuilt studio maven(embedded maven)..

cgorshing commented 4 years ago

Can I get a more full/debug output of maven please?

mvn -e -X clean compile

Can you try the example project https://github.com/mule-lint/example-mule-lint-project and see if this works for you?

I think this is a maven problem given your error of missing class of org/slf4j/event/LoggingEvent

ptupakul commented 4 years ago

I have ran my sample project using this maven command mvn -e -X clean compile then i got this build log..

Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T22:11:47+05:30)
Maven home: <unknown Maven home>
Java version: 1.8.0_232, vendor: AdoptOpenJDK
Java home: C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\jre
Default locale: en_US, platform encoding: UTF-8
OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[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.slf4j.* < 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] Reading global settings from C:\Users\ptupakul\Documents\AnypointStudio\conf\settings.xml
[DEBUG] Reading user settings from C:\Users\ptupakul\Documents\AnypointStudio\configuration\org.eclipse.osgi\430\data\settings.xml
[DEBUG] Reading global toolchains from C:\Users\ptupakul\Documents\AnypointStudio\conf\toolchains.xml
[DEBUG] Reading user toolchains from C:\Users\ptupakul\.m2\toolchains.xml
[DEBUG] Using local repository at C:\Users\ptupakul\.m2\repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\ptupakul\.m2\repository
[INFO] Scanning for projects...
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=2, ConflictMarker.markTime=1, ConflictMarker.nodeCount=297, ConflictIdSorter.graphTime=1, ConflictIdSorter.topsortTime=1, ConflictIdSorter.conflictIdCount=98, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=13, ConflictResolver.conflictItemCount=229, DefaultDependencyCollector.collectTime=3775, DefaultDependencyCollector.transformTime=21}
[DEBUG] org.mule.tools.maven:mule-maven-plugin:jar:3.3.5:
[DEBUG]    org.mule.tools.maven:mule-packager:jar:3.3.5:compile
[DEBUG]       org.mule.tools.maven:mule-classloader-model:jar:3.3.5:compile
[DEBUG]       org.mule.runtime:mule-api:jar:1.1.4:compile
[DEBUG]          org.mule.runtime:mule-metadata-model-api:jar:1.1.5:compile
[DEBUG]          javax.inject:javax.inject:jar:1:compile
[DEBUG]          org.mule.runtime:mule-artifact-declaration:jar:1.1.1:compile
[DEBUG]          org.mule.runtime:api-annotations:jar:1.0.1:compile
[DEBUG]       org.mule:mule-maven-client-impl:jar:1.4.2-hf2:compile
[DEBUG]          org.mule:mule-maven-client-api:jar:1.4.2-hf2:compile
[DEBUG]          org.eclipse.aether:aether-api:jar:1.0.2.v20150114:compile
[DEBUG]          org.eclipse.aether:aether-util:jar:1.0.2.v20150114:compile
[DEBUG]          org.eclipse.aether:aether-connector-basic:jar:1.0.2.v20150114:compile
[DEBUG]             org.eclipse.aether:aether-spi:jar:1.0.2.v20150114:compile
[DEBUG]          org.eclipse.aether:aether-transport-file:jar:1.0.2.v20150114:compile
[DEBUG]          org.eclipse.aether:aether-transport-http:jar:1.0.2.v20150114:compile
[DEBUG]             org.slf4j:jcl-over-slf4j:jar:1.6.2:compile
[DEBUG]          org.apache.httpcomponents:httpclient:jar:4.5.4:compile
[DEBUG]             org.apache.httpcomponents:httpcore:jar:4.4.7:compile
[DEBUG]             commons-logging:commons-logging:jar:1.2:compile
[DEBUG]             commons-codec:commons-codec:jar:1.10:compile
[DEBUG]          org.apache.maven:maven-settings-builder:jar:3.3.9:compile
[DEBUG]          org.apache.maven:maven-aether-provider:jar:3.3.9:compile
[DEBUG]             org.eclipse.aether:aether-impl:jar:1.0.2.v20150114:compile
[DEBUG]          com.beust:jcommander:jar:1.69:compile
[DEBUG]       org.apache.commons:commons-lang3:jar:3.7:compile
[DEBUG]       com.google.code.gson:gson:jar:2.8.0:compile
[DEBUG]       com.vdurmont:semver4j:jar:2.2.0:compile
[DEBUG]       de.skuzzle:semantic-version:jar:1.1.0:compile
[DEBUG]       org.jdom:jdom2:jar:2.0.5:compile
[DEBUG]       org.yaml:snakeyaml:jar:1.25:compile
[DEBUG]    org.mule.tools.maven:mule-deployer:jar:3.3.5:compile
[DEBUG]       org.glassfish.jersey.core:jersey-client:jar:2.25:compile
[DEBUG]          javax.ws.rs:javax.ws.rs-api:jar:2.0.1:compile
[DEBUG]          org.glassfish.jersey.core:jersey-common:jar:2.25:compile
[DEBUG]             javax.annotation:javax.annotation-api:jar:1.2:compile
[DEBUG]             org.glassfish.jersey.bundles.repackaged:jersey-guava:jar:2.25:compile
[DEBUG]             org.glassfish.hk2:osgi-resource-locator:jar:1.0.1:compile
[DEBUG]          org.glassfish.hk2:hk2-api:jar:2.5.0-b30:compile
[DEBUG]             org.glassfish.hk2:hk2-utils:jar:2.5.0-b30:compile
[DEBUG]             org.glassfish.hk2.external:aopalliance-repackaged:jar:2.5.0-b30:compile
[DEBUG]          org.glassfish.hk2.external:javax.inject:jar:2.5.0-b30:compile
[DEBUG]          org.glassfish.hk2:hk2-locator:jar:2.5.0-b30:compile
[DEBUG]             org.javassist:javassist:jar:3.20.0-GA:compile
[DEBUG]       org.glassfish.jersey.media:jersey-media-multipart:jar:2.25:compile
[DEBUG]          org.jvnet.mimepull:mimepull:jar:1.9.6:compile
[DEBUG]       org.glassfish.jersey.media:jersey-media-moxy:jar:2.15:compile
[DEBUG]          org.glassfish.jersey.ext:jersey-entity-filtering:jar:2.15:compile
[DEBUG]          org.eclipse.persistence:org.eclipse.persistence.moxy:jar:2.5.0:compile
[DEBUG]             org.eclipse.persistence:org.eclipse.persistence.core:jar:2.5.0:compile
[DEBUG]                org.eclipse.persistence:org.eclipse.persistence.asm:jar:2.5.0:compile
[DEBUG]          org.eclipse.persistence:org.eclipse.persistence.antlr:jar:2.5.0:compile
[DEBUG]       org.apache.commons:commons-exec:jar:1.2:compile
[DEBUG]       org.slf4j:slf4j-api:jar:1.8.0-beta2:compile
[DEBUG]       org.apache.commons:commons-collections4:jar:4.1:compile
[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.5.0:compile
[DEBUG]    org.codehaus.plexus:plexus-archiver:jar:3.6.0:compile
[DEBUG]       org.codehaus.plexus:plexus-utils:jar:3.1.0:compile
[DEBUG]       org.codehaus.plexus:plexus-io:jar:3.0.1:compile
[DEBUG]       org.apache.commons:commons-compress:jar:1.16.1:compile
[DEBUG]          org.objenesis:objenesis:jar:2.6:compile
[DEBUG]       org.iq80.snappy:snappy:jar:0.4:compile
[DEBUG]       org.tukaani:xz:jar:1.8:runtime
[DEBUG]    commons-io:commons-io:jar:2.6:compile
[DEBUG]    com.google.guava:guava:jar:27.0-jre:compile
[DEBUG]       com.google.guava:failureaccess:jar:1.0: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]    org.apache.maven:maven-compat:jar:3.5.0:compile
[DEBUG]       org.apache.maven:maven-model:jar:3.5.0:compile
[DEBUG]       org.apache.maven:maven-model-builder:jar:3.5.0:compile
[DEBUG]          org.apache.maven:maven-builder-support:jar:3.5.0:compile
[DEBUG]       org.apache.maven:maven-settings:jar:3.5.0:compile
[DEBUG]       org.apache.maven:maven-artifact:jar:3.5.0:compile
[DEBUG]       org.apache.maven:maven-core:jar:3.5.0:provided
[DEBUG]          org.apache.maven:maven-repository-metadata:jar:3.5.0:compile
[DEBUG]          org.apache.maven.resolver:maven-resolver-spi:jar:1.0.3:compile
[DEBUG]          org.apache.maven.shared:maven-shared-utils:jar:3.1.0:provided
[DEBUG]          com.google.inject:guice:jar:no_aop:4.0:provided
[DEBUG]             aopalliance:aopalliance:jar:1.0:provided
[DEBUG]          org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile
[DEBUG]          org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
[DEBUG]             org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG]       org.apache.maven:maven-resolver-provider:jar:3.5.0:compile
[DEBUG]       org.apache.maven.resolver:maven-resolver-api:jar:1.0.3:compile
[DEBUG]       org.apache.maven.resolver:maven-resolver-util:jar:1.0.3:compile
[DEBUG]       org.apache.maven.resolver:maven-resolver-impl:jar:1.0.3:compile
[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.24:compile
[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.3:compile
[DEBUG]          javax.enterprise:cdi-api:jar:1.0:compile
[DEBUG]             javax.annotation:jsr250-api:jar:1.0:compile
[DEBUG]          org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.3:compile
[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.7.1:compile
[DEBUG]       org.apache.maven.wagon:wagon-provider-api:jar:2.12:compile
[DEBUG] Created new class realm extension>org.mule.tools.maven:mule-maven-plugin:3.3.5
[DEBUG] Importing foreign packages into class realm extension>org.mule.tools.maven:mule-maven-plugin:3.3.5
[DEBUG]   Imported:  < maven.api
[DEBUG] Populating class realm extension>org.mule.tools.maven:mule-maven-plugin:3.3.5
[DEBUG]   Included: org.mule.tools.maven:mule-maven-plugin:jar:3.3.5
[DEBUG]   Included: org.mule.tools.maven:mule-packager:jar:3.3.5
[DEBUG]   Included: org.mule.tools.maven:mule-classloader-model:jar:3.3.5
[DEBUG]   Included: org.mule.runtime:mule-api:jar:1.1.4
[DEBUG]   Included: org.mule.runtime:mule-metadata-model-api:jar:1.1.5
[DEBUG]   Included: org.mule.runtime:mule-artifact-declaration:jar:1.1.1
[DEBUG]   Included: org.mule.runtime:api-annotations:jar:1.0.1
[DEBUG]   Included: org.mule:mule-maven-client-impl:jar:1.4.2-hf2
[DEBUG]   Included: org.mule:mule-maven-client-api:jar:1.4.2-hf2
[DEBUG]   Included: org.eclipse.aether:aether-util:jar:1.0.2.v20150114
[DEBUG]   Included: org.eclipse.aether:aether-connector-basic:jar:1.0.2.v20150114
[DEBUG]   Included: org.eclipse.aether:aether-transport-file:jar:1.0.2.v20150114
[DEBUG]   Included: org.eclipse.aether:aether-transport-http:jar:1.0.2.v20150114
[DEBUG]   Included: org.slf4j:jcl-over-slf4j:jar:1.6.2
[DEBUG]   Included: org.apache.httpcomponents:httpclient:jar:4.5.4
[DEBUG]   Included: org.apache.httpcomponents:httpcore:jar:4.4.7
[DEBUG]   Included: commons-logging:commons-logging:jar:1.2
[DEBUG]   Included: commons-codec:commons-codec:jar:1.10
[DEBUG]   Included: com.beust:jcommander:jar:1.69
[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.7
[DEBUG]   Included: com.google.code.gson:gson:jar:2.8.0
[DEBUG]   Included: com.vdurmont:semver4j:jar:2.2.0
[DEBUG]   Included: de.skuzzle:semantic-version:jar:1.1.0
[DEBUG]   Included: org.jdom:jdom2:jar:2.0.5
[DEBUG]   Included: org.yaml:snakeyaml:jar:1.25
[DEBUG]   Included: org.mule.tools.maven:mule-deployer:jar:3.3.5
[DEBUG]   Included: org.glassfish.jersey.core:jersey-client:jar:2.25
[DEBUG]   Included: javax.ws.rs:javax.ws.rs-api:jar:2.0.1
[DEBUG]   Included: org.glassfish.jersey.core:jersey-common:jar:2.25
[DEBUG]   Included: javax.annotation:javax.annotation-api:jar:1.2
[DEBUG]   Included: org.glassfish.jersey.bundles.repackaged:jersey-guava:jar:2.25
[DEBUG]   Included: org.glassfish.hk2:osgi-resource-locator:jar:1.0.1
[DEBUG]   Included: org.glassfish.hk2:hk2-api:jar:2.5.0-b30
[DEBUG]   Included: org.glassfish.hk2:hk2-utils:jar:2.5.0-b30
[DEBUG]   Included: org.glassfish.hk2.external:aopalliance-repackaged:jar:2.5.0-b30
[DEBUG]   Included: org.glassfish.hk2.external:javax.inject:jar:2.5.0-b30
[DEBUG]   Included: org.glassfish.hk2:hk2-locator:jar:2.5.0-b30
[DEBUG]   Included: org.javassist:javassist:jar:3.20.0-GA
[DEBUG]   Included: org.glassfish.jersey.media:jersey-media-multipart:jar:2.25
[DEBUG]   Included: org.jvnet.mimepull:mimepull:jar:1.9.6
[DEBUG]   Included: org.glassfish.jersey.media:jersey-media-moxy:jar:2.15
[DEBUG]   Included: org.glassfish.jersey.ext:jersey-entity-filtering:jar:2.15
[DEBUG]   Included: org.eclipse.persistence:org.eclipse.persistence.moxy:jar:2.5.0
[DEBUG]   Included: org.eclipse.persistence:org.eclipse.persistence.core:jar:2.5.0
[DEBUG]   Included: org.eclipse.persistence:org.eclipse.persistence.asm:jar:2.5.0
[DEBUG]   Included: org.eclipse.persistence:org.eclipse.persistence.antlr:jar:2.5.0
[DEBUG]   Included: org.apache.commons:commons-exec:jar:1.2
[DEBUG]   Included: org.apache.commons:commons-collections4:jar:4.1
[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:3.6.0
[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.1.0
[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:3.0.1
[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.16.1
[DEBUG]   Included: org.objenesis:objenesis:jar:2.6
[DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4
[DEBUG]   Included: org.tukaani:xz:jar:1.8
[DEBUG]   Included: commons-io:commons-io:jar:2.6
[DEBUG]   Included: com.google.guava:guava:jar:27.0-jre
[DEBUG]   Included: com.google.guava:failureaccess:jar:1.0
[DEBUG]   Included: com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava
[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:3.0.2
[DEBUG]   Included: org.checkerframework:checker-qual:jar:2.5.2
[DEBUG]   Included: com.google.errorprone:error_prone_annotations:jar:2.2.0
[DEBUG]   Included: com.google.j2objc:j2objc-annotations:jar:1.1
[DEBUG]   Included: org.codehaus.mojo:animal-sniffer-annotations:jar:1.17
[DEBUG]   Included: org.apache.maven:maven-builder-support:jar:3.5.0
[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-spi:jar:1.0.3
[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4
[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4
[DEBUG]   Included: org.apache.maven:maven-resolver-provider:jar:3.5.0
[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-api:jar:1.0.3
[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-util:jar:1.0.3
[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-impl:jar:1.0.3
[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.24
[DEBUG]   Included: javax.enterprise:cdi-api:jar:1.0
[DEBUG]   Included: javax.annotation:jsr250-api:jar:1.0
[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.3
[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.7.1
[DEBUG] Extension realms for project com.mycompany:sampleproject:mule-application:1.0.0-SNAPSHOT: [ClassRealm[extension>org.mule.tools.maven:mule-maven-plugin:3.3.5, parent: org.eclipse.osgi.internal.loader.EquinoxClassLoader@19d92684[org.mule.tooling.maven.embedded:7.5.1.202005190111(id=444)]]]
[DEBUG] Created new class realm project>com.mycompany:sampleproject:1.0.0-SNAPSHOT
[DEBUG] Populating class realm project>com.mycompany:sampleproject:1.0.0-SNAPSHOT
[DEBUG] Looking up lifecyle mappings for packaging mule-application from ClassRealm[project>com.mycompany:sampleproject:1.0.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: com.mycompany:sampleproject:mule-application:1.0.0-SNAPSHOT
[DEBUG] Tasks:   [clean, compile]
[DEBUG] Style:   Regular
[DEBUG] =======================================================================
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building sampleproject 1.0.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[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] 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.mycompany:sampleproject:1.0.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile, runtime, test]
[DEBUG] Repositories (dependencies): [anypoint-exchange-v2 (https://maven.anypoint.mulesoft.com/api/v2/maven, default, releases+snapshots), mulesoft-releases (https://repository.mulesoft.org/releases/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins)     : [mulesoft-releases (https://repository.mulesoft.org/releases/, default, releases), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean (default-clean-1)
[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.apache.maven.plugins:maven-clean-plugin:3.0.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.mule.tools.maven:mule-maven-plugin:3.3.5:clean (default-clean)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <classifier>mule-application</classifier>
  <disableSemver default-value="${disableSemver}"/>
  <lightweightPackage default-value="${lightweightPackage}"/>
  <localRepository default-value="${localRepository}"/>
  <outputDirectory>${project.build.directory}</outputDirectory>
  <project>${project}</project>
  <projectBaseFolder default-value="${project.basedir}"/>
  <projectBuildDirectory default-value="${projectBuildDirectory}"/>
  <remoteArtifactRepositories default-value="${project.remoteArtifactRepositories}"/>
  <session default-value="${session}"/>
  <sharedLibraries>${shared.libraries}</sharedLibraries>
  <skipValidation default-value="${skipValidation}"/>
  <strictCheck default-value="${strictCheck}"/>
  <testJar default-value="${testJar}"/>
  <useLocalRepository default-value="${useLocalRepository}"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.mule.tools.maven:mule-maven-plugin:3.3.5:validate (default-validate)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <classifier>mule-application</classifier>
  <disableSemver default-value="${disableSemver}"/>
  <lightweightPackage default-value="${lightweightPackage}"/>
  <localRepository default-value="${localRepository}"/>
  <outputDirectory>${project.build.directory}</outputDirectory>
  <project>${project}</project>
  <projectBaseFolder default-value="${project.basedir}"/>
  <projectBuildDirectory default-value="${projectBuildDirectory}"/>
  <remoteArtifactRepositories default-value="${project.remoteArtifactRepositories}"/>
  <session default-value="${session}"/>
  <sharedLibraries>${shared.libraries}</sharedLibraries>
  <skipValidation default-value="${skipValidation}"/>
  <strictCheck default-value="${strictCheck}"/>
  <testJar default-value="${testJar}"/>
  <useLocalRepository default-value="${useLocalRepository}"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.mule.tools.maven:mule-maven-plugin:3.3.5:initialize (default-initialize)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <classifier>mule-application</classifier>
  <disableSemver default-value="${disableSemver}"/>
  <lightweightPackage default-value="${lightweightPackage}"/>
  <localRepository default-value="${localRepository}"/>
  <outputDirectory>${project.build.directory}</outputDirectory>
  <project>${project}</project>
  <projectBaseFolder default-value="${project.basedir}"/>
  <projectBuildDirectory default-value="${projectBuildDirectory}"/>
  <remoteArtifactRepositories default-value="${project.remoteArtifactRepositories}"/>
  <session default-value="${session}"/>
  <sharedLibraries>${shared.libraries}</sharedLibraries>
  <skipValidation default-value="${skipValidation}"/>
  <strictCheck default-value="${strictCheck}"/>
  <testJar default-value="${testJar}"/>
  <useLocalRepository default-value="${useLocalRepository}"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.mule.tools.maven:mule-maven-plugin:3.3.5:generate-sources (default-generate-sources)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <classifier>mule-application</classifier>
  <disableSemver default-value="${disableSemver}"/>
  <lightweightPackage default-value="${lightweightPackage}"/>
  <localRepository default-value="${localRepository}"/>
  <outputDirectory>${project.build.directory}</outputDirectory>
  <project>${project}</project>
  <projectBaseFolder default-value="${project.basedir}"/>
  <projectBuildDirectory default-value="${projectBuildDirectory}"/>
  <remoteArtifactRepositories default-value="${project.remoteArtifactRepositories}"/>
  <session default-value="${session}"/>
  <sharedLibraries>${shared.libraries}</sharedLibraries>
  <skipValidation default-value="${skipValidation}"/>
  <strictCheck default-value="${strictCheck}"/>
  <testJar default-value="${testJar}"/>
  <useLocalRepository default-value="${useLocalRepository}"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.mule.tools.maven:mule-maven-plugin:3.3.5:process-sources (default-process-sources)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <classifier>mule-application</classifier>
  <disableSemver default-value="${disableSemver}"/>
  <lightweightPackage default-value="${lightweightPackage}"/>
  <localRepository default-value="${localRepository}"/>
  <outputDirectory>${project.build.directory}</outputDirectory>
  <prettyPrinting default-value="${prettyPrinting}"/>
  <project>${project}</project>
  <projectBaseFolder default-value="${project.basedir}"/>
  <projectBuildDirectory default-value="${projectBuildDirectory}"/>
  <remoteArtifactRepositories default-value="${project.remoteArtifactRepositories}"/>
  <session default-value="${session}"/>
  <sharedLibraries>${shared.libraries}</sharedLibraries>
  <skipPluginCompatibilityValidation default-value="${skipPluginCompatibilityValidation}"/>
  <skipValidation default-value="${skipValidation}"/>
  <strictCheck default-value="${strictCheck}"/>
  <testJar default-value="${testJar}"/>
  <useLocalRepository default-value="${useLocalRepository}"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:3.0.2: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}"/>
  <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}"/>
  <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"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.mule.tools.maven:mule-maven-plugin:3.3.5:process-resources (default-process-resources)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <classifier>mule-application</classifier>
  <disableSemver default-value="${disableSemver}"/>
  <lightweightPackage default-value="${lightweightPackage}"/>
  <localRepository default-value="${localRepository}"/>
  <outputDirectory>${project.build.directory}</outputDirectory>
  <project>${project}</project>
  <projectBaseFolder default-value="${project.basedir}"/>
  <projectBuildDirectory default-value="${projectBuildDirectory}"/>
  <remoteArtifactRepositories default-value="${project.remoteArtifactRepositories}"/>
  <session default-value="${session}"/>
  <sharedLibraries>${shared.libraries}</sharedLibraries>
  <skipValidation default-value="${skipValidation}"/>
  <strictCheck default-value="${strictCheck}"/>
  <testJar default-value="${testJar}"/>
  <useLocalRepository default-value="${useLocalRepository}"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile (default-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">${maven.compiler.parameters}</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] Goal:          org.mule.tools.maven:mule-maven-plugin:3.3.5:compile (default-compile)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <classifier>mule-application</classifier>
  <disableSemver default-value="${disableSemver}"/>
  <lightweightPackage default-value="${lightweightPackage}"/>
  <localRepository default-value="${localRepository}"/>
  <outputDirectory>${project.build.directory}</outputDirectory>
  <project>${project}</project>
  <projectBaseFolder default-value="${project.basedir}"/>
  <projectBuildDirectory default-value="${projectBuildDirectory}"/>
  <remoteArtifactRepositories default-value="${project.remoteArtifactRepositories}"/>
  <session default-value="${session}"/>
  <sharedLibraries>${shared.libraries}</sharedLibraries>
  <skipValidation default-value="${skipValidation}"/>
  <strictCheck default-value="${strictCheck}"/>
  <testJar default-value="${testJar}"/>
  <useLocalRepository default-value="${useLocalRepository}"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule (runit)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <dictionary>src/main/mule/dictionary.txt</dictionary>
  <excludes>${analyze-mule.excludes}</excludes>
  <failBuild>${analyze-mule.fail-build}</failBuild>
  <output>src/main/mule/results.json</output>
  <rules>src/main/mule/rules.txt</rules>
  <sources>src/main/mule</sources>
</configuration>
[DEBUG] =======================================================================
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=252, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=133, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=9, ConflictResolver.conflictItemCount=222, DefaultDependencyCollector.collectTime=3025, DefaultDependencyCollector.transformTime=10}
[DEBUG] com.mycompany:sampleproject:mule-application:1.0.0-SNAPSHOT
[DEBUG]    org.mule.connectors:mule-http-connector:jar:mule-plugin:1.5.17:compile
[DEBUG]       org.mule.connectors:mule-sockets-connector:jar:mule-plugin:1.1.5:compile
[DEBUG]       org.mule.modules:mule-module-cors-kernel:jar:1.1.2:compile
[DEBUG]       org.apache.commons:commons-text:jar:1.8:compile
[DEBUG]    com.mulesoft.modules:mule-secure-configuration-property-module:jar:mule-plugin:1.2.2:compile
[DEBUG]       org.mule:mule-encryption:jar:1.2.1:compile
[DEBUG]    org.mule.modules:mule-apikit-module:jar:mule-plugin:1.3.12:compile
[DEBUG]       io.projectreactor:reactor-core:jar:3.2.0.M1:compile
[DEBUG]          org.reactivestreams:reactive-streams:jar:1.0.2:compile
[DEBUG]       org.mule.apikit:parser-service:jar:2.0.7:compile
[DEBUG]          org.mule.apikit:raml-parser-interface:jar:2.0.7:compile
[DEBUG]          org.mule.apikit:raml-parser-interface-impl-v1:jar:2.0.7:compile
[DEBUG]             org.raml:raml-parser:jar:0.8.39:compile
[DEBUG]                org.yaml:snakeyaml:jar:1.23:compile
[DEBUG]                commons-lang:commons-lang:jar:2.6:compile
[DEBUG]                commons-beanutils:commons-beanutils:jar:1.9.3:compile
[DEBUG]                   commons-collections:commons-collections:jar:3.2.2:compile
[DEBUG]                org.apache.logging.log4j:log4j-slf4j-impl:jar:2.11.2:compile
[DEBUG]                   org.apache.logging.log4j:log4j-api:jar:2.11.2:compile
[DEBUG]                   org.apache.logging.log4j:log4j-core:jar:2.11.2:runtime
[DEBUG]                com.github.java-json-tools:json-schema-validator:jar:2.2.8:compile
[DEBUG]                   com.github.java-json-tools:json-schema-core:jar:1.2.8:compile
[DEBUG]                      org.mozilla:rhino:jar:1.7R4:compile
[DEBUG]                      com.github.fge:jackson-coreutils:jar:1.8:compile
[DEBUG]                         com.github.fge:msg-simple:jar:1.1:compile
[DEBUG]                            com.github.fge:btf:jar:1.2:compile
[DEBUG]                      com.github.fge:uri-template:jar:0.9:compile
[DEBUG]                   joda-time:joda-time:jar:2.9.7:compile
[DEBUG]                   com.googlecode.libphonenumber:libphonenumber:jar:8.0.0:compile
[DEBUG]                   net.sf.jopt-simple:jopt-simple:jar:5.0.3:compile
[DEBUG]                com.sun.mail:jakarta.mail:jar:1.6.3:compile
[DEBUG]                   com.sun.activation:jakarta.activation:jar:1.2.1:compile
[DEBUG]                com.fasterxml.jackson.module:jackson-module-jsonSchema:jar:2.10.0:compile
[DEBUG]                   javax.validation:validation-api:jar:1.1.0.Final:compile
[DEBUG]                com.googlecode.juniversalchardet:juniversalchardet:jar:1.0.3:compile
[DEBUG]          org.mule.apikit:raml-parser-interface-impl-v2:jar:2.0.7:compile
[DEBUG]             org.raml:raml-parser-2:jar:1.0.49:compile
[DEBUG]                org.raml:yagi:jar:1.0.49:compile
[DEBUG]                   com.google.code.findbugs:annotations:jar:3.0.0:compile
[DEBUG]                org.apache.ws.xmlschema:xmlschema-core:jar:2.2.1:compile
[DEBUG]                javax.json:javax.json-api:jar:1.0:compile
[DEBUG]                org.glassfish:javax.json:jar:1.0.4:compile
[DEBUG]          org.mule.apikit:raml-parser-interface-impl-amf:jar:2.0.7:compile
[DEBUG]             com.github.amlorg:amf-client_2.12:jar:4.1.0-2:compile
[DEBUG]                org.scala-lang:scala-library:jar:2.12.11:compile
[DEBUG]                com.github.amlorg:amf-webapi_2.12:jar:4.1.0-2:compile
[DEBUG]                   com.github.everit-org.json-schema:org.everit.json.schema:jar:1.9.2:compile
[DEBUG]                      org.json:json:jar:20180130:compile
[DEBUG]                      commons-validator:commons-validator:jar:1.6:compile
[DEBUG]                         commons-digester:commons-digester:jar:1.8.1:compile
[DEBUG]                      com.damnhandy:handy-uri-templates:jar:2.1.6:compile
[DEBUG]                      com.google.re2j:re2j:jar:1.1:compile
[DEBUG]                com.github.amlorg:amf-validation_2.12:jar:4.1.0-2:compile
[DEBUG]                com.github.scopt:scopt_2.12:jar:3.7.0:compile
[DEBUG]                org.reflections:reflections:jar:0.9.12:compile
[DEBUG]                   org.javassist:javassist:jar:3.26.0-GA:compile
[DEBUG]                org.scala-lang.modules:scala-java8-compat_2.12:jar:0.8.0:compile
[DEBUG]                org.json4s:json4s-native_2.12:jar:3.5.4:compile
[DEBUG]                   org.json4s:json4s-core_2.12:jar:3.5.4:compile
[DEBUG]                      org.json4s:json4s-ast_2.12:jar:3.5.4:compile
[DEBUG]                      org.json4s:json4s-scalap_2.12:jar:3.5.4:compile
[DEBUG]                      com.thoughtworks.paranamer:paranamer:jar:2.8:compile
[DEBUG]                      org.scala-lang.modules:scala-xml_2.12:jar:1.0.6:compile
[DEBUG]                org.topbraid:shacl:jar:1.3.0:compile
[DEBUG]                   org.apache.jena:jena-arq:jar:3.11.0:compile
[DEBUG]                      org.apache.jena:jena-core:jar:3.11.0:compile
[DEBUG]                         org.apache.jena:jena-iri:jar:3.11.0:compile
[DEBUG]                         org.apache.jena:jena-base:jar:3.11.0:compile
[DEBUG]                            org.apache.commons:commons-csv:jar:1.5:compile
[DEBUG]                            com.github.andrewoma.dexx:collection:jar:0.7:compile
[DEBUG]                      org.apache.jena:jena-shaded-guava:jar:3.11.0:compile
[DEBUG]                      com.github.jsonld-java:jsonld-java:jar:0.12.3:compile
[DEBUG]                      org.apache.httpcomponents:httpclient-cache:jar:4.5.5:compile
[DEBUG]                      org.slf4j:jcl-over-slf4j:jar:1.7.26:compile
[DEBUG]                   org.antlr:antlr4-runtime:jar:4.5.3:compile
[DEBUG]                org.apache.commons:commons-compress:jar:1.18:compile
[DEBUG]                com.github.amlorg:amf-aml_2.12:jar:4.1.68-0:compile
[DEBUG]                   com.github.amlorg:amf-core_2.12:jar:4.1.59-0:compile
[DEBUG]                      org.mule.syaml:syaml_2.12:jar:0.7.276:compile
[DEBUG]                         org.mule.common:scala-common_2.12:jar:0.5.68:compile
[DEBUG]             org.mule.amf:amf-xml-extension_2.12:jar:1.6.0:compile
[DEBUG]                com.rackspace.apache:xerces2-xsd11:jar:2.11.2:compile
[DEBUG]                   xml-apis:xml-apis:jar:1.4.01:compile
[DEBUG]                   com.rackspace.eclipse.webtools.sourceediting:org.eclipse.wst.xml.xpath2.processor:jar:2.1.100:compile
[DEBUG]                      edu.princeton.cup:java-cup:jar:10k:compile
[DEBUG]                   xml-resolver:xml-resolver:jar:1.2:compile
[DEBUG]                com.ibm.icu:icu4j:jar:64.2:compile
[DEBUG]       org.apache.commons:commons-lang3:jar:3.6:compile
[DEBUG]       javax.xml.bind:jaxb-api:jar:2.3.1:compile
[DEBUG]          javax.activation:javax.activation-api:jar:1.2.0:compile
[DEBUG]       com.sun.xml.bind:jaxb-core:jar:2.3.0.1:compile
[DEBUG]       com.sun.xml.bind:jaxb-impl:jar:2.3.1:compile
[DEBUG]       commons-fileupload:commons-fileupload:jar:1.4:compile
[DEBUG]       org.apache.httpcomponents:httpmime:jar:4.5.10:compile
[DEBUG]          org.apache.httpcomponents:httpclient:jar:4.5.10:compile
[DEBUG]             commons-logging:commons-logging:jar:1.2:compile
[DEBUG]             commons-codec:commons-codec:jar:1.11:compile
[DEBUG]       commons-io:commons-io:jar:2.6:compile
[DEBUG]       com.google.guava:guava:jar:28.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.8.1:compile
[DEBUG]          com.google.errorprone:error_prone_annotations:jar:2.3.2:compile
[DEBUG]          com.google.j2objc:j2objc-annotations:jar:1.3:compile
[DEBUG]          org.codehaus.mojo:animal-sniffer-annotations:jar:1.18:compile
[DEBUG]       com.fasterxml.jackson.core:jackson-annotations:jar:2.10.0:compile
[DEBUG]       com.fasterxml.jackson.core:jackson-core:jar:2.10.0:compile
[DEBUG]       com.fasterxml.jackson.core:jackson-databind:jar:2.10.1:compile
[DEBUG]       org.apache.thrift:libthrift:jar:0.13.0:compile
[DEBUG]          org.apache.httpcomponents:httpcore:jar:4.4.1:compile
[DEBUG]          javax.annotation:javax.annotation-api:jar:1.3.2:compile
[DEBUG]    org.nuisto:mule-lint-maven-plugin:jar:0.5.1:compile
[DEBUG]       org.apache.maven:maven-plugin-api:jar:3.5.0:compile
[DEBUG]          org.apache.maven:maven-model:jar:3.5.0:compile
[DEBUG]             org.codehaus.plexus:plexus-utils:jar:3.0.24:compile
[DEBUG]          org.apache.maven:maven-artifact:jar:3.5.0:compile
[DEBUG]          org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.3:compile
[DEBUG]             javax.enterprise:cdi-api:jar:1.0:compile
[DEBUG]                javax.annotation:jsr250-api:jar:1.0:compile
[DEBUG]                javax.inject:javax.inject:jar:1:compile
[DEBUG]             org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.3:compile
[DEBUG]             org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile
[DEBUG]             org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile
[DEBUG]       org.nuisto:mule-lint:jar:0.5.1:compile
[DEBUG]          org.codehaus.groovy:groovy-all:jar:2.4.4:compile
[DEBUG]          commons-cli:commons-cli:jar:1.4:compile
[DEBUG]          org.apache.ant:ant:jar:1.10.1:compile
[DEBUG]             org.apache.ant:ant-launcher:jar:1.10.1:compile
[DEBUG]    org.slf4j:slf4j-api:jar:1.7.25:compile
[DEBUG]    org.slf4j:slf4j-simple:jar:1.7.25:test
[INFO] 
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean-1) @ sampleproject ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=15, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=13, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=0, ConflictResolver.conflictItemCount=15, DefaultDependencyCollector.collectTime=508, DefaultDependencyCollector.transformTime=0}
[DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:3.0.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.5.5:compile
[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.0.0:compile
[DEBUG]       commons-io:commons-io:jar:2.4:compile
[DEBUG]       com.google.code.findbugs:jsr305:jar:2.0.1:compile
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0
[DEBUG]   Imported:  < project>com.mycompany:sampleproject:1.0.0-SNAPSHOT
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0
[DEBUG]   Included: org.apache.maven.plugins:maven-clean-plugin:jar:3.0.0
[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:2.0.4
[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
[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.0.0
[DEBUG]   Included: commons-io:commons-io:jar:2.4
[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:2.0.1
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0, parent: org.eclipse.osgi.internal.loader.EquinoxClassLoader@19d92684[org.mule.tooling.maven.embedded:7.5.1.202005190111(id=444)]]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean' with basic configurator -->
[DEBUG]   (f) directory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target
[DEBUG]   (f) excludeDefaultDirectories = false
[DEBUG]   (f) failOnError = true
[DEBUG]   (f) followSymLinks = false
[DEBUG]   (f) outputDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes
[DEBUG]   (f) reportDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes
[DEBUG]   (f) retryOnError = true
[DEBUG]   (f) skip = false
[DEBUG]   (f) testOutputDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\test-classes
[DEBUG] -- end configuration --
[INFO] Deleting C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\test-mule\munit
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\test-mule
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\test-classes\log4j2-test.xml
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\test-classes
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\temp\org.mule.modules~mule-apikit-module~1.3.12.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\temp\org.mule.connectors~mule-sockets-connector~1.1.5.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\temp\org.mule.connectors~mule-http-connector~1.5.17.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\temp\com.mulesoft.modules~mule-secure-configuration-property-module~1.2.2.pom
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\temp
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\xml-resolver\xml-resolver\1.2\xml-resolver-1.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\xml-resolver\xml-resolver\1.2\xml-resolver-1.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\xml-resolver\xml-resolver\1.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\xml-resolver\xml-resolver
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\xml-resolver
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\xml-apis\xml-apis\1.4.01\xml-apis-1.4.01.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\xml-apis\xml-apis\1.4.01\xml-apis-1.4.01.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\xml-apis\xml-apis\1.4.01
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\xml-apis\xml-apis
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\xml-apis
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\yaml\snakeyaml\1.23\snakeyaml-1.23.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\yaml\snakeyaml\1.23\snakeyaml-1.23.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\yaml\snakeyaml\1.23
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\yaml\snakeyaml
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\yaml
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\topbraid\shacl\1.3.0\shacl-1.3.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\topbraid\shacl\1.3.0\shacl-1.3.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\topbraid\shacl\1.3.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\topbraid\shacl
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\topbraid
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\slf4j\slf4j-api\1.7.25\slf4j-api-1.7.25.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\slf4j\slf4j-api\1.7.25\slf4j-api-1.7.25.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\slf4j\slf4j-api\1.7.25
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\slf4j\slf4j-api
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\slf4j\jcl-over-slf4j\1.7.26\jcl-over-slf4j-1.7.26.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\slf4j\jcl-over-slf4j\1.7.26\jcl-over-slf4j-1.7.26.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\slf4j\jcl-over-slf4j\1.7.26
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\slf4j\jcl-over-slf4j
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\slf4j
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\scala-lang\scala-library\2.12.11\scala-library-2.12.11.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\scala-lang\scala-library\2.12.11\scala-library-2.12.11.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\scala-lang\scala-library\2.12.11
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\scala-lang\scala-library
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\scala-lang\modules\scala-xml_2.12\1.0.6\scala-xml_2.12-1.0.6.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\scala-lang\modules\scala-xml_2.12\1.0.6\scala-xml_2.12-1.0.6.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\scala-lang\modules\scala-xml_2.12\1.0.6
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\scala-lang\modules\scala-xml_2.12
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\scala-lang\modules\scala-java8-compat_2.12\0.8.0\scala-java8-compat_2.12-0.8.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\scala-lang\modules\scala-java8-compat_2.12\0.8.0\scala-java8-compat_2.12-0.8.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\scala-lang\modules\scala-java8-compat_2.12\0.8.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\scala-lang\modules\scala-java8-compat_2.12
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\scala-lang\modules
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\scala-lang
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\reflections\reflections\0.9.12\reflections-0.9.12.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\reflections\reflections\0.9.12\reflections-0.9.12.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\reflections\reflections\0.9.12
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\reflections\reflections
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\reflections
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\reactivestreams\reactive-streams\1.0.2\reactive-streams-1.0.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\reactivestreams\reactive-streams\1.0.2\reactive-streams-1.0.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\reactivestreams\reactive-streams\1.0.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\reactivestreams\reactive-streams
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\reactivestreams
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\raml\yagi\1.0.49\yagi-1.0.49.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\raml\yagi\1.0.49\yagi-1.0.49.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\raml\yagi\1.0.49
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\raml\yagi
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\raml\raml-parser-2\1.0.49\raml-parser-2-1.0.49.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\raml\raml-parser-2\1.0.49\raml-parser-2-1.0.49.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\raml\raml-parser-2\1.0.49
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\raml\raml-parser-2
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\raml\raml-parser\0.8.39\raml-parser-0.8.39.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\raml\raml-parser\0.8.39\raml-parser-0.8.39.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\raml\raml-parser\0.8.39
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\raml\raml-parser
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\raml
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\nuisto\mule-lint-maven-plugin\0.5.1\mule-lint-maven-plugin-0.5.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\nuisto\mule-lint-maven-plugin\0.5.1\mule-lint-maven-plugin-0.5.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\nuisto\mule-lint-maven-plugin\0.5.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\nuisto\mule-lint-maven-plugin
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\nuisto\mule-lint\0.5.1\mule-lint-0.5.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\nuisto\mule-lint\0.5.1\mule-lint-0.5.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\nuisto\mule-lint\0.5.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\nuisto\mule-lint
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\nuisto
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\syaml\syaml_2.12\0.7.276\syaml_2.12-0.7.276.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\syaml\syaml_2.12\0.7.276\syaml_2.12-0.7.276.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\syaml\syaml_2.12\0.7.276
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\syaml\syaml_2.12
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\syaml
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\mule-encryption\1.2.1\mule-encryption-1.2.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\mule-encryption\1.2.1\mule-encryption-1.2.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\mule-encryption\1.2.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\mule-encryption
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\modules\mule-module-cors-kernel\1.1.2\mule-module-cors-kernel-1.1.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\modules\mule-module-cors-kernel\1.1.2\mule-module-cors-kernel-1.1.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\modules\mule-module-cors-kernel\1.1.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\modules\mule-module-cors-kernel
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\modules\mule-apikit-module\1.3.12\mule-apikit-module-1.3.12-mule-plugin.jar
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\modules\mule-apikit-module\1.3.12\classloader-model.json
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\modules\mule-apikit-module\1.3.12
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\modules\mule-apikit-module
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\modules
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\connectors\mule-sockets-connector\1.1.5\mule-sockets-connector-1.1.5-mule-plugin.jar
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\connectors\mule-sockets-connector\1.1.5\classloader-model.json
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\connectors\mule-sockets-connector\1.1.5
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\connectors\mule-sockets-connector
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\connectors\mule-http-connector\1.5.17\mule-http-connector-1.5.17-mule-plugin.jar
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\connectors\mule-http-connector\1.5.17\classloader-model.json
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\connectors\mule-http-connector\1.5.17
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\connectors\mule-http-connector
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\connectors
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\common\scala-common_2.12\0.5.68\scala-common_2.12-0.5.68.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\common\scala-common_2.12\0.5.68\scala-common_2.12-0.5.68.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\common\scala-common_2.12\0.5.68
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\common\scala-common_2.12
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\common
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface-impl-v2\2.0.7\raml-parser-interface-impl-v2-2.0.7.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface-impl-v2\2.0.7\raml-parser-interface-impl-v2-2.0.7.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface-impl-v2\2.0.7
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface-impl-v2
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface-impl-v1\2.0.7\raml-parser-interface-impl-v1-2.0.7.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface-impl-v1\2.0.7\raml-parser-interface-impl-v1-2.0.7.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface-impl-v1\2.0.7
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface-impl-v1
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface-impl-amf\2.0.7\raml-parser-interface-impl-amf-2.0.7.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface-impl-amf\2.0.7\raml-parser-interface-impl-amf-2.0.7.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface-impl-amf\2.0.7
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface-impl-amf
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface\2.0.7\raml-parser-interface-2.0.7.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface\2.0.7\raml-parser-interface-2.0.7.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface\2.0.7
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\raml-parser-interface
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\parser-service\2.0.7\parser-service-2.0.7.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\parser-service\2.0.7\parser-service-2.0.7.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\parser-service\2.0.7
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit\parser-service
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\apikit
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\amf\amf-xml-extension_2.12\1.6.0\amf-xml-extension_2.12-1.6.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\amf\amf-xml-extension_2.12\1.6.0\amf-xml-extension_2.12-1.6.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\amf\amf-xml-extension_2.12\1.6.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\amf\amf-xml-extension_2.12
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule\amf
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mule
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mozilla\rhino\1.7R4\rhino-1.7R4.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mozilla\rhino\1.7R4\rhino-1.7R4.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mozilla\rhino\1.7R4
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mozilla\rhino
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\mozilla
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-scalap_2.12\3.5.4\json4s-scalap_2.12-3.5.4.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-scalap_2.12\3.5.4\json4s-scalap_2.12-3.5.4.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-scalap_2.12\3.5.4
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-scalap_2.12
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-native_2.12\3.5.4\json4s-native_2.12-3.5.4.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-native_2.12\3.5.4\json4s-native_2.12-3.5.4.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-native_2.12\3.5.4
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-native_2.12
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-core_2.12\3.5.4\json4s-core_2.12-3.5.4.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-core_2.12\3.5.4\json4s-core_2.12-3.5.4.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-core_2.12\3.5.4
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-core_2.12
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-ast_2.12\3.5.4\json4s-ast_2.12-3.5.4.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-ast_2.12\3.5.4\json4s-ast_2.12-3.5.4.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-ast_2.12\3.5.4
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s\json4s-ast_2.12
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json4s
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json\json\20180130\json-20180130.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json\json\20180130\json-20180130.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json\json\20180130
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json\json
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\json
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\javassist\javassist\3.26.0-GA\javassist-3.26.0-GA.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\javassist\javassist\3.26.0-GA\javassist-3.26.0-GA.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\javassist\javassist\3.26.0-GA
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\javassist\javassist
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\javassist
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\glassfish\javax.json\1.0.4\javax.json-1.0.4.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\glassfish\javax.json\1.0.4\javax.json-1.0.4.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\glassfish\javax.json\1.0.4
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\glassfish\javax.json
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\glassfish
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\eclipse\sisu\org.eclipse.sisu.plexus\0.3.3\org.eclipse.sisu.plexus-0.3.3.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\eclipse\sisu\org.eclipse.sisu.plexus\0.3.3\org.eclipse.sisu.plexus-0.3.3.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\eclipse\sisu\org.eclipse.sisu.plexus\0.3.3
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\eclipse\sisu\org.eclipse.sisu.plexus
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\eclipse\sisu\org.eclipse.sisu.inject\0.3.3\org.eclipse.sisu.inject-0.3.3.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\eclipse\sisu\org.eclipse.sisu.inject\0.3.3\org.eclipse.sisu.inject-0.3.3.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\eclipse\sisu\org.eclipse.sisu.inject\0.3.3
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\eclipse\sisu\org.eclipse.sisu.inject
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\eclipse\sisu
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\eclipse
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\plexus\plexus-utils\3.0.24\plexus-utils-3.0.24.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\plexus\plexus-utils\3.0.24\plexus-utils-3.0.24.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\plexus\plexus-utils\3.0.24
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\plexus\plexus-utils
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\plexus\plexus-component-annotations\1.5.5\plexus-component-annotations-1.5.5.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\plexus\plexus-component-annotations\1.5.5\plexus-component-annotations-1.5.5.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\plexus\plexus-component-annotations\1.5.5
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\plexus\plexus-component-annotations
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\plexus\plexus-classworlds\2.5.2\plexus-classworlds-2.5.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\plexus\plexus-classworlds\2.5.2\plexus-classworlds-2.5.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\plexus\plexus-classworlds\2.5.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\plexus\plexus-classworlds
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\plexus
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\mojo\animal-sniffer-annotations\1.18\animal-sniffer-annotations-1.18.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\mojo\animal-sniffer-annotations\1.18\animal-sniffer-annotations-1.18.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\mojo\animal-sniffer-annotations\1.18
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\mojo\animal-sniffer-annotations
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\mojo
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\groovy\groovy-all\2.4.4\groovy-all-2.4.4.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\groovy\groovy-all\2.4.4\groovy-all-2.4.4.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\groovy\groovy-all\2.4.4
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\groovy\groovy-all
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus\groovy
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\codehaus
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\checkerframework\checker-qual\2.8.1\checker-qual-2.8.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\checkerframework\checker-qual\2.8.1\checker-qual-2.8.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\checkerframework\checker-qual\2.8.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\checkerframework\checker-qual
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\checkerframework
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ws\xmlschema\xmlschema-core\2.2.1\xmlschema-core-2.2.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ws\xmlschema\xmlschema-core\2.2.1\xmlschema-core-2.2.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ws\xmlschema\xmlschema-core\2.2.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ws\xmlschema\xmlschema-core
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ws\xmlschema
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ws
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\thrift\libthrift\0.13.0\libthrift-0.13.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\thrift\libthrift\0.13.0\libthrift-0.13.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\thrift\libthrift\0.13.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\thrift\libthrift
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\thrift
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\maven\maven-plugin-api\3.5.0\maven-plugin-api-3.5.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\maven\maven-plugin-api\3.5.0\maven-plugin-api-3.5.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\maven\maven-plugin-api\3.5.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\maven\maven-plugin-api
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\maven\maven-model\3.5.0\maven-model-3.5.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\maven\maven-model\3.5.0\maven-model-3.5.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\maven\maven-model\3.5.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\maven\maven-model
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\maven\maven-artifact\3.5.0\maven-artifact-3.5.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\maven\maven-artifact\3.5.0\maven-artifact-3.5.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\maven\maven-artifact\3.5.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\maven\maven-artifact
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\maven
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\logging\log4j\log4j-slf4j-impl\2.11.2\log4j-slf4j-impl-2.11.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\logging\log4j\log4j-slf4j-impl\2.11.2\log4j-slf4j-impl-2.11.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\logging\log4j\log4j-slf4j-impl\2.11.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\logging\log4j\log4j-slf4j-impl
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\logging\log4j\log4j-core\2.11.2\log4j-core-2.11.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\logging\log4j\log4j-core\2.11.2\log4j-core-2.11.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\logging\log4j\log4j-core\2.11.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\logging\log4j\log4j-core
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\logging\log4j\log4j-api\2.11.2\log4j-api-2.11.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\logging\log4j\log4j-api\2.11.2\log4j-api-2.11.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\logging\log4j\log4j-api\2.11.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\logging\log4j\log4j-api
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\logging\log4j
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\logging
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-shaded-guava\3.11.0\jena-shaded-guava-3.11.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-shaded-guava\3.11.0\jena-shaded-guava-3.11.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-shaded-guava\3.11.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-shaded-guava
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-iri\3.11.0\jena-iri-3.11.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-iri\3.11.0\jena-iri-3.11.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-iri\3.11.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-iri
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-core\3.11.0\jena-core-3.11.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-core\3.11.0\jena-core-3.11.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-core\3.11.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-core
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-base\3.11.0\jena-base-3.11.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-base\3.11.0\jena-base-3.11.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-base\3.11.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-base
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-arq\3.11.0\jena-arq-3.11.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-arq\3.11.0\jena-arq-3.11.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-arq\3.11.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena\jena-arq
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\jena
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpmime\4.5.10\httpmime-4.5.10.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpmime\4.5.10\httpmime-4.5.10.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpmime\4.5.10
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpmime
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpcore\4.4.1\httpcore-4.4.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpcore\4.4.1\httpcore-4.4.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpcore\4.4.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpcore
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpclient-cache\4.5.5\httpclient-cache-4.5.5.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpclient-cache\4.5.5\httpclient-cache-4.5.5.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpclient-cache\4.5.5
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpclient-cache
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpclient\4.5.10\httpclient-4.5.10.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpclient\4.5.10\httpclient-4.5.10.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpclient\4.5.10
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents\httpclient
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\httpcomponents
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-text\1.8\commons-text-1.8.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-text\1.8\commons-text-1.8.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-text\1.8
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-text
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-lang3\3.9\commons-lang3-3.9.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-lang3\3.9\commons-lang3-3.9.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-lang3\3.9
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-lang3\3.6\commons-lang3-3.6.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-lang3\3.6\commons-lang3-3.6.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-lang3\3.6
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-lang3\3.4\commons-lang3-3.4.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-lang3\3.4\commons-lang3-3.4.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-lang3\3.4
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-lang3
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-csv\1.5\commons-csv-1.5.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-csv\1.5\commons-csv-1.5.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-csv\1.5
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-csv
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-compress\1.18\commons-compress-1.18.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-compress\1.18\commons-compress-1.18.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-compress\1.18
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons\commons-compress
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\commons
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ant\ant-launcher\1.10.1\ant-launcher-1.10.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ant\ant-launcher\1.10.1\ant-launcher-1.10.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ant\ant-launcher\1.10.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ant\ant-launcher
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ant\ant\1.10.1\ant-1.10.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ant\ant\1.10.1\ant-1.10.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ant\ant\1.10.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ant\ant
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache\ant
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\apache
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\antlr\antlr4-runtime\4.5.3\antlr4-runtime-4.5.3.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\antlr\antlr4-runtime\4.5.3\antlr4-runtime-4.5.3.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\antlr\antlr4-runtime\4.5.3
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\antlr\antlr4-runtime
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org\antlr
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\org
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\net\sf\jopt-simple\jopt-simple\5.0.3\jopt-simple-5.0.3.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\net\sf\jopt-simple\jopt-simple\5.0.3\jopt-simple-5.0.3.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\net\sf\jopt-simple\jopt-simple\5.0.3
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\net\sf\jopt-simple\jopt-simple
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\net\sf\jopt-simple
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\net\sf
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\net
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\joda-time\joda-time\2.9.7\joda-time-2.9.7.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\joda-time\joda-time\2.9.7\joda-time-2.9.7.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\joda-time\joda-time\2.9.7
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\joda-time\joda-time
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\joda-time
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\xml\bind\jaxb-api\2.3.1\jaxb-api-2.3.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\xml\bind\jaxb-api\2.3.1\jaxb-api-2.3.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\xml\bind\jaxb-api\2.3.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\xml\bind\jaxb-api
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\xml\bind
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\xml
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\validation\validation-api\1.1.0.Final\validation-api-1.1.0.Final.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\validation\validation-api\1.1.0.Final\validation-api-1.1.0.Final.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\validation\validation-api\1.1.0.Final
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\validation\validation-api
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\validation
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\json\javax.json-api\1.0\javax.json-api-1.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\json\javax.json-api\1.0\javax.json-api-1.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\json\javax.json-api\1.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\json\javax.json-api
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\json
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\inject\javax.inject\1\javax.inject-1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\inject\javax.inject\1\javax.inject-1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\inject\javax.inject\1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\inject\javax.inject
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\inject
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\enterprise\cdi-api\1.0\cdi-api-1.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\enterprise\cdi-api\1.0\cdi-api-1.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\enterprise\cdi-api\1.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\enterprise\cdi-api
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\enterprise
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\annotation\jsr250-api\1.0\jsr250-api-1.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\annotation\jsr250-api\1.0\jsr250-api-1.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\annotation\jsr250-api\1.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\annotation\jsr250-api
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\annotation\javax.annotation-api\1.3.2\javax.annotation-api-1.3.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\annotation\javax.annotation-api\1.3.2\javax.annotation-api-1.3.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\annotation\javax.annotation-api\1.3.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\annotation\javax.annotation-api
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\annotation
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\activation\javax.activation-api\1.2.0\javax.activation-api-1.2.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\activation\javax.activation-api\1.2.0\javax.activation-api-1.2.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\activation\javax.activation-api\1.2.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\activation\javax.activation-api
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax\activation
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\javax
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\io\projectreactor\reactor-core\3.2.0.M1\reactor-core-3.2.0.M1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\io\projectreactor\reactor-core\3.2.0.M1\reactor-core-3.2.0.M1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\io\projectreactor\reactor-core\3.2.0.M1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\io\projectreactor\reactor-core
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\io\projectreactor
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\io
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\edu\princeton\cup\java-cup\10k\java-cup-10k.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\edu\princeton\cup\java-cup\10k\java-cup-10k.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\edu\princeton\cup\java-cup\10k
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\edu\princeton\cup\java-cup
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\edu\princeton\cup
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\edu\princeton
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\edu
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-validator\commons-validator\1.6\commons-validator-1.6.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-validator\commons-validator\1.6\commons-validator-1.6.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-validator\commons-validator\1.6
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-validator\commons-validator
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-validator
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-logging\commons-logging\1.2\commons-logging-1.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-logging\commons-logging\1.2\commons-logging-1.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-logging\commons-logging\1.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-logging\commons-logging
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-logging
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-lang\commons-lang\2.6\commons-lang-2.6.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-lang\commons-lang\2.6\commons-lang-2.6.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-lang\commons-lang\2.6
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-lang\commons-lang
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-lang
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-io\commons-io\2.6\commons-io-2.6.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-io\commons-io\2.6\commons-io-2.6.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-io\commons-io\2.6
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-io\commons-io
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-io
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-fileupload\commons-fileupload\1.4\commons-fileupload-1.4.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-fileupload\commons-fileupload\1.4\commons-fileupload-1.4.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-fileupload\commons-fileupload\1.4
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-fileupload\commons-fileupload
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-fileupload
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-digester\commons-digester\1.8.1\commons-digester-1.8.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-digester\commons-digester\1.8.1\commons-digester-1.8.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-digester\commons-digester\1.8.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-digester\commons-digester
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-digester
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-collections\commons-collections\3.2.2\commons-collections-3.2.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-collections\commons-collections\3.2.2\commons-collections-3.2.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-collections\commons-collections\3.2.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-collections\commons-collections
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-collections
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-codec\commons-codec\1.11\commons-codec-1.11.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-codec\commons-codec\1.11\commons-codec-1.11.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-codec\commons-codec\1.11
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-codec\commons-codec
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-codec
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-cli\commons-cli\1.4\commons-cli-1.4.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-cli\commons-cli\1.4\commons-cli-1.4.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-cli\commons-cli\1.4
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-cli\commons-cli
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-cli
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-beanutils\commons-beanutils\1.9.3\commons-beanutils-1.9.3.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-beanutils\commons-beanutils\1.9.3\commons-beanutils-1.9.3.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-beanutils\commons-beanutils\1.9.3
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-beanutils\commons-beanutils
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\commons-beanutils
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\thoughtworks\paranamer\paranamer\2.8\paranamer-2.8.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\thoughtworks\paranamer\paranamer\2.8\paranamer-2.8.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\thoughtworks\paranamer\paranamer\2.8
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\thoughtworks\paranamer\paranamer
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\thoughtworks\paranamer
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\thoughtworks
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\xml\bind\jaxb-impl\2.3.1\jaxb-impl-2.3.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\xml\bind\jaxb-impl\2.3.1\jaxb-impl-2.3.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\xml\bind\jaxb-impl\2.3.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\xml\bind\jaxb-impl
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\xml\bind\jaxb-core\2.3.0.1\jaxb-core-2.3.0.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\xml\bind\jaxb-core\2.3.0.1\jaxb-core-2.3.0.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\xml\bind\jaxb-core\2.3.0.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\xml\bind\jaxb-core
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\xml\bind
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\xml
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\mail\jakarta.mail\1.6.3\jakarta.mail-1.6.3.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\mail\jakarta.mail\1.6.3\jakarta.mail-1.6.3.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\mail\jakarta.mail\1.6.3
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\mail\jakarta.mail
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\mail
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\activation\jakarta.activation\1.2.1\jakarta.activation-1.2.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\activation\jakarta.activation\1.2.1\jakarta.activation-1.2.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\activation\jakarta.activation\1.2.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\activation\jakarta.activation
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun\activation
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\sun
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\rackspace\eclipse\webtools\sourceediting\org.eclipse.wst.xml.xpath2.processor\2.1.100\org.eclipse.wst.xml.xpath2.processor-2.1.100.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\rackspace\eclipse\webtools\sourceediting\org.eclipse.wst.xml.xpath2.processor\2.1.100\org.eclipse.wst.xml.xpath2.processor-2.1.100.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\rackspace\eclipse\webtools\sourceediting\org.eclipse.wst.xml.xpath2.processor\2.1.100
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\rackspace\eclipse\webtools\sourceediting\org.eclipse.wst.xml.xpath2.processor
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\rackspace\eclipse\webtools\sourceediting
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\rackspace\eclipse\webtools
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\rackspace\eclipse
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\rackspace\apache\xerces2-xsd11\2.11.2\xerces2-xsd11-2.11.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\rackspace\apache\xerces2-xsd11\2.11.2\xerces2-xsd11-2.11.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\rackspace\apache\xerces2-xsd11\2.11.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\rackspace\apache\xerces2-xsd11
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\rackspace\apache
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\rackspace
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\mulesoft\modules\mule-secure-configuration-property-module\1.2.2\mule-secure-configuration-property-module-1.2.2-mule-plugin.jar
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\mulesoft\modules\mule-secure-configuration-property-module\1.2.2\classloader-model.json
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\mulesoft\modules\mule-secure-configuration-property-module\1.2.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\mulesoft\modules\mule-secure-configuration-property-module
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\mulesoft\modules
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\mulesoft
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\ibm\icu\icu4j\64.2\icu4j-64.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\ibm\icu\icu4j\64.2\icu4j-64.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\ibm\icu\icu4j\64.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\ibm\icu\icu4j
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\ibm\icu
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\ibm
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\googlecode\libphonenumber\libphonenumber\8.0.0\libphonenumber-8.0.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\googlecode\libphonenumber\libphonenumber\8.0.0\libphonenumber-8.0.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\googlecode\libphonenumber\libphonenumber\8.0.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\googlecode\libphonenumber\libphonenumber
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\googlecode\libphonenumber
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\googlecode\juniversalchardet\juniversalchardet\1.0.3\juniversalchardet-1.0.3.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\googlecode\juniversalchardet\juniversalchardet\1.0.3\juniversalchardet-1.0.3.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\googlecode\juniversalchardet\juniversalchardet\1.0.3
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\googlecode\juniversalchardet\juniversalchardet
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\googlecode\juniversalchardet
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\googlecode
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\re2j\re2j\1.1\re2j-1.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\re2j\re2j\1.1\re2j-1.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\re2j\re2j\1.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\re2j\re2j
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\re2j
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\j2objc\j2objc-annotations\1.3\j2objc-annotations-1.3.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\j2objc\j2objc-annotations\1.3\j2objc-annotations-1.3.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\j2objc\j2objc-annotations\1.3
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\j2objc\j2objc-annotations
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\j2objc
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\guava\listenablefuture
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\guava\guava\28.1-jre\guava-28.1-jre.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\guava\guava\28.1-jre\guava-28.1-jre.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\guava\guava\28.1-jre
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\guava\guava
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\guava\failureaccess\1.0.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\guava\failureaccess
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\guava
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\errorprone\error_prone_annotations\2.3.2\error_prone_annotations-2.3.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\errorprone\error_prone_annotations\2.3.2\error_prone_annotations-2.3.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\errorprone\error_prone_annotations\2.3.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\errorprone\error_prone_annotations
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\errorprone
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\code\findbugs\jsr305\3.0.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\code\findbugs\jsr305
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\code\findbugs\annotations\3.0.0\annotations-3.0.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\code\findbugs\annotations\3.0.0\annotations-3.0.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\code\findbugs\annotations\3.0.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\code\findbugs\annotations
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\code\findbugs
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google\code
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\google
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\scopt\scopt_2.12\3.7.0\scopt_2.12-3.7.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\scopt\scopt_2.12\3.7.0\scopt_2.12-3.7.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\scopt\scopt_2.12\3.7.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\scopt\scopt_2.12
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\scopt
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\jsonld-java\jsonld-java\0.12.3\jsonld-java-0.12.3.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\jsonld-java\jsonld-java\0.12.3\jsonld-java-0.12.3.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\jsonld-java\jsonld-java\0.12.3
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\jsonld-java\jsonld-java
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\jsonld-java
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\java-json-tools\json-schema-validator\2.2.8\json-schema-validator-2.2.8.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\java-json-tools\json-schema-validator\2.2.8\json-schema-validator-2.2.8.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\java-json-tools\json-schema-validator\2.2.8
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\java-json-tools\json-schema-validator
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\java-json-tools\json-schema-core\1.2.8\json-schema-core-1.2.8.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\java-json-tools\json-schema-core\1.2.8\json-schema-core-1.2.8.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\java-json-tools\json-schema-core\1.2.8
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\java-json-tools\json-schema-core
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\java-json-tools
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\uri-template\0.9\uri-template-0.9.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\uri-template\0.9\uri-template-0.9.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\uri-template\0.9
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\uri-template
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\msg-simple\1.1\msg-simple-1.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\msg-simple\1.1\msg-simple-1.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\msg-simple\1.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\msg-simple
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\jackson-coreutils\1.8\jackson-coreutils-1.8.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\jackson-coreutils\1.8\jackson-coreutils-1.8.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\jackson-coreutils\1.8
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\jackson-coreutils
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\btf\1.2\btf-1.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\btf\1.2\btf-1.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\btf\1.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge\btf
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\fge
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\everit-org\json-schema\org.everit.json.schema\1.9.2\org.everit.json.schema-1.9.2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\everit-org\json-schema\org.everit.json.schema\1.9.2\org.everit.json.schema-1.9.2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\everit-org\json-schema\org.everit.json.schema\1.9.2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\everit-org\json-schema\org.everit.json.schema
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\everit-org\json-schema
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\everit-org
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\andrewoma\dexx\collection\0.7\collection-0.7.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\andrewoma\dexx\collection\0.7\collection-0.7.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\andrewoma\dexx\collection\0.7
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\andrewoma\dexx\collection
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\andrewoma\dexx
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\andrewoma
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-webapi_2.12\4.1.0-2\amf-webapi_2.12-4.1.0-2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-webapi_2.12\4.1.0-2\amf-webapi_2.12-4.1.0-2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-webapi_2.12\4.1.0-2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-webapi_2.12
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-validation_2.12\4.1.0-2\amf-validation_2.12-4.1.0-2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-validation_2.12\4.1.0-2\amf-validation_2.12-4.1.0-2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-validation_2.12\4.1.0-2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-validation_2.12
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-core_2.12\4.1.59-0\amf-core_2.12-4.1.59-0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-core_2.12\4.1.59-0\amf-core_2.12-4.1.59-0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-core_2.12\4.1.59-0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-core_2.12
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-client_2.12\4.1.0-2\amf-client_2.12-4.1.0-2.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-client_2.12\4.1.0-2\amf-client_2.12-4.1.0-2.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-client_2.12\4.1.0-2
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-client_2.12
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-aml_2.12\4.1.68-0\amf-aml_2.12-4.1.68-0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-aml_2.12\4.1.68-0\amf-aml_2.12-4.1.68-0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-aml_2.12\4.1.68-0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg\amf-aml_2.12
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github\amlorg
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\github
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\module\jackson-module-jsonSchema\2.10.0\jackson-module-jsonSchema-2.10.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\module\jackson-module-jsonSchema\2.10.0\jackson-module-jsonSchema-2.10.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\module\jackson-module-jsonSchema\2.10.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\module\jackson-module-jsonSchema
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\module
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\core\jackson-databind\2.10.1\jackson-databind-2.10.1.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\core\jackson-databind\2.10.1\jackson-databind-2.10.1.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\core\jackson-databind\2.10.1
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\core\jackson-databind
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\core\jackson-core\2.10.0\jackson-core-2.10.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\core\jackson-core\2.10.0\jackson-core-2.10.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\core\jackson-core\2.10.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\core\jackson-core
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\core\jackson-annotations\2.10.0\jackson-annotations-2.10.0.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\core\jackson-annotations\2.10.0\jackson-annotations-2.10.0.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\core\jackson-annotations\2.10.0
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\core\jackson-annotations
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson\core
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml\jackson
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\fasterxml
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\damnhandy\handy-uri-templates\2.1.6\handy-uri-templates-2.1.6.pom
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\damnhandy\handy-uri-templates\2.1.6\handy-uri-templates-2.1.6.jar
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\damnhandy\handy-uri-templates\2.1.6
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\damnhandy\handy-uri-templates
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com\damnhandy
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository\com
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\repository
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\test\resources\log4j2-test.xml
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\test\resources
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\test\munit
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\test\java
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\test
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\main\resources\log4j2.xml
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\main\resources\dev.yaml
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\main\resources\api\sample.raml
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\main\resources\api
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\main\resources
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\main\mule\sampleproject.xml
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\main\mule\rules.txt
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\main\mule\dictionary.txt
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\main\mule
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\main\java
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src\main
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\src
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\pom.xml
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\mule-artifact.json
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\.settings\org.mulesoft.exportwizardsettings.prefs
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject\.settings
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src\sampleproject
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-src
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-artifact\classloader-model.json
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\mule-artifact
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\maven\com.mycompany\sampleproject\pom.xml
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\maven\com.mycompany\sampleproject\pom.properties
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\maven\com.mycompany\sampleproject
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\maven\com.mycompany
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF\maven
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\META-INF
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\maven-status\maven-compiler-plugin\compile\default-compile\inputFiles.lst
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\maven-status\maven-compiler-plugin\compile\default-compile
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\maven-status\maven-compiler-plugin\compile
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\maven-status\maven-compiler-plugin
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\maven-status
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes\sampleproject.xml
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes\rules.txt
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes\log4j2.xml
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes\dictionary.txt
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes\dev.yaml
[INFO] Deleting file C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes\api\sample.raml
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes\api
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes
[INFO] Deleting directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target
[DEBUG] Skipping non-existing directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes
[DEBUG] Skipping non-existing directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\test-classes
[DEBUG] Skipping non-existing directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes
[INFO] 
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ sampleproject ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0, parent: org.eclipse.osgi.internal.loader.EquinoxClassLoader@19d92684[org.mule.tooling.maven.embedded:7.5.1.202005190111(id=444)]]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean' with basic configurator -->
[DEBUG]   (f) directory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target
[DEBUG]   (f) excludeDefaultDirectories = false
[DEBUG]   (f) failOnError = true
[DEBUG]   (f) followSymLinks = false
[DEBUG]   (f) outputDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes
[DEBUG]   (f) reportDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes
[DEBUG]   (f) retryOnError = true
[DEBUG]   (f) skip = false
[DEBUG]   (f) testOutputDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\test-classes
[DEBUG] -- end configuration --
[DEBUG] Skipping non-existing directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target
[DEBUG] Skipping non-existing directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes
[DEBUG] Skipping non-existing directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\test-classes
[DEBUG] Skipping non-existing directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes
[INFO] 
[INFO] --- mule-maven-plugin:3.3.5:clean (default-clean) @ sampleproject ---
[DEBUG] Configuring mojo org.mule.tools.maven:mule-maven-plugin:3.3.5:clean from plugin realm ClassRealm[extension>org.mule.tools.maven:mule-maven-plugin:3.3.5, parent: org.eclipse.osgi.internal.loader.EquinoxClassLoader@19d92684[org.mule.tooling.maven.embedded:7.5.1.202005190111(id=444)]]
[DEBUG] Configuring mojo 'org.mule.tools.maven:mule-maven-plugin:3.3.5:clean' with basic configurator -->
[DEBUG]   (f) classifier = mule-application
[DEBUG]   (f) localRepository =       id: local
      url: file:///C:/Users/ptupakul/.m2/repository/
   layout: default
snapshots: [enabled => true, update => always]
 releases: [enabled => true, update => always]

[DEBUG]   (f) outputDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target
[DEBUG]   (s) project = MavenProject: com.mycompany:sampleproject:1.0.0-SNAPSHOT @ C:\Users\ptupakul\Documents\WorkSpace\sampleproject\pom.xml
[DEBUG]   (s) projectBaseFolder = C:\Users\ptupakul\Documents\WorkSpace\sampleproject
[DEBUG]   (f) remoteArtifactRepositories = [      id: anypoint-exchange-v2
      url: https://maven.anypoint.mulesoft.com/api/v2/maven
   layout: default
snapshots: [enabled => true, update => daily]
 releases: [enabled => true, update => daily]
,       id: mulesoft-releases
      url: https://repository.mulesoft.org/releases/
   layout: default
snapshots: [enabled => true, update => daily]
 releases: [enabled => true, update => daily]
,       id: central
      url: https://repo.maven.apache.org/maven2
   layout: default
snapshots: [enabled => false, update => daily]
 releases: [enabled => true, update => daily]
]
[DEBUG]   (s) session = org.apache.maven.execution.MavenSession@52fd482b
[DEBUG]   (f) sharedLibraries = []
[DEBUG] -- end configuration --
[INFO] 
[INFO] --- mule-maven-plugin:3.3.5:validate (default-validate) @ sampleproject ---
[DEBUG] Configuring mojo org.mule.tools.maven:mule-maven-plugin:3.3.5:validate from plugin realm ClassRealm[extension>org.mule.tools.maven:mule-maven-plugin:3.3.5, parent: org.eclipse.osgi.internal.loader.EquinoxClassLoader@19d92684[org.mule.tooling.maven.embedded:7.5.1.202005190111(id=444)]]
[DEBUG] Configuring mojo 'org.mule.tools.maven:mule-maven-plugin:3.3.5:validate' with basic configurator -->
[DEBUG]   (f) classifier = mule-application
[DEBUG]   (f) localRepository =       id: local
      url: file:///C:/Users/ptupakul/.m2/repository/
   layout: default
snapshots: [enabled => true, update => always]
 releases: [enabled => true, update => always]

[DEBUG]   (f) outputDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target
[DEBUG]   (s) project = MavenProject: com.mycompany:sampleproject:1.0.0-SNAPSHOT @ C:\Users\ptupakul\Documents\WorkSpace\sampleproject\pom.xml
[DEBUG]   (s) projectBaseFolder = C:\Users\ptupakul\Documents\WorkSpace\sampleproject
[DEBUG]   (f) remoteArtifactRepositories = [      id: anypoint-exchange-v2
      url: https://maven.anypoint.mulesoft.com/api/v2/maven
   layout: default
snapshots: [enabled => true, update => daily]
 releases: [enabled => true, update => daily]
,       id: mulesoft-releases
      url: https://repository.mulesoft.org/releases/
   layout: default
snapshots: [enabled => true, update => daily]
 releases: [enabled => true, update => daily]
,       id: central
      url: https://repo.maven.apache.org/maven2
   layout: default
snapshots: [enabled => false, update => daily]
 releases: [enabled => true, update => daily]
]
[DEBUG]   (s) session = org.apache.maven.execution.MavenSession@52fd482b
[DEBUG]   (f) sharedLibraries = []
[DEBUG] -- end configuration --
[DEBUG] Validating Maven environment...
[DEBUG] Validating Mule application...
[INFO] 
[INFO] --- mule-maven-plugin:3.3.5:initialize (default-initialize) @ sampleproject ---
[DEBUG] Configuring mojo org.mule.tools.maven:mule-maven-plugin:3.3.5:initialize from plugin realm ClassRealm[extension>org.mule.tools.maven:mule-maven-plugin:3.3.5, parent: org.eclipse.osgi.internal.loader.EquinoxClassLoader@19d92684[org.mule.tooling.maven.embedded:7.5.1.202005190111(id=444)]]
[DEBUG] Configuring mojo 'org.mule.tools.maven:mule-maven-plugin:3.3.5:initialize' with basic configurator -->
[DEBUG]   (f) classifier = mule-application
[DEBUG]   (f) localRepository =       id: local
      url: file:///C:/Users/ptupakul/.m2/repository/
   layout: default
snapshots: [enabled => true, update => always]
 releases: [enabled => true, update => always]

[DEBUG]   (f) outputDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target
[DEBUG]   (s) project = MavenProject: com.mycompany:sampleproject:1.0.0-SNAPSHOT @ C:\Users\ptupakul\Documents\WorkSpace\sampleproject\pom.xml
[DEBUG]   (s) projectBaseFolder = C:\Users\ptupakul\Documents\WorkSpace\sampleproject
[DEBUG]   (f) remoteArtifactRepositories = [      id: anypoint-exchange-v2
      url: https://maven.anypoint.mulesoft.com/api/v2/maven
   layout: default
snapshots: [enabled => true, update => daily]
 releases: [enabled => true, update => daily]
,       id: mulesoft-releases
      url: https://repository.mulesoft.org/releases/
   layout: default
snapshots: [enabled => true, update => daily]
 releases: [enabled => true, update => daily]
,       id: central
      url: https://repo.maven.apache.org/maven2
   layout: default
snapshots: [enabled => false, update => daily]
 releases: [enabled => true, update => daily]
]
[DEBUG]   (s) session = org.apache.maven.execution.MavenSession@52fd482b
[DEBUG]   (f) sharedLibraries = []
[DEBUG] -- end configuration --
[DEBUG] Initializing Mule Maven Plugin...
[INFO] 
[INFO] --- mule-maven-plugin:3.3.5:generate-sources (default-generate-sources) @ sampleproject ---
[DEBUG] Configuring mojo org.mule.tools.maven:mule-maven-plugin:3.3.5:generate-sources from plugin realm ClassRealm[extension>org.mule.tools.maven:mule-maven-plugin:3.3.5, parent: org.eclipse.osgi.internal.loader.EquinoxClassLoader@19d92684[org.mule.tooling.maven.embedded:7.5.1.202005190111(id=444)]]
[DEBUG] Configuring mojo 'org.mule.tools.maven:mule-maven-plugin:3.3.5:generate-sources' with basic configurator -->
[DEBUG]   (f) classifier = mule-application
[DEBUG]   (f) localRepository =       id: local
      url: file:///C:/Users/ptupakul/.m2/repository/
   layout: default
snapshots: [enabled => true, update => always]
 releases: [enabled => true, update => always]

[DEBUG]   (f) outputDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target
[DEBUG]   (s) project = MavenProject: com.mycompany:sampleproject:1.0.0-SNAPSHOT @ C:\Users\ptupakul\Documents\WorkSpace\sampleproject\pom.xml
[DEBUG]   (s) projectBaseFolder = C:\Users\ptupakul\Documents\WorkSpace\sampleproject
[DEBUG]   (f) remoteArtifactRepositories = [      id: anypoint-exchange-v2
      url: https://maven.anypoint.mulesoft.com/api/v2/maven
   layout: default
snapshots: [enabled => true, update => daily]
 releases: [enabled => true, update => daily]
,       id: mulesoft-releases
      url: https://repository.mulesoft.org/releases/
   layout: default
snapshots: [enabled => true, update => daily]
 releases: [enabled => true, update => daily]
,       id: central
      url: https://repo.maven.apache.org/maven2
   layout: default
snapshots: [enabled => false, update => daily]
 releases: [enabled => true, update => daily]
]
[DEBUG]   (s) session = org.apache.maven.execution.MavenSession@52fd482b
[DEBUG]   (f) sharedLibraries = []
[DEBUG] -- end configuration --
[DEBUG] Generating mule source code...
[INFO] 
[INFO] --- mule-maven-plugin:3.3.5:process-sources (default-process-sources) @ sampleproject ---
[DEBUG] Configuring mojo org.mule.tools.maven:mule-maven-plugin:3.3.5:process-sources from plugin realm ClassRealm[extension>org.mule.tools.maven:mule-maven-plugin:3.3.5, parent: org.eclipse.osgi.internal.loader.EquinoxClassLoader@19d92684[org.mule.tooling.maven.embedded:7.5.1.202005190111(id=444)]]
[DEBUG] Configuring mojo 'org.mule.tools.maven:mule-maven-plugin:3.3.5:process-sources' with basic configurator -->
[DEBUG]   (f) classifier = mule-application
[DEBUG]   (f) localRepository =       id: local
      url: file:///C:/Users/ptupakul/.m2/repository/
   layout: default
snapshots: [enabled => true, update => always]
 releases: [enabled => true, update => always]

[DEBUG]   (f) outputDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target
[DEBUG]   (s) project = MavenProject: com.mycompany:sampleproject:1.0.0-SNAPSHOT @ C:\Users\ptupakul\Documents\WorkSpace\sampleproject\pom.xml
[DEBUG]   (s) projectBaseFolder = C:\Users\ptupakul\Documents\WorkSpace\sampleproject
[DEBUG]   (f) remoteArtifactRepositories = [      id: anypoint-exchange-v2
      url: https://maven.anypoint.mulesoft.com/api/v2/maven
   layout: default
snapshots: [enabled => true, update => daily]
 releases: [enabled => true, update => daily]
,       id: mulesoft-releases
      url: https://repository.mulesoft.org/releases/
   layout: default
snapshots: [enabled => true, update => daily]
 releases: [enabled => true, update => daily]
,       id: central
      url: https://repo.maven.apache.org/maven2
   layout: default
snapshots: [enabled => false, update => daily]
 releases: [enabled => true, update => daily]
]
[DEBUG]   (s) session = org.apache.maven.execution.MavenSession@52fd482b
[DEBUG]   (f) sharedLibraries = []
[DEBUG] -- end configuration --
[DEBUG] Processing sources...
[DEBUG] Configuring optional Maven settings...
[DEBUG] Using AetherResolutionContext{remoteRepositories=anypoint-exchange-v2 (https://maven.anypoint.mulesoft.com/api/v2/maven, default, releases+snapshots),
mulesoft-releases (https://repository.mulesoft.org/releases/, default, releases+snapshots),
central (https://repo.maven.apache.org/maven2, default, releases+snapshots), localMavenRepositoryLocation=C:\Users\ptupakul\.m2\repository}
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\ptupakul\.m2\repository
[INFO] About to fetch required dependencies for artifact: com.mycompany:sampleproject:pom:1.0.0-SNAPSHOT. This may take a while...
[DEBUG] Collecting and resolving transitive dependencies for request: null -> [org.mule.connectors:mule-http-connector:jar:mule-plugin:1.5.17 (compile), com.mulesoft.modules:mule-secure-configuration-property-module:jar:mule-plugin:1.2.2 (compile), org.mule.modules:mule-apikit-module:jar:mule-plugin:1.3.12 (compile), org.nuisto:mule-lint-maven-plugin:jar:0.5.1 (compile), org.slf4j:slf4j-api:jar:1.7.25 (compile), org.slf4j:slf4j-simple:jar:1.7.25 (test)] < [anypoint-exchange-v2 (https://maven.anypoint.mulesoft.com/api/v2/maven, default, releases+snapshots), mulesoft-releases (https://repository.mulesoft.org/releases/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=2, ConflictMarker.markTime=1, ConflictMarker.nodeCount=254, ConflictIdSorter.graphTime=1, ConflictIdSorter.topsortTime=1, ConflictIdSorter.conflictIdCount=146, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=48, ConflictResolver.conflictItemCount=222, DefaultDependencyCollector.collectTime=3335, DefaultDependencyCollector.transformTime=84}
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\ptupakul\.m2\repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\ptupakul\.m2\repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\ptupakul\.m2\repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\ptupakul\.m2\repository
[DEBUG] Adding artifact <repository\com\damnhandy\handy-uri-templates\2.1.6\handy-uri-templates-2.1.6.jar>
[DEBUG] Adding artifact <repository\com\fasterxml\jackson\core\jackson-annotations\2.10.0\jackson-annotations-2.10.0.jar>
[DEBUG] Adding artifact <repository\com\fasterxml\jackson\core\jackson-core\2.10.0\jackson-core-2.10.0.jar>
[DEBUG] Adding artifact <repository\com\fasterxml\jackson\core\jackson-databind\2.10.1\jackson-databind-2.10.1.jar>
[DEBUG] Adding artifact <repository\com\fasterxml\jackson\module\jackson-module-jsonSchema\2.10.0\jackson-module-jsonSchema-2.10.0.jar>
[DEBUG] Adding artifact <repository\com\github\amlorg\amf-aml_2.12\4.1.68-0\amf-aml_2.12-4.1.68-0.jar>
[DEBUG] Adding artifact <repository\com\github\amlorg\amf-client_2.12\4.1.0-2\amf-client_2.12-4.1.0-2.jar>
[DEBUG] Adding artifact <repository\com\github\amlorg\amf-core_2.12\4.1.59-0\amf-core_2.12-4.1.59-0.jar>
[DEBUG] Adding artifact <repository\com\github\amlorg\amf-validation_2.12\4.1.0-2\amf-validation_2.12-4.1.0-2.jar>
[DEBUG] Adding artifact <repository\com\github\amlorg\amf-webapi_2.12\4.1.0-2\amf-webapi_2.12-4.1.0-2.jar>
[DEBUG] Adding artifact <repository\com\github\andrewoma\dexx\collection\0.7\collection-0.7.jar>
[DEBUG] Adding artifact <repository\com\github\everit-org\json-schema\org.everit.json.schema\1.9.2\org.everit.json.schema-1.9.2.jar>
[DEBUG] Adding artifact <repository\com\github\fge\btf\1.2\btf-1.2.jar>
[DEBUG] Adding artifact <repository\com\github\fge\jackson-coreutils\1.8\jackson-coreutils-1.8.jar>
[DEBUG] Adding artifact <repository\com\github\fge\msg-simple\1.1\msg-simple-1.1.jar>
[DEBUG] Adding artifact <repository\com\github\fge\uri-template\0.9\uri-template-0.9.jar>
[DEBUG] Adding artifact <repository\com\github\java-json-tools\json-schema-core\1.2.8\json-schema-core-1.2.8.jar>
[DEBUG] Adding artifact <repository\com\github\java-json-tools\json-schema-validator\2.2.8\json-schema-validator-2.2.8.jar>
[DEBUG] Adding artifact <repository\com\github\jsonld-java\jsonld-java\0.12.3\jsonld-java-0.12.3.jar>
[DEBUG] Adding artifact <repository\com\github\scopt\scopt_2.12\3.7.0\scopt_2.12-3.7.0.jar>
[DEBUG] Adding artifact <repository\com\google\code\findbugs\annotations\3.0.0\annotations-3.0.0.jar>
[DEBUG] Adding artifact <repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar>
[DEBUG] Adding artifact <repository\com\google\errorprone\error_prone_annotations\2.3.2\error_prone_annotations-2.3.2.jar>
[DEBUG] Adding artifact <repository\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar>
[DEBUG] Adding artifact <repository\com\google\guava\guava\28.1-jre\guava-28.1-jre.jar>
[DEBUG] Adding artifact <repository\com\google\guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar>
[DEBUG] Adding artifact <repository\com\google\j2objc\j2objc-annotations\1.3\j2objc-annotations-1.3.jar>
[DEBUG] Adding artifact <repository\com\google\re2j\re2j\1.1\re2j-1.1.jar>
[DEBUG] Adding artifact <repository\com\googlecode\juniversalchardet\juniversalchardet\1.0.3\juniversalchardet-1.0.3.jar>
[DEBUG] Adding artifact <repository\com\googlecode\libphonenumber\libphonenumber\8.0.0\libphonenumber-8.0.0.jar>
[DEBUG] Adding artifact <repository\com\ibm\icu\icu4j\64.2\icu4j-64.2.jar>
[DEBUG] Adding artifact <repository\com\mulesoft\modules\mule-secure-configuration-property-module\1.2.2\mule-secure-configuration-property-module-1.2.2-mule-plugin.jar>
[DEBUG] Adding artifact <repository\com\rackspace\apache\xerces2-xsd11\2.11.2\xerces2-xsd11-2.11.2.jar>
[DEBUG] Adding artifact <repository\com\rackspace\eclipse\webtools\sourceediting\org.eclipse.wst.xml.xpath2.processor\2.1.100\org.eclipse.wst.xml.xpath2.processor-2.1.100.jar>
[DEBUG] Adding artifact <repository\com\sun\activation\jakarta.activation\1.2.1\jakarta.activation-1.2.1.jar>
[DEBUG] Adding artifact <repository\com\sun\mail\jakarta.mail\1.6.3\jakarta.mail-1.6.3.jar>
[DEBUG] Adding artifact <repository\com\sun\xml\bind\jaxb-core\2.3.0.1\jaxb-core-2.3.0.1.jar>
[DEBUG] Adding artifact <repository\com\sun\xml\bind\jaxb-impl\2.3.1\jaxb-impl-2.3.1.jar>
[DEBUG] Adding artifact <repository\com\thoughtworks\paranamer\paranamer\2.8\paranamer-2.8.jar>
[DEBUG] Adding artifact <repository\commons-beanutils\commons-beanutils\1.9.3\commons-beanutils-1.9.3.jar>
[DEBUG] Adding artifact <repository\commons-cli\commons-cli\1.4\commons-cli-1.4.jar>
[DEBUG] Adding artifact <repository\commons-codec\commons-codec\1.11\commons-codec-1.11.jar>
[DEBUG] Adding artifact <repository\commons-collections\commons-collections\3.2.2\commons-collections-3.2.2.jar>
[DEBUG] Adding artifact <repository\commons-digester\commons-digester\1.8.1\commons-digester-1.8.1.jar>
[DEBUG] Adding artifact <repository\commons-fileupload\commons-fileupload\1.4\commons-fileupload-1.4.jar>
[DEBUG] Adding artifact <repository\commons-io\commons-io\2.6\commons-io-2.6.jar>
[DEBUG] Adding artifact <repository\commons-lang\commons-lang\2.6\commons-lang-2.6.jar>
[DEBUG] Adding artifact <repository\commons-logging\commons-logging\1.2\commons-logging-1.2.jar>
[DEBUG] Adding artifact <repository\commons-validator\commons-validator\1.6\commons-validator-1.6.jar>
[DEBUG] Adding artifact <repository\edu\princeton\cup\java-cup\10k\java-cup-10k.jar>
[DEBUG] Adding artifact <repository\io\projectreactor\reactor-core\3.2.0.M1\reactor-core-3.2.0.M1.jar>
[DEBUG] Adding artifact <repository\javax\activation\javax.activation-api\1.2.0\javax.activation-api-1.2.0.jar>
[DEBUG] Adding artifact <repository\javax\annotation\javax.annotation-api\1.3.2\javax.annotation-api-1.3.2.jar>
[DEBUG] Adding artifact <repository\javax\annotation\jsr250-api\1.0\jsr250-api-1.0.jar>
[DEBUG] Adding artifact <repository\javax\enterprise\cdi-api\1.0\cdi-api-1.0.jar>
[DEBUG] Adding artifact <repository\javax\inject\javax.inject\1\javax.inject-1.jar>
[DEBUG] Adding artifact <repository\javax\json\javax.json-api\1.0\javax.json-api-1.0.jar>
[DEBUG] Adding artifact <repository\javax\validation\validation-api\1.1.0.Final\validation-api-1.1.0.Final.jar>
[DEBUG] Adding artifact <repository\javax\xml\bind\jaxb-api\2.3.1\jaxb-api-2.3.1.jar>
[DEBUG] Adding artifact <repository\joda-time\joda-time\2.9.7\joda-time-2.9.7.jar>
[DEBUG] Adding artifact <repository\net\sf\jopt-simple\jopt-simple\5.0.3\jopt-simple-5.0.3.jar>
[DEBUG] Adding artifact <repository\org\antlr\antlr4-runtime\4.5.3\antlr4-runtime-4.5.3.jar>
[DEBUG] Adding artifact <repository\org\apache\ant\ant-launcher\1.10.1\ant-launcher-1.10.1.jar>
[DEBUG] Adding artifact <repository\org\apache\ant\ant\1.10.1\ant-1.10.1.jar>
[DEBUG] Adding artifact <repository\org\apache\commons\commons-compress\1.18\commons-compress-1.18.jar>
[DEBUG] Adding artifact <repository\org\apache\commons\commons-csv\1.5\commons-csv-1.5.jar>
[DEBUG] Adding artifact <repository\org\apache\commons\commons-lang3\3.4\commons-lang3-3.4.jar>
[DEBUG] Adding artifact <repository\org\apache\commons\commons-lang3\3.6\commons-lang3-3.6.jar>
[DEBUG] Adding artifact <repository\org\apache\commons\commons-lang3\3.9\commons-lang3-3.9.jar>
[DEBUG] Adding artifact <repository\org\apache\commons\commons-text\1.8\commons-text-1.8.jar>
[DEBUG] Adding artifact <repository\org\apache\httpcomponents\httpclient-cache\4.5.5\httpclient-cache-4.5.5.jar>
[DEBUG] Adding artifact <repository\org\apache\httpcomponents\httpclient\4.5.10\httpclient-4.5.10.jar>
[DEBUG] Adding artifact <repository\org\apache\httpcomponents\httpcore\4.4.1\httpcore-4.4.1.jar>
[DEBUG] Adding artifact <repository\org\apache\httpcomponents\httpmime\4.5.10\httpmime-4.5.10.jar>
[DEBUG] Adding artifact <repository\org\apache\jena\jena-arq\3.11.0\jena-arq-3.11.0.jar>
[DEBUG] Adding artifact <repository\org\apache\jena\jena-base\3.11.0\jena-base-3.11.0.jar>
[DEBUG] Adding artifact <repository\org\apache\jena\jena-core\3.11.0\jena-core-3.11.0.jar>
[DEBUG] Adding artifact <repository\org\apache\jena\jena-iri\3.11.0\jena-iri-3.11.0.jar>
[DEBUG] Adding artifact <repository\org\apache\jena\jena-shaded-guava\3.11.0\jena-shaded-guava-3.11.0.jar>
[DEBUG] Adding artifact <repository\org\apache\logging\log4j\log4j-api\2.11.2\log4j-api-2.11.2.jar>
[DEBUG] Adding artifact <repository\org\apache\logging\log4j\log4j-core\2.11.2\log4j-core-2.11.2.jar>
[DEBUG] Adding artifact <repository\org\apache\logging\log4j\log4j-slf4j-impl\2.11.2\log4j-slf4j-impl-2.11.2.jar>
[DEBUG] Adding artifact <repository\org\apache\maven\maven-artifact\3.5.0\maven-artifact-3.5.0.jar>
[DEBUG] Adding artifact <repository\org\apache\maven\maven-model\3.5.0\maven-model-3.5.0.jar>
[DEBUG] Adding artifact <repository\org\apache\maven\maven-plugin-api\3.5.0\maven-plugin-api-3.5.0.jar>
[DEBUG] Adding artifact <repository\org\apache\thrift\libthrift\0.13.0\libthrift-0.13.0.jar>
[DEBUG] Adding artifact <repository\org\apache\ws\xmlschema\xmlschema-core\2.2.1\xmlschema-core-2.2.1.jar>
[DEBUG] Adding artifact <repository\org\checkerframework\checker-qual\2.8.1\checker-qual-2.8.1.jar>
[DEBUG] Adding artifact <repository\org\codehaus\groovy\groovy-all\2.4.4\groovy-all-2.4.4.jar>
[DEBUG] Adding artifact <repository\org\codehaus\mojo\animal-sniffer-annotations\1.18\animal-sniffer-annotations-1.18.jar>
[DEBUG] Adding artifact <repository\org\codehaus\plexus\plexus-classworlds\2.5.2\plexus-classworlds-2.5.2.jar>
[DEBUG] Adding artifact <repository\org\codehaus\plexus\plexus-component-annotations\1.5.5\plexus-component-annotations-1.5.5.jar>
[DEBUG] Adding artifact <repository\org\codehaus\plexus\plexus-utils\3.0.24\plexus-utils-3.0.24.jar>
[DEBUG] Adding artifact <repository\org\eclipse\sisu\org.eclipse.sisu.inject\0.3.3\org.eclipse.sisu.inject-0.3.3.jar>
[DEBUG] Adding artifact <repository\org\eclipse\sisu\org.eclipse.sisu.plexus\0.3.3\org.eclipse.sisu.plexus-0.3.3.jar>
[DEBUG] Adding artifact <repository\org\glassfish\javax.json\1.0.4\javax.json-1.0.4.jar>
[DEBUG] Adding artifact <repository\org\javassist\javassist\3.26.0-GA\javassist-3.26.0-GA.jar>
[DEBUG] Adding artifact <repository\org\json4s\json4s-ast_2.12\3.5.4\json4s-ast_2.12-3.5.4.jar>
[DEBUG] Adding artifact <repository\org\json4s\json4s-core_2.12\3.5.4\json4s-core_2.12-3.5.4.jar>
[DEBUG] Adding artifact <repository\org\json4s\json4s-native_2.12\3.5.4\json4s-native_2.12-3.5.4.jar>
[DEBUG] Adding artifact <repository\org\json4s\json4s-scalap_2.12\3.5.4\json4s-scalap_2.12-3.5.4.jar>
[DEBUG] Adding artifact <repository\org\json\json\20180130\json-20180130.jar>
[DEBUG] Adding artifact <repository\org\mozilla\rhino\1.7R4\rhino-1.7R4.jar>
[DEBUG] Adding artifact <repository\org\mule\amf\amf-xml-extension_2.12\1.6.0\amf-xml-extension_2.12-1.6.0.jar>
[DEBUG] Adding artifact <repository\org\mule\apikit\parser-service\2.0.7\parser-service-2.0.7.jar>
[DEBUG] Adding artifact <repository\org\mule\apikit\raml-parser-interface-impl-amf\2.0.7\raml-parser-interface-impl-amf-2.0.7.jar>
[DEBUG] Adding artifact <repository\org\mule\apikit\raml-parser-interface-impl-v1\2.0.7\raml-parser-interface-impl-v1-2.0.7.jar>
[DEBUG] Adding artifact <repository\org\mule\apikit\raml-parser-interface-impl-v2\2.0.7\raml-parser-interface-impl-v2-2.0.7.jar>
[DEBUG] Adding artifact <repository\org\mule\apikit\raml-parser-interface\2.0.7\raml-parser-interface-2.0.7.jar>
[DEBUG] Adding artifact <repository\org\mule\common\scala-common_2.12\0.5.68\scala-common_2.12-0.5.68.jar>
[DEBUG] Adding artifact <repository\org\mule\connectors\mule-http-connector\1.5.17\mule-http-connector-1.5.17-mule-plugin.jar>
[DEBUG] Adding artifact <repository\org\mule\connectors\mule-sockets-connector\1.1.5\mule-sockets-connector-1.1.5-mule-plugin.jar>
[DEBUG] Adding artifact <repository\org\mule\modules\mule-apikit-module\1.3.12\mule-apikit-module-1.3.12-mule-plugin.jar>
[DEBUG] Adding artifact <repository\org\mule\modules\mule-module-cors-kernel\1.1.2\mule-module-cors-kernel-1.1.2.jar>
[DEBUG] Adding artifact <repository\org\mule\syaml\syaml_2.12\0.7.276\syaml_2.12-0.7.276.jar>
[DEBUG] Adding artifact <repository\org\mule\mule-encryption\1.2.1\mule-encryption-1.2.1.jar>
[DEBUG] Adding artifact <repository\org\nuisto\mule-lint-maven-plugin\0.5.1\mule-lint-maven-plugin-0.5.1.jar>
[DEBUG] Adding artifact <repository\org\nuisto\mule-lint\0.5.1\mule-lint-0.5.1.jar>
[DEBUG] Adding artifact <repository\org\raml\raml-parser-2\1.0.49\raml-parser-2-1.0.49.jar>
[DEBUG] Adding artifact <repository\org\raml\raml-parser\0.8.39\raml-parser-0.8.39.jar>
[DEBUG] Adding artifact <repository\org\raml\yagi\1.0.49\yagi-1.0.49.jar>
[DEBUG] Adding artifact <repository\org\reactivestreams\reactive-streams\1.0.2\reactive-streams-1.0.2.jar>
[DEBUG] Adding artifact <repository\org\reflections\reflections\0.9.12\reflections-0.9.12.jar>
[DEBUG] Adding artifact <repository\org\scala-lang\modules\scala-java8-compat_2.12\0.8.0\scala-java8-compat_2.12-0.8.0.jar>
[DEBUG] Adding artifact <repository\org\scala-lang\modules\scala-xml_2.12\1.0.6\scala-xml_2.12-1.0.6.jar>
[DEBUG] Adding artifact <repository\org\scala-lang\scala-library\2.12.11\scala-library-2.12.11.jar>
[DEBUG] Adding artifact <repository\org\slf4j\jcl-over-slf4j\1.7.26\jcl-over-slf4j-1.7.26.jar>
[DEBUG] Adding artifact <repository\org\slf4j\slf4j-api\1.7.25\slf4j-api-1.7.25.jar>
[DEBUG] Adding artifact <repository\org\topbraid\shacl\1.3.0\shacl-1.3.0.jar>
[DEBUG] Adding artifact <repository\org\yaml\snakeyaml\1.23\snakeyaml-1.23.jar>
[DEBUG] Adding artifact <repository\xml-apis\xml-apis\1.4.01\xml-apis-1.4.01.jar>
[DEBUG] Adding artifact <repository\xml-resolver\xml-resolver\1.2\xml-resolver-1.2.jar>
[DEBUG] Local repository [C:\Users\ptupakul\.m2\repository]
[DEBUG] Remote repository ID [anypoint-exchange-v2], URL [https://maven.anypoint.mulesoft.com/api/v2/maven]
[DEBUG] Remote repository ID [mulesoft-releases], URL [https://repository.mulesoft.org/releases/]
[DEBUG] Remote repository ID [central], URL [https://repo.maven.apache.org/maven2]
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ sampleproject ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=68, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=28, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=67, DefaultDependencyCollector.collectTime=599, DefaultDependencyCollector.transformTime=1}
[DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:3.0.2:
[DEBUG]    org.apache.maven:maven-plugin-api: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-classworlds:jar:2.2.3:compile
[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile
[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG]    org.apache.maven:maven-model:jar:3.0:compile
[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.24:compile
[DEBUG]    org.apache.maven.shared:maven-filtering:jar:3.1.1:compile
[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile
[DEBUG]          com.google.code.findbugs:jsr305:jar:2.0.1:compile
[DEBUG]       org.sonatype.plexus:plexus-build-api:jar:0.0.7:compile
[DEBUG]    commons-io:commons-io:jar:2.5:compile
[DEBUG]    org.codehaus.plexus:plexus-interpolation:jar:1.24:compile
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.2
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.2
[DEBUG]   Imported:  < project>com.mycompany:sampleproject:1.0.0-SNAPSHOT
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.2
[DEBUG]   Included: org.apache.maven.plugins:maven-resources-plugin:jar:3.0.2
[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-component-annotations:jar:1.6
[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.24
[DEBUG]   Included: org.apache.maven.shared:maven-filtering:jar:3.1.1
[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0
[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:2.0.1
[DEBUG]   Included: org.sonatype.plexus:plexus-build-api:jar:0.0.7
[DEBUG]   Included: commons-io:commons-io:jar:2.5
[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.24
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:3.0.2:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.2, parent: org.eclipse.osgi.internal.loader.EquinoxClassLoader@19d92684[org.mule.tooling.maven.embedded:7.5.1.202005190111(id=444)]]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:3.0.2:resources' with basic configurator -->
[DEBUG]   (f) addDefaultExcludes = true
[DEBUG]   (f) buildFilters = []
[DEBUG]   (f) encoding = UTF-8
[DEBUG]   (f) escapeWindowsPaths = true
[DEBUG]   (f) fileNameFiltering = false
[DEBUG]   (s) includeEmptyDirs = false
[DEBUG]   (s) outputDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes
[DEBUG]   (s) overwrite = false
[DEBUG]   (f) project = MavenProject: com.mycompany:sampleproject:1.0.0-SNAPSHOT @ C:\Users\ptupakul\Documents\WorkSpace\sampleproject\pom.xml
[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Users\ptupakul\Documents\WorkSpace\sampleproject\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@52fd482b
[DEBUG]   (f) skip = false
[DEBUG]   (f) supportMultiLineFiltering = false
[DEBUG]   (f) useBuildFilters = true
[DEBUG]   (s) useDefaultDelimiters = true
[DEBUG] -- end configuration --
[DEBUG] properties used {file.encoding.pkg=sun.io, org.osgi.framework.executionenvironment=OSGi/Minimum-1.0,OSGi/Minimum-1.1,OSGi/Minimum-1.2,JavaSE/compact1-1.8,JavaSE/compact2-1.8,JavaSE/compact3-1.8,JRE-1.1,J2SE-1.2,J2SE-1.3,J2SE-1.4,J2SE-1.5,JavaSE-1.6,JavaSE-1.7,JavaSE-1.8, osgi.framework=file:/c:/Users/ptupakul/Documents/AnypointStudio/plugins/org.eclipse.osgi_3.15.0.v20190830-1434.jar, env.=D:=D:\, java.home=C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\jre, eclipse.application=org.eclipse.ui.ide.workbench, java.endorsed.dirs=C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\jre\lib\endorsed, env.USERNAME=ptupakul, app.runtime=4.3.0, sun.os.patch.level=, java.vendor.url=http://java.oracle.com/, env.COMPUTERNAME=A2ML26274, java.version=1.8.0_232, osgi.requiredJavaVersion=1.7, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, osgi.compatibility.bootdelegation.default=true, osgi.os=win32, osgi.compatibility.bootdelegation=true, org.eclipse.equinox.simpleconfigurator.configUrl=file:org.eclipse.equinox.simpleconfigurator/bundles.info, org.osgi.framework.uuid=8abbf6e0-bd1a-45d5-a6ca-06f4ee10a68e, env.FPS_BROWSER_APP_PROFILE_STRING=Internet Explorer, osgi.splashPath=platform:/base/plugins/org.mule.tooling.branding, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, env.USERPROFILE=C:\Users\ptupakul, mule.studio=true, user.name=ptupakul, org.osgi.framework.version=1.9.0, sun.io.unicode.encoding=UnicodeLittle, org.osgi.framework.system.packages=java.applet,java.awt,java.awt.color,java.awt.datatransfer,java.awt.dnd,java.awt.event,java.awt.font,java.awt.geom,java.awt.im,java.awt.im.spi,java.awt.image,java.awt.image.renderable,java.awt.print,java.beans,java.beans.beancontext,java.io,java.lang,java.lang.annotation,java.lang.instrument,java.lang.invoke,java.lang.management,java.lang.ref,java.lang.reflect,java.math,java.net,java.nio,java.nio.channels,java.nio.channels.spi,java.nio.charset,java.nio.charset.spi,java.nio.file,java.nio.file.attribute,java.nio.file.spi,java.rmi,java.rmi.activation,java.rmi.dgc,java.rmi.registry,java.rmi.server,java.security,java.security.acl,java.security.cert,java.security.interfaces,java.security.spec,java.sql,java.text,java.text.spi,java.time,java.time.chrono,java.time.format,java.time.temporal,java.time.zone,java.util,java.util.concurrent,java.util.concurrent.atomic,java.util.concurrent.locks,java.util.function,java.util.jar,java.util.logging,java.util.prefs,java.util.regex,java.util.spi,java.util.stream,java.util.zip,javax.accessibility,javax.activation,javax.activity,javax.annotation,javax.annotation.processing,javax.crypto,javax.crypto.interfaces,javax.crypto.spec,javax.imageio,javax.imageio.event,javax.imageio.metadata,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,javax.imageio.spi,javax.imageio.stream,javax.jws,javax.jws.soap,javax.lang.model,javax.lang.model.element,javax.lang.model.type,javax.lang.model.util,javax.management,javax.management.loading,javax.management.modelmbean,javax.management.monitor,javax.management.openmbean,javax.management.relation,javax.management.remote,javax.management.remote.rmi,javax.management.timer,javax.naming,javax.naming.directory,javax.naming.event,javax.naming.ldap,javax.naming.spi,javax.net,javax.net.ssl,javax.print,javax.print.attribute,javax.print.attribute.standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.rmi.ssl,javax.script,javax.security.auth,javax.security.auth.callback,javax.security.auth.kerberos,javax.security.auth.login,javax.security.auth.spi,javax.security.auth.x500,javax.security.cert,javax.security.sasl,javax.sound.midi,javax.sound.midi.spi,javax.sound.sampled,javax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.sql.rowset.serial,javax.sql.rowset.spi,javax.swing,javax.swing.border,javax.swing.colorchooser,javax.swing.event,javax.swing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,javax.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.nimbus,javax.swing.plaf.synth,javax.swing.table,javax.swing.text,javax.swing.text.html,javax.swing.text.html.parser,javax.swing.text.rtf,javax.swing.tree,javax.swing.undo,javax.tools,javax.transaction,javax.transaction.xa,javax.xml,javax.xml.bind,javax.xml.bind.annotation,javax.xml.bind.annotation.adapters,javax.xml.bind.attachment,javax.xml.bind.helpers,javax.xml.bind.util,javax.xml.crypto,javax.xml.crypto.dom,javax.xml.crypto.dsig,javax.xml.crypto.dsig.dom,javax.xml.crypto.dsig.keyinfo,javax.xml.crypto.dsig.spec,javax.xml.datatype,javax.xml.namespace,javax.xml.parsers,javax.xml.soap,javax.xml.stream,javax.xml.stream.events,javax.xml.stream.util,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.sax,javax.xml.transform.stax,javax.xml.transform.stream,javax.xml.validation,javax.xml.ws,javax.xml.ws.handler,javax.xml.ws.handler.soap,javax.xml.ws.http,javax.xml.ws.soap,javax.xml.ws.spi,javax.xml.ws.spi.http,javax.xml.ws.wsaddressing,javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,org.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.DynAnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,org.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNaming.NamingContextExtPackage,org.omg.CosNaming.NamingContextPackage,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org.omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPackage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer,org.omg.PortableServer.CurrentPackage,org.omg.PortableServer.POAManagerPackage,org.omg.PortableServer.POAPackage,org.omg.PortableServer.portable,org.omg.PortableServer.ServantLocatorPackage,org.omg.SendingContext,org.omg.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap,org.w3c.dom.css,org.w3c.dom.events,org.w3c.dom.html,org.w3c.dom.ls,org.w3c.dom.ranges,org.w3c.dom.stylesheets,org.w3c.dom.traversal,org.w3c.dom.views,org.w3c.dom.xpath,org.xml.sax,org.xml.sax.ext,org.xml.sax.helpers, sun.jnu.encoding=Cp1252, java.runtime.name=OpenJDK Runtime Environment, env.LOCALAPPDATA=C:\Users\ptupakul\AppData\Local, applicationXMI=org.eclipse.ui.workbench/LegacyIDE.e4xmi, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, osgi.instance.area.default=file:/C:/Users/ptupakul/AnypointStudio/studio-workspace/, eclipse.launcher.name=AnypointStudio, eclipse.product=org.mule.tooling.branding.mulestudio, java.specification.name=Java Platform API Specification, org.osgi.supports.framework.fragment=true, osgi.framework.useSystemProperties=true, user.timezone=Asia/Calcutta, org.osgi.framework.system.capabilities=osgi.ee; osgi.ee="OSGi/Minimum"; version:List<Version>="1.0, 1.1, 1.2",osgi.ee; osgi.ee="JRE"; version:List<Version>="1.0, 1.1",osgi.ee; osgi.ee="JavaSE"; version:List<Version>="1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8",osgi.ee; osgi.ee="JavaSE/compact1"; version:List<Version>="1.8",osgi.ee; osgi.ee="JavaSE/compact2"; version:List<Version>="1.8",osgi.ee; osgi.ee="JavaSE/compact3"; version:List<Version>="1.8", osgi.nl=en_US, user.script=, path.separator=;, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 9, GenuineIntel, ds.delayed.keepInstances=true, mule.lint.version=0.5.1, file.encoding=UTF-8, osgi.arch=x86_64, sun.java.command=C:\Users\ptupakul\Documents\AnypointStudio\\plugins/org.eclipse.equinox.launcher_1.5.500.v20190715-1310.jar -os win32 -ws win32 -arch x86_64 -showsplash -launcher C:\Users\ptupakul\Documents\AnypointStudio\AnypointStudio.exe -name AnypointStudio --launcher.library C:\Users\ptupakul\Documents\AnypointStudio\\plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426\eclipse_1902.dll -startup C:\Users\ptupakul\Documents\AnypointStudio\\plugins/org.eclipse.equinox.launcher_1.5.500.v20190715-1310.jar --launcher.overrideVmargs -exitdata 674_154 -vm C:\Users\ptupakul\Documents\AnypointStudio\\plugins/org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356/bin/javaw.exe -vmargs -Xms512m -Xmx1024m -XX:+UseG1GC -XX:+UseStringDeduplication -Dosgi.instance.area.default=@user.home/AnypointStudio/studio-workspace -Dhttps.protocols=TLSv1.2,TLSv1.1,TLSv1 -Dsun.zip.disableMemoryMapping=true -Dequinox.resolver.revision.batch.size=1 -Dmule.testingMode=true -Dorg.mule.tooling.runtime.args=-XX:-UseBiasedLocking,-Dfile.encoding=UTF-8,-XX:+UseG1GC,-XX:+UseStringDeduplication -Dorg.mule.tooling.runtime.proxyVmArgs=-Dcom.ning.http.client.AsyncHttpClientConfig.useProxyProperties=true -Djdk.http.auth.tunneling.disabledSchemes= -XX:ErrorFile=./studio_crash_report.log -Dorg.mule.tooling.client.usecache=true -Dtooling.concurrent.local.repository.enabled=false -Dtooling.client.configuration.filter.parameters.reserved.names=false -Dfile.encoding=UTF-8 -jar C:\Users\ptupakul\Documents\AnypointStudio\\plugins/org.eclipse.equinox.launcher_1.5.500.v20190715-1310.jar, env.=A:=A:\, env.NUMBER_OF_PROCESSORS=4, env.APPDATA=C:\Users\ptupakul\AppData\Roaming, org.osgi.supports.framework.requirebundle=true, env.WINDIR=C:\windows, org.mule.tooling.runtime.proxyVmArgs=-Dcom.ning.http.client.AsyncHttpClientConfig.useProxyProperties=true, osgi.bundles.defaultStartLevel=4, osgi.bundles=reference:file:org.eclipse.osgi.compatibility.state_1.1.600.v20190814-1451.jar,reference:file:org.eclipse.equinox.simpleconfigurator_1.3.300.v20190716-0825.jar@1:start, java.io.tmpdir=C:\Users\ptupakul\AppData\Local\Temp\, org.osgi.framework.os.name=Windows10, equinox.use.ds=true, user.language=en, line.separator=
, maven.repo.local=C:\Users\ptupakul\.m2\repository, project.baseUri=file:/C:/Users/ptupakul/Documents/WorkSpace/sampleproject/, org.eclipse.swt.internal.deviceZoom=100, tooling.client.ExtensionModelServiceCache.diskStore.path=C:\Users\ptupakul\Documents\WorkSpace\.mule\plugins-tmp\repository, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, org.osgi.framework.processor=x86-64, java.vm.info=mixed mode, osgi.splashLocation=c:\Users\ptupakul\Documents\AnypointStudio\configuration\org.eclipse.equinox.launcher\org.mule.tooling.branding_7.5.1.202005190111\splash.bmp, sun.desktop=windows, java.vm.specification.name=Java Virtual Machine Specification, project.reporting.outputEncoding=UTF-8, org.mule.tooling.runtime.args=-XX:-UseBiasedLocking,-Dfile.encoding=UTF-8,-XX:+UseG1GC,-XX:+UseStringDeduplication, tooling.concurrent.local.repository.enabled=false, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, env.ONEDRIVE=C:\Users\Administrator\OneDrive, env.USERDOMAIN_ROAMINGPROFILE=MINDTREE, eclipse.vm=C:\Users\ptupakul\Documents\AnypointStudio\\plugins/org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356/bin/javaw.exe, equinox.resolver.revision.batch.size=1, env.LOGONSERVER=\\MTW02DC04, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files (x86)\Microsoft Azure Information Protection\Powershell, osgi.configuration.area=file:/C:/Users/ptupakul/Documents/AnypointStudio/configuration/, java.awt.printerjob=sun.awt.windows.WPrinterJob, mule.maven.plugin.version=3.3.5, env.PUBLIC=C:\Users\Public, env.USERDOMAIN=MINDTREE, org.osgi.framework.storage=C:\Users\ptupakul\Documents\AnypointStudio\configuration, osgi.ws=win32, env.PROCESSOR_LEVEL=6, env.PROGRAMFILES(X86)=C:\Program Files (x86), equinox.init.uuid=true, org.osgi.supports.framework.extension=true, eclipse.p2.data.area=@config.dir/../p2/, osgi.framework.extensions=reference:file:org.eclipse.osgi.compatibility.state_1.1.600.v20190814-1451.jar, gosh.args=--nointeractive, maven.build.timestamp=2020-08-10T10:09:34Z, org.osgi.framework.language=en, os.name=Windows 10, eclipse.home.location=file:/C:/Users/ptupakul/Documents/AnypointStudio/, java.specification.vendor=Oracle Corporation, eclipse.vmargs=-Xms512m
-Xmx1024m
-XX:+UseG1GC
-XX:+UseStringDeduplication
-Dosgi.instance.area.default=@user.home/AnypointStudio/studio-workspace
-Dhttps.protocols=TLSv1.2,TLSv1.1,TLSv1
-Dsun.zip.disableMemoryMapping=true
-Dequinox.resolver.revision.batch.size=1
-Dmule.testingMode=true
-Dorg.mule.tooling.runtime.args=-XX:-UseBiasedLocking,-Dfile.encoding=UTF-8,-XX:+UseG1GC,-XX:+UseStringDeduplication
-Dorg.mule.tooling.runtime.proxyVmArgs=-Dcom.ning.http.client.AsyncHttpClientConfig.useProxyProperties=true
-Djdk.http.auth.tunneling.disabledSchemes=
-XX:ErrorFile=./studio_crash_report.log
-Dorg.mule.tooling.client.usecache=true
-Dtooling.concurrent.local.repository.enabled=false
-Dtooling.client.configuration.filter.parameters.reserved.names=false
-Dfile.encoding=UTF-8
-jar
C:\Users\ptupakul\Documents\AnypointStudio\\plugins/org.eclipse.equinox.launcher_1.5.500.v20190715-1310.jar
, env.TMP=C:\Users\ptupakul\AppData\Local\Temp, java.vm.name=OpenJDK 64-Bit Server VM, env.OS=Windows_NT, sun.awt.enableExtraMouseButtons=true, java.library.path=C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\bin;C:\windows\Sun\Java\bin;C:\windows\system32;C:\windows;C:\ProgramData\Oracle\Java\javapath;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\windows\System32\OpenSSH\;C:\Users\ptupakul\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Java\jdk1.8.0_151\bin;;., env.PROGRAMW6432=C:\Program Files, mule.testingMode=true, env.PATH=C:\ProgramData\Oracle\Java\javapath;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\windows\System32\OpenSSH\;C:\Users\ptupakul\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Java\jdk1.8.0_151\bin;, eclipse.commands=-os
win32
-ws
win32
-arch
x86_64
-showsplash
-launcher
C:\Users\ptupakul\Documents\AnypointStudio\AnypointStudio.exe
-name
AnypointStudio
--launcher.library
C:\Users\ptupakul\Documents\AnypointStudio\\plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426\eclipse_1902.dll
-startup
C:\Users\ptupakul\Documents\AnypointStudio\\plugins/org.eclipse.equinox.launcher_1.5.500.v20190715-1310.jar
--launcher.overrideVmargs
-exitdata
674_154
-vm
C:\Users\ptupakul\Documents\AnypointStudio\\plugins/org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356/bin/javaw.exe
, java.class.version=52.0, osgi.syspath=c:\Users\ptupakul\Documents\AnypointStudio\plugins, maven.multiModuleProjectDirectory=, org.eclipse.equinox.launcher.splash.location=c:\Users\ptupakul\Documents\AnypointStudio\configuration\org.eclipse.equinox.launcher\org.mule.tooling.branding_7.5.1.202005190111\splash.bmp, env.HOMEDRIVE=C:, env.SYSTEMROOT=C:\windows, osgi.instance.area=file:/C:/Users/ptupakul/Documents/WorkSpace/, osgi.install.area=file:/C:/Users/ptupakul/Documents/AnypointStudio/, env.COMSPEC=C:\windows\system32\cmd.exe, sun.boot.library.path=C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\jre\bin, project.build.sourceEncoding=UTF-8, env.SYSTEMDRIVE=C:, env.PROCESSOR_REVISION=8e09, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, user.variant=, eclipse.stateSaveDelayInterval=30000, org.mule.tooling.client.usecache=true, env.PROGRAMFILES=C:\Program Files, java.vm.specification.version=1.8, env.PROGRAMDATA=C:\ProgramData, awt.toolkit=sun.awt.windows.WToolkit, sun.cpu.isalist=amd64, org.eclipse.update.reconcile=false, java.ext.dirs=C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\jre\lib\ext;C:\windows\Sun\Java\lib\ext, os.version=10.0, eclipse.launcher=C:\Users\ptupakul\Documents\AnypointStudio\AnypointStudio.exe, user.home=C:\Users\ptupakul, java.vm.vendor=, env.USERDNSDOMAIN=MINDTREE.COM, env.JAVA_HOME=C:\Program Files\Java\jdk1.8.0_151, user.dir=C:\Users\ptupakul\Documents\AnypointStudio, org.osgi.framework.os.version=10.0.0, osgi.framework.shape=jar, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, sun.cpu.endian=little, env.ALLUSERSPROFILE=C:\ProgramData, eclipse.startTime=1597053993900, env.PROCESSOR_ARCHITECTURE=AMD64, java.vm.version=25.232-b09, env.HOMEPATH=\Users\ptupakul, org.slf4j.simpleLogger.defaultLogLevel=debug, env.=::=::\, java.class.path=C:\Users\ptupakul\Documents\AnypointStudio\\plugins/org.eclipse.equinox.launcher_1.5.500.v20190715-1310.jar, env.UATDATA=C:\windows\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, MAVEN_OPTS=, os.arch=amd64, maven.build.version=Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T22:11:47+05:30), eclipse.p2.profile=DefaultProfile, env.SESSIONNAME=Console, sun.java.launcher=SUN_STANDARD, org.osgi.framework.vendor=Eclipse, jdk.http.auth.tunneling.disabledSchemes=, https.protocols=TLSv1.2,TLSv1.1,TLSv1, osgi.tracefile=C:\Users\ptupakul\Documents\WorkSpace\.metadata\trace.log, java.vm.specification.vendor=Oracle Corporation, file.separator=\, java.runtime.version=1.8.0_232-b09, sun.boot.class.path=C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\jre\lib\resources.jar;C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\jre\lib\rt.jar;C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\jre\lib\sunrsasign.jar;C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\jre\lib\jsse.jar;C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\jre\lib\jce.jar;C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\jre\lib\charsets.jar;C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\jre\lib\jfr.jar;C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\jre\classes, tooling.client.configuration.filter.parameters.reserved.names=false, maven.version=3.3.9, env.TEMP=C:\Users\ptupakul\AppData\Local\Temp, osgi.frameworkClassPath=., file:c:/Users/ptupakul/Documents/AnypointStudio/plugins/org.eclipse.osgi.compatibility.state_1.1.600.v20190814-1451.jar, user.country=US, env.FPS_BROWSER_USER_PROFILE_STRING=Default, osgi.logfile=C:\Users\ptupakul\Documents\WorkSpace\.metadata\.log, java.vendor=AdoptOpenJDK, java.specification.version=1.8, sun.arch.data.model=64}
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory C:\Users\ptupakul\Documents\WorkSpace\sampleproject\src\main\resources
excludes []
includes []
[DEBUG] ignoreDelta true
[INFO] Copying 3 resources
[DEBUG] Copying file api\sample.raml
[DEBUG] file sample.raml has a filtered file extension
[DEBUG] copy C:\Users\ptupakul\Documents\WorkSpace\sampleproject\src\main\resources\api\sample.raml to C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes\api\sample.raml
[DEBUG] Copying file dev.yaml
[DEBUG] file dev.yaml has a filtered file extension
[DEBUG] copy C:\Users\ptupakul\Documents\WorkSpace\sampleproject\src\main\resources\dev.yaml to C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes\dev.yaml
[DEBUG] Copying file log4j2.xml
[DEBUG] file log4j2.xml has a filtered file extension
[DEBUG] copy C:\Users\ptupakul\Documents\WorkSpace\sampleproject\src\main\resources\log4j2.xml to C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes\log4j2.xml
[DEBUG] no use filter components
[INFO] 
[INFO] --- mule-maven-plugin:3.3.5:process-resources (default-process-resources) @ sampleproject ---
[DEBUG] Configuring mojo org.mule.tools.maven:mule-maven-plugin:3.3.5:process-resources from plugin realm ClassRealm[extension>org.mule.tools.maven:mule-maven-plugin:3.3.5, parent: org.eclipse.osgi.internal.loader.EquinoxClassLoader@19d92684[org.mule.tooling.maven.embedded:7.5.1.202005190111(id=444)]]
[DEBUG] Configuring mojo 'org.mule.tools.maven:mule-maven-plugin:3.3.5:process-resources' with basic configurator -->
[DEBUG]   (f) classifier = mule-application
[DEBUG]   (f) localRepository =       id: local
      url: file:///C:/Users/ptupakul/.m2/repository/
   layout: default
snapshots: [enabled => true, update => always]
 releases: [enabled => true, update => always]

[DEBUG]   (f) outputDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target
[DEBUG]   (s) project = MavenProject: com.mycompany:sampleproject:1.0.0-SNAPSHOT @ C:\Users\ptupakul\Documents\WorkSpace\sampleproject\pom.xml
[DEBUG]   (s) projectBaseFolder = C:\Users\ptupakul\Documents\WorkSpace\sampleproject
[DEBUG]   (f) remoteArtifactRepositories = [      id: anypoint-exchange-v2
      url: https://maven.anypoint.mulesoft.com/api/v2/maven
   layout: default
snapshots: [enabled => true, update => daily]
 releases: [enabled => true, update => daily]
,       id: mulesoft-releases
      url: https://repository.mulesoft.org/releases/
   layout: default
snapshots: [enabled => true, update => daily]
 releases: [enabled => true, update => daily]
,       id: central
      url: https://repo.maven.apache.org/maven2
   layout: default
snapshots: [enabled => false, update => daily]
 releases: [enabled => true, update => daily]
]
[DEBUG]   (s) session = org.apache.maven.execution.MavenSession@52fd482b
[DEBUG]   (f) sharedLibraries = []
[DEBUG] -- end configuration --
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ sampleproject ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=118, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=45, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=3, ConflictResolver.conflictItemCount=72, DefaultDependencyCollector.collectTime=576, DefaultDependencyCollector.transformTime=3}
[DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:3.8.0:
[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-model: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-artifact:jar:3.0:compile
[DEBUG]       org.codehaus.plexus:plexus-utils:jar:2.0.4: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.7.1:compile
[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG]    org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
[DEBUG]       commons-io:commons-io:jar:2.5:compile
[DEBUG]    org.apache.maven.shared:maven-shared-incremental:jar:1.1:compile
[DEBUG]    org.codehaus.plexus:plexus-java:jar:0.9.10:compile
[DEBUG]       org.ow2.asm:asm:jar:6.2:compile
[DEBUG]       com.thoughtworks.qdox:qdox:jar:2.0-M9:compile
[DEBUG]    org.codehaus.plexus:plexus-compiler-api:jar:2.8.4:compile
[DEBUG]    org.codehaus.plexus:plexus-compiler-manager:jar:2.8.4:compile
[DEBUG]    org.codehaus.plexus:plexus-compiler-javac:jar:2.8.4:runtime
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.0
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.0
[DEBUG]   Imported:  < project>com.mycompany:sampleproject:1.0.0-SNAPSHOT
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.0
[DEBUG]   Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.8.0
[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.codehaus.plexus:plexus-utils:jar:2.0.4
[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.7.1
[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4
[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.2.1
[DEBUG]   Included: commons-io:commons-io:jar:2.5
[DEBUG]   Included: org.apache.maven.shared:maven-shared-incremental:jar:1.1
[DEBUG]   Included: org.codehaus.plexus:plexus-java:jar:0.9.10
[DEBUG]   Included: org.ow2.asm:asm:jar:6.2
[DEBUG]   Included: com.thoughtworks.qdox:qdox:jar:2.0-M9
[DEBUG]   Included: org.codehaus.plexus:plexus-compiler-api:jar:2.8.4
[DEBUG]   Included: org.codehaus.plexus:plexus-compiler-manager:jar:2.8.4
[DEBUG]   Included: org.codehaus.plexus:plexus-compiler-javac:jar:2.8.4
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.0, parent: org.eclipse.osgi.internal.loader.EquinoxClassLoader@19d92684[org.mule.tooling.maven.embedded:7.5.1.202005190111(id=444)]]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile' with basic configurator -->
[DEBUG]   (f) basedir = C:\Users\ptupakul\Documents\WorkSpace\sampleproject
[DEBUG]   (f) buildDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target
[DEBUG]   (f) compilePath = [C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes, C:\Users\ptupakul\.m2\repository\org\mule\connectors\mule-http-connector\1.5.17\mule-http-connector-1.5.17-mule-plugin.jar, C:\Users\ptupakul\.m2\repository\org\mule\connectors\mule-sockets-connector\1.1.5\mule-sockets-connector-1.1.5-mule-plugin.jar, C:\Users\ptupakul\.m2\repository\org\mule\modules\mule-module-cors-kernel\1.1.2\mule-module-cors-kernel-1.1.2.jar, C:\Users\ptupakul\.m2\repository\org\apache\commons\commons-text\1.8\commons-text-1.8.jar, C:\Users\ptupakul\.m2\repository\com\mulesoft\modules\mule-secure-configuration-property-module\1.2.2\mule-secure-configuration-property-module-1.2.2-mule-plugin.jar, C:\Users\ptupakul\.m2\repository\org\mule\mule-encryption\1.2.1\mule-encryption-1.2.1.jar, C:\Users\ptupakul\.m2\repository\org\mule\modules\mule-apikit-module\1.3.12\mule-apikit-module-1.3.12-mule-plugin.jar, C:\Users\ptupakul\.m2\repository\io\projectreactor\reactor-core\3.2.0.M1\reactor-core-3.2.0.M1.jar, C:\Users\ptupakul\.m2\repository\org\reactivestreams\reactive-streams\1.0.2\reactive-streams-1.0.2.jar, C:\Users\ptupakul\.m2\repository\org\mule\apikit\parser-service\2.0.7\parser-service-2.0.7.jar, C:\Users\ptupakul\.m2\repository\org\mule\apikit\raml-parser-interface\2.0.7\raml-parser-interface-2.0.7.jar, C:\Users\ptupakul\.m2\repository\org\mule\apikit\raml-parser-interface-impl-v1\2.0.7\raml-parser-interface-impl-v1-2.0.7.jar, C:\Users\ptupakul\.m2\repository\org\raml\raml-parser\0.8.39\raml-parser-0.8.39.jar, C:\Users\ptupakul\.m2\repository\org\yaml\snakeyaml\1.23\snakeyaml-1.23.jar, C:\Users\ptupakul\.m2\repository\commons-lang\commons-lang\2.6\commons-lang-2.6.jar, C:\Users\ptupakul\.m2\repository\commons-beanutils\commons-beanutils\1.9.3\commons-beanutils-1.9.3.jar, C:\Users\ptupakul\.m2\repository\commons-collections\commons-collections\3.2.2\commons-collections-3.2.2.jar, C:\Users\ptupakul\.m2\repository\org\apache\logging\log4j\log4j-slf4j-impl\2.11.2\log4j-slf4j-impl-2.11.2.jar, C:\Users\ptupakul\.m2\repository\org\apache\logging\log4j\log4j-api\2.11.2\log4j-api-2.11.2.jar, C:\Users\ptupakul\.m2\repository\com\github\java-json-tools\json-schema-validator\2.2.8\json-schema-validator-2.2.8.jar, C:\Users\ptupakul\.m2\repository\com\github\java-json-tools\json-schema-core\1.2.8\json-schema-core-1.2.8.jar, C:\Users\ptupakul\.m2\repository\org\mozilla\rhino\1.7R4\rhino-1.7R4.jar, C:\Users\ptupakul\.m2\repository\com\github\fge\jackson-coreutils\1.8\jackson-coreutils-1.8.jar, C:\Users\ptupakul\.m2\repository\com\github\fge\msg-simple\1.1\msg-simple-1.1.jar, C:\Users\ptupakul\.m2\repository\com\github\fge\btf\1.2\btf-1.2.jar, C:\Users\ptupakul\.m2\repository\com\github\fge\uri-template\0.9\uri-template-0.9.jar, C:\Users\ptupakul\.m2\repository\joda-time\joda-time\2.9.7\joda-time-2.9.7.jar, C:\Users\ptupakul\.m2\repository\com\googlecode\libphonenumber\libphonenumber\8.0.0\libphonenumber-8.0.0.jar, C:\Users\ptupakul\.m2\repository\net\sf\jopt-simple\jopt-simple\5.0.3\jopt-simple-5.0.3.jar, C:\Users\ptupakul\.m2\repository\com\sun\mail\jakarta.mail\1.6.3\jakarta.mail-1.6.3.jar, C:\Users\ptupakul\.m2\repository\com\sun\activation\jakarta.activation\1.2.1\jakarta.activation-1.2.1.jar, C:\Users\ptupakul\.m2\repository\com\fasterxml\jackson\module\jackson-module-jsonSchema\2.10.0\jackson-module-jsonSchema-2.10.0.jar, C:\Users\ptupakul\.m2\repository\javax\validation\validation-api\1.1.0.Final\validation-api-1.1.0.Final.jar, C:\Users\ptupakul\.m2\repository\com\googlecode\juniversalchardet\juniversalchardet\1.0.3\juniversalchardet-1.0.3.jar, C:\Users\ptupakul\.m2\repository\org\mule\apikit\raml-parser-interface-impl-v2\2.0.7\raml-parser-interface-impl-v2-2.0.7.jar, C:\Users\ptupakul\.m2\repository\org\raml\raml-parser-2\1.0.49\raml-parser-2-1.0.49.jar, C:\Users\ptupakul\.m2\repository\org\raml\yagi\1.0.49\yagi-1.0.49.jar, C:\Users\ptupakul\.m2\repository\com\google\code\findbugs\annotations\3.0.0\annotations-3.0.0.jar, C:\Users\ptupakul\.m2\repository\org\apache\ws\xmlschema\xmlschema-core\2.2.1\xmlschema-core-2.2.1.jar, C:\Users\ptupakul\.m2\repository\javax\json\javax.json-api\1.0\javax.json-api-1.0.jar, C:\Users\ptupakul\.m2\repository\org\glassfish\javax.json\1.0.4\javax.json-1.0.4.jar, C:\Users\ptupakul\.m2\repository\org\mule\apikit\raml-parser-interface-impl-amf\2.0.7\raml-parser-interface-impl-amf-2.0.7.jar, C:\Users\ptupakul\.m2\repository\com\github\amlorg\amf-client_2.12\4.1.0-2\amf-client_2.12-4.1.0-2.jar, C:\Users\ptupakul\.m2\repository\org\scala-lang\scala-library\2.12.11\scala-library-2.12.11.jar, C:\Users\ptupakul\.m2\repository\com\github\amlorg\amf-webapi_2.12\4.1.0-2\amf-webapi_2.12-4.1.0-2.jar, C:\Users\ptupakul\.m2\repository\com\github\everit-org\json-schema\org.everit.json.schema\1.9.2\org.everit.json.schema-1.9.2.jar, C:\Users\ptupakul\.m2\repository\org\json\json\20180130\json-20180130.jar, C:\Users\ptupakul\.m2\repository\commons-validator\commons-validator\1.6\commons-validator-1.6.jar, C:\Users\ptupakul\.m2\repository\commons-digester\commons-digester\1.8.1\commons-digester-1.8.1.jar, C:\Users\ptupakul\.m2\repository\com\damnhandy\handy-uri-templates\2.1.6\handy-uri-templates-2.1.6.jar, C:\Users\ptupakul\.m2\repository\com\google\re2j\re2j\1.1\re2j-1.1.jar, C:\Users\ptupakul\.m2\repository\com\github\amlorg\amf-validation_2.12\4.1.0-2\amf-validation_2.12-4.1.0-2.jar, C:\Users\ptupakul\.m2\repository\com\github\scopt\scopt_2.12\3.7.0\scopt_2.12-3.7.0.jar, C:\Users\ptupakul\.m2\repository\org\reflections\reflections\0.9.12\reflections-0.9.12.jar, C:\Users\ptupakul\.m2\repository\org\javassist\javassist\3.26.0-GA\javassist-3.26.0-GA.jar, C:\Users\ptupakul\.m2\repository\org\scala-lang\modules\scala-java8-compat_2.12\0.8.0\scala-java8-compat_2.12-0.8.0.jar, C:\Users\ptupakul\.m2\repository\org\json4s\json4s-native_2.12\3.5.4\json4s-native_2.12-3.5.4.jar, C:\Users\ptupakul\.m2\repository\org\json4s\json4s-core_2.12\3.5.4\json4s-core_2.12-3.5.4.jar, C:\Users\ptupakul\.m2\repository\org\json4s\json4s-ast_2.12\3.5.4\json4s-ast_2.12-3.5.4.jar, C:\Users\ptupakul\.m2\repository\org\json4s\json4s-scalap_2.12\3.5.4\json4s-scalap_2.12-3.5.4.jar, C:\Users\ptupakul\.m2\repository\com\thoughtworks\paranamer\paranamer\2.8\paranamer-2.8.jar, C:\Users\ptupakul\.m2\repository\org\scala-lang\modules\scala-xml_2.12\1.0.6\scala-xml_2.12-1.0.6.jar, C:\Users\ptupakul\.m2\repository\org\topbraid\shacl\1.3.0\shacl-1.3.0.jar, C:\Users\ptupakul\.m2\repository\org\apache\jena\jena-arq\3.11.0\jena-arq-3.11.0.jar, C:\Users\ptupakul\.m2\repository\org\apache\jena\jena-core\3.11.0\jena-core-3.11.0.jar, C:\Users\ptupakul\.m2\repository\org\apache\jena\jena-iri\3.11.0\jena-iri-3.11.0.jar, C:\Users\ptupakul\.m2\repository\org\apache\jena\jena-base\3.11.0\jena-base-3.11.0.jar, C:\Users\ptupakul\.m2\repository\org\apache\commons\commons-csv\1.5\commons-csv-1.5.jar, C:\Users\ptupakul\.m2\repository\com\github\andrewoma\dexx\collection\0.7\collection-0.7.jar, C:\Users\ptupakul\.m2\repository\org\apache\jena\jena-shaded-guava\3.11.0\jena-shaded-guava-3.11.0.jar, C:\Users\ptupakul\.m2\repository\com\github\jsonld-java\jsonld-java\0.12.3\jsonld-java-0.12.3.jar, C:\Users\ptupakul\.m2\repository\org\apache\httpcomponents\httpclient-cache\4.5.5\httpclient-cache-4.5.5.jar, C:\Users\ptupakul\.m2\repository\org\slf4j\jcl-over-slf4j\1.7.26\jcl-over-slf4j-1.7.26.jar, C:\Users\ptupakul\.m2\repository\org\antlr\antlr4-runtime\4.5.3\antlr4-runtime-4.5.3.jar, C:\Users\ptupakul\.m2\repository\org\apache\commons\commons-compress\1.18\commons-compress-1.18.jar, C:\Users\ptupakul\.m2\repository\com\github\amlorg\amf-aml_2.12\4.1.68-0\amf-aml_2.12-4.1.68-0.jar, C:\Users\ptupakul\.m2\repository\com\github\amlorg\amf-core_2.12\4.1.59-0\amf-core_2.12-4.1.59-0.jar, C:\Users\ptupakul\.m2\repository\org\mule\syaml\syaml_2.12\0.7.276\syaml_2.12-0.7.276.jar, C:\Users\ptupakul\.m2\repository\org\mule\common\scala-common_2.12\0.5.68\scala-common_2.12-0.5.68.jar, C:\Users\ptupakul\.m2\repository\org\mule\amf\amf-xml-extension_2.12\1.6.0\amf-xml-extension_2.12-1.6.0.jar, C:\Users\ptupakul\.m2\repository\com\rackspace\apache\xerces2-xsd11\2.11.2\xerces2-xsd11-2.11.2.jar, C:\Users\ptupakul\.m2\repository\xml-apis\xml-apis\1.4.01\xml-apis-1.4.01.jar, C:\Users\ptupakul\.m2\repository\com\rackspace\eclipse\webtools\sourceediting\org.eclipse.wst.xml.xpath2.processor\2.1.100\org.eclipse.wst.xml.xpath2.processor-2.1.100.jar, C:\Users\ptupakul\.m2\repository\edu\princeton\cup\java-cup\10k\java-cup-10k.jar, C:\Users\ptupakul\.m2\repository\xml-resolver\xml-resolver\1.2\xml-resolver-1.2.jar, C:\Users\ptupakul\.m2\repository\com\ibm\icu\icu4j\64.2\icu4j-64.2.jar, C:\Users\ptupakul\.m2\repository\org\apache\commons\commons-lang3\3.6\commons-lang3-3.6.jar, C:\Users\ptupakul\.m2\repository\javax\xml\bind\jaxb-api\2.3.1\jaxb-api-2.3.1.jar, C:\Users\ptupakul\.m2\repository\javax\activation\javax.activation-api\1.2.0\javax.activation-api-1.2.0.jar, C:\Users\ptupakul\.m2\repository\com\sun\xml\bind\jaxb-core\2.3.0.1\jaxb-core-2.3.0.1.jar, C:\Users\ptupakul\.m2\repository\com\sun\xml\bind\jaxb-impl\2.3.1\jaxb-impl-2.3.1.jar, C:\Users\ptupakul\.m2\repository\commons-fileupload\commons-fileupload\1.4\commons-fileupload-1.4.jar, C:\Users\ptupakul\.m2\repository\org\apache\httpcomponents\httpmime\4.5.10\httpmime-4.5.10.jar, C:\Users\ptupakul\.m2\repository\org\apache\httpcomponents\httpclient\4.5.10\httpclient-4.5.10.jar, C:\Users\ptupakul\.m2\repository\commons-logging\commons-logging\1.2\commons-logging-1.2.jar, C:\Users\ptupakul\.m2\repository\commons-codec\commons-codec\1.11\commons-codec-1.11.jar, C:\Users\ptupakul\.m2\repository\commons-io\commons-io\2.6\commons-io-2.6.jar, C:\Users\ptupakul\.m2\repository\com\google\guava\guava\28.1-jre\guava-28.1-jre.jar, C:\Users\ptupakul\.m2\repository\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar, C:\Users\ptupakul\.m2\repository\com\google\guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar, C:\Users\ptupakul\.m2\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar, C:\Users\ptupakul\.m2\repository\org\checkerframework\checker-qual\2.8.1\checker-qual-2.8.1.jar, C:\Users\ptupakul\.m2\repository\com\google\errorprone\error_prone_annotations\2.3.2\error_prone_annotations-2.3.2.jar, C:\Users\ptupakul\.m2\repository\com\google\j2objc\j2objc-annotations\1.3\j2objc-annotations-1.3.jar, C:\Users\ptupakul\.m2\repository\org\codehaus\mojo\animal-sniffer-annotations\1.18\animal-sniffer-annotations-1.18.jar, C:\Users\ptupakul\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.10.0\jackson-annotations-2.10.0.jar, C:\Users\ptupakul\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.10.0\jackson-core-2.10.0.jar, C:\Users\ptupakul\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.10.1\jackson-databind-2.10.1.jar, C:\Users\ptupakul\.m2\repository\org\apache\thrift\libthrift\0.13.0\libthrift-0.13.0.jar, C:\Users\ptupakul\.m2\repository\org\apache\httpcomponents\httpcore\4.4.1\httpcore-4.4.1.jar, C:\Users\ptupakul\.m2\repository\javax\annotation\javax.annotation-api\1.3.2\javax.annotation-api-1.3.2.jar, C:\Users\ptupakul\.m2\repository\org\nuisto\mule-lint-maven-plugin\0.5.1\mule-lint-maven-plugin-0.5.1.jar, C:\Users\ptupakul\.m2\repository\org\apache\maven\maven-plugin-api\3.5.0\maven-plugin-api-3.5.0.jar, C:\Users\ptupakul\.m2\repository\org\apache\maven\maven-model\3.5.0\maven-model-3.5.0.jar, C:\Users\ptupakul\.m2\repository\org\codehaus\plexus\plexus-utils\3.0.24\plexus-utils-3.0.24.jar, C:\Users\ptupakul\.m2\repository\org\apache\maven\maven-artifact\3.5.0\maven-artifact-3.5.0.jar, C:\Users\ptupakul\.m2\repository\org\eclipse\sisu\org.eclipse.sisu.plexus\0.3.3\org.eclipse.sisu.plexus-0.3.3.jar, C:\Users\ptupakul\.m2\repository\javax\enterprise\cdi-api\1.0\cdi-api-1.0.jar, C:\Users\ptupakul\.m2\repository\javax\annotation\jsr250-api\1.0\jsr250-api-1.0.jar, C:\Users\ptupakul\.m2\repository\javax\inject\javax.inject\1\javax.inject-1.jar, C:\Users\ptupakul\.m2\repository\org\eclipse\sisu\org.eclipse.sisu.inject\0.3.3\org.eclipse.sisu.inject-0.3.3.jar, C:\Users\ptupakul\.m2\repository\org\codehaus\plexus\plexus-component-annotations\1.5.5\plexus-component-annotations-1.5.5.jar, C:\Users\ptupakul\.m2\repository\org\codehaus\plexus\plexus-classworlds\2.5.2\plexus-classworlds-2.5.2.jar, C:\Users\ptupakul\.m2\repository\org\nuisto\mule-lint\0.5.1\mule-lint-0.5.1.jar, C:\Users\ptupakul\.m2\repository\org\codehaus\groovy\groovy-all\2.4.4\groovy-all-2.4.4.jar, C:\Users\ptupakul\.m2\repository\commons-cli\commons-cli\1.4\commons-cli-1.4.jar, C:\Users\ptupakul\.m2\repository\org\apache\ant\ant\1.10.1\ant-1.10.1.jar, C:\Users\ptupakul\.m2\repository\org\apache\ant\ant-launcher\1.10.1\ant-launcher-1.10.1.jar, C:\Users\ptupakul\.m2\repository\org\slf4j\slf4j-api\1.7.25\slf4j-api-1.7.25.jar]
[DEBUG]   (f) compileSourceRoots = [C:\Users\ptupakul\Documents\WorkSpace\sampleproject\src\main\java]
[DEBUG]   (f) compilerId = javac
[DEBUG]   (f) debug = true
[DEBUG]   (f) encoding = UTF-8
[DEBUG]   (f) failOnError = true
[DEBUG]   (f) failOnWarning = false
[DEBUG]   (f) forceJavacCompilerUse = false
[DEBUG]   (f) fork = false
[DEBUG]   (f) generatedSourcesDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\generated-sources\annotations
[DEBUG]   (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile {execution: default-compile}
[DEBUG]   (f) optimize = false
[DEBUG]   (f) outputDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\classes
[DEBUG]   (f) parameters = false
[DEBUG]   (f) project = MavenProject: com.mycompany:sampleproject:1.0.0-SNAPSHOT @ C:\Users\ptupakul\Documents\WorkSpace\sampleproject\pom.xml
[DEBUG]   (f) projectArtifact = com.mycompany:sampleproject:mule-application:1.0.0-SNAPSHOT
[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@52fd482b
[DEBUG]   (f) showDeprecation = false
[DEBUG]   (f) showWarnings = false
[DEBUG]   (f) skipMultiThreadWarning = false
[DEBUG]   (f) source = 1.6
[DEBUG]   (f) staleMillis = 0
[DEBUG]   (s) target = 1.6
[DEBUG]   (f) useIncrementalCompilation = true
[DEBUG]   (f) verbose = false
[DEBUG] -- end configuration --
[DEBUG] Using compiler 'javac'.
[DEBUG] Adding C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\generated-sources\annotations to compile source roots:
  C:\Users\ptupakul\Documents\WorkSpace\sampleproject\src\main\java
[DEBUG] New compile source roots:
  C:\Users\ptupakul\Documents\WorkSpace\sampleproject\src\main\java
  C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target\generated-sources\annotations
[DEBUG] CompilerReuseStrategy: reuseCreated
[DEBUG] useIncrementalCompilation enabled
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- mule-maven-plugin:3.3.5:compile (default-compile) @ sampleproject ---
[DEBUG] Configuring mojo org.mule.tools.maven:mule-maven-plugin:3.3.5:compile from plugin realm ClassRealm[extension>org.mule.tools.maven:mule-maven-plugin:3.3.5, parent: org.eclipse.osgi.internal.loader.EquinoxClassLoader@19d92684[org.mule.tooling.maven.embedded:7.5.1.202005190111(id=444)]]
[DEBUG] Configuring mojo 'org.mule.tools.maven:mule-maven-plugin:3.3.5:compile' with basic configurator -->
[DEBUG]   (f) classifier = mule-application
[DEBUG]   (f) localRepository =       id: local
      url: file:///C:/Users/ptupakul/.m2/repository/
   layout: default
snapshots: [enabled => true, update => always]
 releases: [enabled => true, update => always]

[DEBUG]   (f) outputDirectory = C:\Users\ptupakul\Documents\WorkSpace\sampleproject\target
[DEBUG]   (s) project = MavenProject: com.mycompany:sampleproject:1.0.0-SNAPSHOT @ C:\Users\ptupakul\Documents\WorkSpace\sampleproject\pom.xml
[DEBUG]   (s) projectBaseFolder = C:\Users\ptupakul\Documents\WorkSpace\sampleproject
[DEBUG]   (f) remoteArtifactRepositories = [      id: anypoint-exchange-v2
      url: https://maven.anypoint.mulesoft.com/api/v2/maven
   layout: default
snapshots: [enabled => true, update => daily]
 releases: [enabled => true, update => daily]
,       id: mulesoft-releases
      url: https://repository.mulesoft.org/releases/
   layout: default
snapshots: [enabled => true, update => daily]
 releases: [enabled => true, update => daily]
,       id: central
      url: https://repo.maven.apache.org/maven2
   layout: default
snapshots: [enabled => false, update => daily]
 releases: [enabled => true, update => daily]
]
[DEBUG]   (s) session = org.apache.maven.execution.MavenSession@52fd482b
[DEBUG]   (f) sharedLibraries = []
[DEBUG] -- end configuration --
[DEBUG] Generating mule source code...
[INFO] 
[INFO] --- mule-lint-maven-plugin:0.5.1:analyze-mule (runit) @ sampleproject ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=25, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=20, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=0, ConflictResolver.conflictItemCount=25, DefaultDependencyCollector.collectTime=8, DefaultDependencyCollector.transformTime=0}
[DEBUG] org.nuisto:mule-lint-maven-plugin:jar:0.5.1:
[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.5.0:compile
[DEBUG]       org.apache.maven:maven-model:jar:3.5.0:compile
[DEBUG]          org.codehaus.plexus:plexus-utils:jar:3.0.24:compile
[DEBUG]       org.apache.maven:maven-artifact:jar:3.5.0:compile
[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.3:compile
[DEBUG]          javax.enterprise:cdi-api:jar:1.0:compile
[DEBUG]             javax.annotation:jsr250-api:jar:1.0:compile
[DEBUG]             javax.inject:javax.inject:jar:1:compile
[DEBUG]          org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.3:compile
[DEBUG]          org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile
[DEBUG]          org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile
[DEBUG]    org.nuisto:mule-lint:jar:0.5.1:compile
[DEBUG]       org.codehaus.groovy:groovy-all:jar:2.4.4:compile
[DEBUG]       commons-cli:commons-cli:jar:1.4:compile
[DEBUG]       org.apache.ant:ant:jar:1.10.1:compile
[DEBUG]          org.apache.ant:ant-launcher:jar:1.10.1:compile
[DEBUG]       org.slf4j:slf4j-simple:jar:1.7.25:compile
[DEBUG]       org.slf4j:slf4j-api:jar:1.7.25:compile
[DEBUG]       org.apache.commons:commons-lang3:jar:3.4:compile
[DEBUG] Created new class realm plugin>org.nuisto:mule-lint-maven-plugin:0.5.1
[DEBUG] Importing foreign packages into class realm plugin>org.nuisto:mule-lint-maven-plugin:0.5.1
[DEBUG]   Imported:  < project>com.mycompany:sampleproject:1.0.0-SNAPSHOT
[DEBUG] Populating class realm plugin>org.nuisto:mule-lint-maven-plugin:0.5.1
[DEBUG]   Included: org.nuisto:mule-lint-maven-plugin:jar:0.5.1
[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.24
[DEBUG]   Included: javax.enterprise:cdi-api:jar:1.0
[DEBUG]   Included: javax.annotation:jsr250-api:jar:1.0
[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.3
[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
[DEBUG]   Included: org.nuisto:mule-lint:jar:0.5.1
[DEBUG]   Included: org.codehaus.groovy:groovy-all:jar:2.4.4
[DEBUG]   Included: commons-cli:commons-cli:jar:1.4
[DEBUG]   Included: org.apache.ant:ant:jar:1.10.1
[DEBUG]   Included: org.apache.ant:ant-launcher:jar:1.10.1
[DEBUG]   Included: org.slf4j:slf4j-simple:jar:1.7.25
[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.4
[DEBUG] Configuring mojo org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule from plugin realm ClassRealm[plugin>org.nuisto:mule-lint-maven-plugin:0.5.1, parent: org.eclipse.osgi.internal.loader.EquinoxClassLoader@19d92684[org.mule.tooling.maven.embedded:7.5.1.202005190111(id=444)]]
[DEBUG] Configuring mojo 'org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule' with basic configurator -->
[DEBUG]   (f) dictionary = src/main/mule/dictionary.txt
[DEBUG]   (f) excludes = []
[DEBUG]   (f) output = src/main/mule/results.json
[DEBUG]   (f) rules = src/main/mule/rules.txt
[DEBUG]   (f) sources = src/main/mule
[DEBUG] -- end configuration --
[DEBUG] Dictionary is src/main/mule/dictionary.txt
[DEBUG] Rules are src/main/mule/rules.txt
[DEBUG] Sources are src/main/mule
[DEBUG] Output is src/main/mule/results.json
[DEBUG] Excludes is []
[DEBUG] Fail build is false
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 37.248 s
[INFO] Finished at: 2020-08-10T15:39:36+05:30
[INFO] Final Memory: 151M/512M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule (runit) on project sampleproject: Execution runit of goal org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule failed: A required class was missing while executing org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule: org/slf4j/event/LoggingEvent
[ERROR] -----------------------------------------------------
[ERROR] realm =    plugin>org.nuisto:mule-lint-maven-plugin:0.5.1
[ERROR] strategy = org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy
[ERROR] urls[0] = file:/C:/Users/ptupakul/.m2/repository/org/nuisto/mule-lint-maven-plugin/0.5.1/mule-lint-maven-plugin-0.5.1.jar
[ERROR] urls[1] = file:/C:/Users/ptupakul/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar
[ERROR] urls[2] = file:/C:/Users/ptupakul/.m2/repository/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar
[ERROR] urls[3] = file:/C:/Users/ptupakul/.m2/repository/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar
[ERROR] urls[4] = file:/C:/Users/ptupakul/.m2/repository/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.3/org.eclipse.sisu.inject-0.3.3.jar
[ERROR] urls[5] = file:/C:/Users/ptupakul/.m2/repository/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar
[ERROR] urls[6] = file:/C:/Users/ptupakul/.m2/repository/org/nuisto/mule-lint/0.5.1/mule-lint-0.5.1.jar
[ERROR] urls[7] = file:/C:/Users/ptupakul/.m2/repository/org/codehaus/groovy/groovy-all/2.4.4/groovy-all-2.4.4.jar
[ERROR] urls[8] = file:/C:/Users/ptupakul/.m2/repository/commons-cli/commons-cli/1.4/commons-cli-1.4.jar
[ERROR] urls[9] = file:/C:/Users/ptupakul/.m2/repository/org/apache/ant/ant/1.10.1/ant-1.10.1.jar
[ERROR] urls[10] = file:/C:/Users/ptupakul/.m2/repository/org/apache/ant/ant-launcher/1.10.1/ant-launcher-1.10.1.jar
[ERROR] urls[11] = file:/C:/Users/ptupakul/.m2/repository/org/slf4j/slf4j-simple/1.7.25/slf4j-simple-1.7.25.jar
[ERROR] urls[12] = file:/C:/Users/ptupakul/.m2/repository/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar
[ERROR] Number of foreign imports: 1
[ERROR] import: Entry[import  from realm ClassRealm[project>com.mycompany:sampleproject:1.0.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]]
[ERROR] 
[ERROR] -----------------------------------------------------: org.slf4j.event.LoggingEvent cannot be found by org.mule.tooling.maven.embedded_7.5.1.202005190111
[ERROR] -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule (runit) on project sampleproject: Execution runit of goal org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule failed: A required class was missing while executing org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule: org/slf4j/event/LoggingEvent
-----------------------------------------------------
realm =    plugin>org.nuisto:mule-lint-maven-plugin:0.5.1
strategy = org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy
urls[0] = file:/C:/Users/ptupakul/.m2/repository/org/nuisto/mule-lint-maven-plugin/0.5.1/mule-lint-maven-plugin-0.5.1.jar
urls[1] = file:/C:/Users/ptupakul/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar
urls[2] = file:/C:/Users/ptupakul/.m2/repository/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar
urls[3] = file:/C:/Users/ptupakul/.m2/repository/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar
urls[4] = file:/C:/Users/ptupakul/.m2/repository/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.3/org.eclipse.sisu.inject-0.3.3.jar
urls[5] = file:/C:/Users/ptupakul/.m2/repository/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar
urls[6] = file:/C:/Users/ptupakul/.m2/repository/org/nuisto/mule-lint/0.5.1/mule-lint-0.5.1.jar
urls[7] = file:/C:/Users/ptupakul/.m2/repository/org/codehaus/groovy/groovy-all/2.4.4/groovy-all-2.4.4.jar
urls[8] = file:/C:/Users/ptupakul/.m2/repository/commons-cli/commons-cli/1.4/commons-cli-1.4.jar
urls[9] = file:/C:/Users/ptupakul/.m2/repository/org/apache/ant/ant/1.10.1/ant-1.10.1.jar
urls[10] = file:/C:/Users/ptupakul/.m2/repository/org/apache/ant/ant-launcher/1.10.1/ant-launcher-1.10.1.jar
urls[11] = file:/C:/Users/ptupakul/.m2/repository/org/slf4j/slf4j-simple/1.7.25/slf4j-simple-1.7.25.jar
urls[12] = file:/C:/Users/ptupakul/.m2/repository/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar
Number of foreign imports: 1
import: Entry[import  from realm ClassRealm[project>com.mycompany:sampleproject:1.0.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]]

-----------------------------------------------------

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)
    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)
    at org.mule.tooling.maven.embedded.runner.MavenBuildRunnable.run(MavenBuildRunnable.java:81)
    at java.lang.Thread.run(Thread.java:748)
    at org.mule.tooling.maven.embedded.runner.EmbeddedMavenRunner$1.run(EmbeddedMavenRunner.java:54)
Caused by: org.apache.maven.plugin.PluginExecutionException: Execution runit of goal org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule failed: A required class was missing while executing org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule: org/slf4j/event/LoggingEvent
-----------------------------------------------------
realm =    plugin>org.nuisto:mule-lint-maven-plugin:0.5.1
strategy = org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy
urls[0] = file:/C:/Users/ptupakul/.m2/repository/org/nuisto/mule-lint-maven-plugin/0.5.1/mule-lint-maven-plugin-0.5.1.jar
urls[1] = file:/C:/Users/ptupakul/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar
urls[2] = file:/C:/Users/ptupakul/.m2/repository/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar
urls[3] = file:/C:/Users/ptupakul/.m2/repository/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar
urls[4] = file:/C:/Users/ptupakul/.m2/repository/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.3/org.eclipse.sisu.inject-0.3.3.jar
urls[5] = file:/C:/Users/ptupakul/.m2/repository/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar
urls[6] = file:/C:/Users/ptupakul/.m2/repository/org/nuisto/mule-lint/0.5.1/mule-lint-0.5.1.jar
urls[7] = file:/C:/Users/ptupakul/.m2/repository/org/codehaus/groovy/groovy-all/2.4.4/groovy-all-2.4.4.jar
urls[8] = file:/C:/Users/ptupakul/.m2/repository/commons-cli/commons-cli/1.4/commons-cli-1.4.jar
urls[9] = file:/C:/Users/ptupakul/.m2/repository/org/apache/ant/ant/1.10.1/ant-1.10.1.jar
urls[10] = file:/C:/Users/ptupakul/.m2/repository/org/apache/ant/ant-launcher/1.10.1/ant-launcher-1.10.1.jar
urls[11] = file:/C:/Users/ptupakul/.m2/repository/org/slf4j/slf4j-simple/1.7.25/slf4j-simple-1.7.25.jar
urls[12] = file:/C:/Users/ptupakul/.m2/repository/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar
Number of foreign imports: 1
import: Entry[import  from realm ClassRealm[project>com.mycompany:sampleproject:1.0.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]]

-----------------------------------------------------

    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:168)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207)
    ... 14 more
Caused by: org.apache.maven.plugin.PluginContainerException: A required class was missing while executing org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule: org/slf4j/event/LoggingEvent
-----------------------------------------------------
realm =    plugin>org.nuisto:mule-lint-maven-plugin:0.5.1
strategy = org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy
urls[0] = file:/C:/Users/ptupakul/.m2/repository/org/nuisto/mule-lint-maven-plugin/0.5.1/mule-lint-maven-plugin-0.5.1.jar
urls[1] = file:/C:/Users/ptupakul/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar
urls[2] = file:/C:/Users/ptupakul/.m2/repository/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar
urls[3] = file:/C:/Users/ptupakul/.m2/repository/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar
urls[4] = file:/C:/Users/ptupakul/.m2/repository/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.3/org.eclipse.sisu.inject-0.3.3.jar
urls[5] = file:/C:/Users/ptupakul/.m2/repository/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar
urls[6] = file:/C:/Users/ptupakul/.m2/repository/org/nuisto/mule-lint/0.5.1/mule-lint-0.5.1.jar
urls[7] = file:/C:/Users/ptupakul/.m2/repository/org/codehaus/groovy/groovy-all/2.4.4/groovy-all-2.4.4.jar
urls[8] = file:/C:/Users/ptupakul/.m2/repository/commons-cli/commons-cli/1.4/commons-cli-1.4.jar
urls[9] = file:/C:/Users/ptupakul/.m2/repository/org/apache/ant/ant/1.10.1/ant-1.10.1.jar
urls[10] = file:/C:/Users/ptupakul/.m2/repository/org/apache/ant/ant-launcher/1.10.1/ant-launcher-1.10.1.jar
urls[11] = file:/C:/Users/ptupakul/.m2/repository/org/slf4j/slf4j-simple/1.7.25/slf4j-simple-1.7.25.jar
urls[12] = file:/C:/Users/ptupakul/.m2/repository/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar
Number of foreign imports: 1
import: Entry[import  from realm ClassRealm[project>com.mycompany:sampleproject:1.0.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]]

-----------------------------------------------------

    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:166)
    ... 15 more
Caused by: java.lang.NoClassDefFoundError: org/slf4j/event/LoggingEvent
    at java.lang.Class.getDeclaredMethods0(Native Method)
    at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)
    at java.lang.Class.privateGetPublicMethods(Class.java:2902)
    at java.lang.Class.getMethods(Class.java:1615)
    at java.beans.Introspector.getPublicDeclaredMethods(Introspector.java:1336)
    at java.beans.Introspector.getTargetMethodInfo(Introspector.java:1197)
    at java.beans.Introspector.getBeanInfo(Introspector.java:426)
    at java.beans.Introspector.getBeanInfo(Introspector.java:173)
    at groovy.lang.MetaClassImpl$15.run(MetaClassImpl.java:3292)
    at java.security.AccessController.doPrivileged(Native Method)
    at groovy.lang.MetaClassImpl.addProperties(MetaClassImpl.java:3290)
    at groovy.lang.MetaClassImpl.initialize(MetaClassImpl.java:3266)
    at org.codehaus.groovy.reflection.ClassInfo.getMetaClassUnderLock(ClassInfo.java:254)
    at org.codehaus.groovy.reflection.ClassInfo.getMetaClass(ClassInfo.java:285)
    at org.codehaus.groovy.reflection.ClassInfo.getMetaClass(ClassInfo.java:295)
    at org.codehaus.groovy.runtime.metaclass.MetaClassRegistryImpl.getMetaClass(MetaClassRegistryImpl.java:261)
    at org.codehaus.groovy.runtime.InvokerHelper.getMetaClass(InvokerHelper.java:871)
    at org.codehaus.groovy.runtime.callsite.CallSiteArray.createPojoSite(CallSiteArray.java:125)
    at org.codehaus.groovy.runtime.callsite.CallSiteArray.createCallSite(CallSiteArray.java:166)
    at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:48)
    at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:113)
    at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:117)
    at org.nuisto.Runner.runWithModel(Runner.groovy:23)
    at org.nuisto.Runner$runWithModel.call(Unknown Source)
    at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:48)
    at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:113)
    at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:125)
    at org.nuisto.MuleLint.runWithModel(MuleLint.groovy:99)
    at org.nuisto.MuleLint$runWithModel.callCurrent(Unknown Source)
    at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCallCurrent(CallSiteArray.java:52)
    at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callCurrent(AbstractCallSite.java:154)
    at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callCurrent(AbstractCallSite.java:166)
    at org.nuisto.MuleLint.invoke(MuleLint.groovy:95)
    at org.nuisto.AnalysisMojo.execute(AnalysisMojo.java:41)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
    ... 15 more
Caused by: java.lang.ClassNotFoundException: org.slf4j.event.LoggingEvent cannot be found by org.mule.tooling.maven.embedded_7.5.1.202005190111
    at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:514)
    at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:425)
    at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:417)
    at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:155)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
    ... 50 more
[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/PluginContainerException
ptupakul commented 4 years ago

After that I am trying to build the example-mule-lint-project Using Mule-4.3EE runtime, I got this output logs..

Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T22:11:47+05:30)
Maven home: <unknown Maven home>
Java version: 1.8.0_232, vendor: AdoptOpenJDK
Java home: C:\Users\ptupakul\Documents\AnypointStudio\plugins\org.mule.tooling.jdk.win32.x86_64_1.0.0.202004281356\jre
Default locale: en_US, platform encoding: UTF-8
OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[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.slf4j.* < 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] Reading global settings from C:\Users\ptupakul\Documents\AnypointStudio\conf\settings.xml
[DEBUG] Reading user settings from C:\Users\ptupakul\Documents\AnypointStudio\configuration\org.eclipse.osgi\430\data\settings.xml
[DEBUG] Reading global toolchains from C:\Users\ptupakul\Documents\AnypointStudio\conf\toolchains.xml
[DEBUG] Reading user toolchains from C:\Users\ptupakul\.m2\toolchains.xml
[DEBUG] Using local repository at C:\Users\ptupakul\.m2\repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\ptupakul\.m2\repository
[INFO] Scanning for projects...
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=99, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=36, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=88, DefaultDependencyCollector.collectTime=534, DefaultDependencyCollector.transformTime=1}
[DEBUG] org.mule.tools.maven:mule-app-maven-plugin:jar:1.2:
[DEBUG]    org.jfrog.maven.annomojo:maven-plugin-tools-anno:jar:1.4.0:compile
[DEBUG]       org.jfrog.maven.annomojo:maven-plugin-anno:jar:1.4.0:compile
[DEBUG]       org.apache.maven.plugin-tools:maven-plugin-tools-api:jar:2.6:compile
[DEBUG]          org.apache.maven:maven-plugin-api:jar:2.0.6:compile
[DEBUG]          org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile
[DEBUG]             org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile
[DEBUG]          jtidy:jtidy:jar:4aug2000r7-dev:compile
[DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile
[DEBUG]       com.sun:tools:jar:1.5.0:system
[DEBUG]    org.codehaus.plexus:plexus-archiver:jar:2.0.1:compile
[DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[DEBUG]          junit:junit:jar:3.8.1:compile
[DEBUG]          classworlds:classworlds:jar:1.1-alpha-2:compile
[DEBUG]       org.codehaus.plexus:plexus-utils:jar:3.0:compile
[DEBUG]       org.codehaus.plexus:plexus-io:jar:2.0.1:compile
[DEBUG]    org.apache.maven.shared:maven-filtering:jar:1.0:compile
[DEBUG]       org.apache.maven:maven-project:jar:2.0.6:compile
[DEBUG]          org.apache.maven:maven-profile:jar:2.0.6:compile
[DEBUG]          org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
[DEBUG]          org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
[DEBUG]       org.apache.maven:maven-core:jar:2.0.6:compile
[DEBUG]          org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile
[DEBUG]          org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
[DEBUG]          org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile
[DEBUG]          commons-cli:commons-cli:jar:1.0:compile
[DEBUG]          org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
[DEBUG]       org.apache.maven:maven-model:jar:2.0.6:compile
[DEBUG]       org.apache.maven:maven-artifact:jar:2.0.6:compile
[DEBUG]       org.apache.maven:maven-monitor:jar:2.0.6:compile
[DEBUG]       org.apache.maven:maven-settings:jar:2.0.6:compile
[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.12:compile
[DEBUG]       org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
[DEBUG]    org.slf4j:slf4j-simple:jar:1.6.6:compile
[DEBUG]       org.slf4j:slf4j-api:jar:1.6.6:compile
[DEBUG]    org.mule.tools:mule-artifact-archiver:jar:1.1:compile
[DEBUG] Created new class realm extension>org.mule.tools.maven:mule-app-maven-plugin:1.2
[DEBUG] Importing foreign packages into class realm extension>org.mule.tools.maven:mule-app-maven-plugin:1.2
[DEBUG]   Imported:  < maven.api
[DEBUG] Populating class realm extension>org.mule.tools.maven:mule-app-maven-plugin:1.2
[DEBUG]   Included: org.mule.tools.maven:mule-app-maven-plugin:jar:1.2
[DEBUG]   Included: org.jfrog.maven.annomojo:maven-plugin-tools-anno:jar:1.4.0
[DEBUG]   Included: org.jfrog.maven.annomojo:maven-plugin-anno:jar:1.4.0
[DEBUG]   Included: org.apache.maven.plugin-tools:maven-plugin-tools-api:jar:2.6
[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6
[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7
[DEBUG]   Included: jtidy:jtidy:jar:4aug2000r7-dev
[DEBUG]   Included: com.sun:tools:jar:1.5.0
[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:2.0.1
[DEBUG]   Included: junit:junit:jar:3.8.1
[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0
[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:2.0.1
[DEBUG]   Included: org.apache.maven.shared:maven-filtering:jar:1.0
[DEBUG]   Included: commons-cli:commons-cli:jar:1.0
[DEBUG]   Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.12
[DEBUG]   Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
[DEBUG]   Included: org.slf4j:slf4j-simple:jar:1.6.6
[DEBUG]   Included: org.mule.tools:mule-artifact-archiver:jar:1.1
[DEBUG] Extension realms for project com.acme.integration:mule-lint-project-example:mule:1.0.0-SNAPSHOT: [ClassRealm[extension>org.mule.tools.maven:mule-app-maven-plugin:1.2, parent: org.eclipse.osgi.internal.loader.EquinoxClassLoader@19d92684[org.mule.tooling.maven.embedded:7.5.1.202005190111(id=444)]]]
[DEBUG] Created new class realm project>com.acme.integration:mule-lint-project-example:1.0.0-SNAPSHOT
[DEBUG] Populating class realm project>com.acme.integration:mule-lint-project-example:1.0.0-SNAPSHOT
[DEBUG] Looking up lifecyle mappings for packaging mule from ClassRealm[project>com.acme.integration:mule-lint-project-example:1.0.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: com.acme.integration:mule-lint-project-example:mule:1.0.0-SNAPSHOT
[DEBUG] Tasks:   [clean, compile]
[DEBUG] Style:   Regular
[DEBUG] =======================================================================
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building Mule Application 1.0.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[DEBUG] Resolving plugin version for org.apache.maven.plugins:maven-resources-plugin
[DEBUG] Failure to find org.apache.maven.plugins:maven-resources-plugin/maven-metadata.xml in http://repository.mulesoft.org/releases/ was cached in the local repository, resolution will not be reattempted until the update interval of mulesoft-release has elapsed or updates are forced
[DEBUG] Skipped remote request for org.apache.maven.plugins:maven-resources-plugin/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-resources-plugin to 3.0.2 from repository C:\Users\ptupakul\.m2\repository (enhanced)
[DEBUG] Resolving plugin version for org.apache.maven.plugins:maven-surefire-plugin
[DEBUG] Skipped remote request for org.apache.maven.plugins:maven-surefire-plugin/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Skipped remote request for org.apache.maven.plugins:maven-surefire-plugin/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-surefire-plugin to 2.19.1 from repository C:\Users\ptupakul\.m2\repository (enhanced)
[DEBUG] Resolving plugin version for org.apache.maven.plugins:maven-install-plugin
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml in local (C:\Users\ptupakul\.m2\repository)
[DEBUG] Failure to find org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml in http://repository.mulesoft.org/releases/ was cached in the local repository, resolution will not be reattempted until the update interval of mulesoft-release has elapsed or updates are forced
[DEBUG] Skipped remote request for org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-install-plugin to 3.0.0-M1 from repository central (https://repo.maven.apache.org/maven2, default, releases)
[DEBUG] Resolving plugin version for org.apache.maven.plugins:maven-deploy-plugin
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml in local (C:\Users\ptupakul\.m2\repository)
[DEBUG] Failure to find org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml in http://repository.mulesoft.org/releases/ was cached in the local repository, resolution will not be reattempted until the update interval of mulesoft-release has elapsed or updates are forced
[DEBUG] Skipped remote request for org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-deploy-plugin to 3.0.0-M1 from repository central (https://repo.maven.apache.org/maven2, default, releases)
[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.acme.integration:mule-lint-project-example:1.0.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile]
[DEBUG] Repositories (dependencies): [Central (http://repo1.maven.org/maven2/, default, releases+snapshots), mulesoft-releases (http://repository.mulesoft.org/releases/, default, releases+snapshots), mule-ee-releases (https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins)     : [mulesoft-release (http://repository.mulesoft.org/releases/, default, releases), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5: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">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
  <outputDirectory default-value="${project.build.outputDirectory}"/>
  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
  <skip default-value="false">${clean.skip}</skip>
  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
  <verbose>${clean.verbose}</verbose>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.mule.tools.maven:mule-app-maven-plugin:1.2:attach-test-resources (default-attach-test-resources)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <apiDirectory>${basedir}/src/main/api</apiDirectory>
  <appDirectory>${basedir}/src/main/app</appDirectory>
  <finalName default-value="${project.build.finalName}">${appName}</finalName>
  <mappingsDirectory>${basedir}/mappings</mappingsDirectory>
  <outputDirectory>${project.build.directory}</outputDirectory>
  <project>${project}</project>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.codehaus.mojo:build-helper-maven-plugin:1.7:add-resource (add-resource)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <project>${project}</project>
  <resources>
    <resource>
      <directory>src/main/app/</directory>
    </resource>
    <resource>
      <directory>src/main/api/</directory>
    </resource>
    <resource>
      <directory>mappings/</directory>
    </resource>
  </resources>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:3.0.2: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}"/>
  <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}"/>
  <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"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.mule.tools.maven:mule-app-maven-plugin:1.2:filter-resources (default-filter-resources)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <apiDirectory>${basedir}/src/main/api</apiDirectory>
  <appDirectory>${basedir}/src/main/app</appDirectory>
  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
  <escapeWindowsPaths default-value="true"/>
  <filterAppDirectory default-value="false"/>
  <filters default-value="${project.build.filters}"/>
  <finalName default-value="${project.build.finalName}">${appName}</finalName>
  <mappingsDirectory>${basedir}/mappings</mappingsDirectory>
  <outputDirectory>${project.build.directory}</outputDirectory>
  <project>${project}</project>
  <session default-value="${session}"/>
  <supportMultiLineFiltering default-value="false"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-compiler-plugin:3.6.2:compile (default-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">${maven.compiler.parameters}</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.5">1.8</source>
  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
  <target default-value="1.5">1.8</target>
  <useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
  <verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.nuisto:mule-lint-maven-plugin:0.5.1:analyze-mule (runit)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <dictionary>dictionary.txt</dictionary>
  <excludes>${analyze-mule.excludes}</excludes>
  <failBuild>${analyze-mule.fail-build}</failBuild>
  <output>results.json</output>
  <rules>rules.txt</rules>
  <sources>src/main/app</sources>
</configuration>
[DEBUG] =======================================================================
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/com/mulesoft/muleesb/mule-core-ee/3.8.4/mule-core-ee-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\com\mulesoft\muleesb\mule-core-ee\3.8.4\mule-core-ee-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/com/mulesoft/muleesb/mule-core-ee/3.8.4/mule-core-ee-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\com\mulesoft\muleesb\mule-core-ee\3.8.4\mule-core-ee-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/com/mulesoft/muleesb/modules/mule-module-spring-config-ee/3.8.4/mule-module-spring-config-ee-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\com\mulesoft\muleesb\modules\mule-module-spring-config-ee\3.8.4\mule-module-spring-config-ee-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/com/mulesoft/muleesb/modules/mule-module-spring-config-ee/3.8.4/mule-module-spring-config-ee-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\com\mulesoft\muleesb\modules\mule-module-spring-config-ee\3.8.4\mule-module-spring-config-ee-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/org/mule/transports/mule-transport-file/3.8.4/mule-transport-file-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\transports\mule-transport-file\3.8.4\mule-transport-file-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/org/mule/transports/mule-transport-file/3.8.4/mule-transport-file-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\transports\mule-transport-file\3.8.4\mule-transport-file-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/org/mule/transports/mule-transport-http/3.8.4/mule-transport-http-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\transports\mule-transport-http\3.8.4\mule-transport-http-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/org/mule/transports/mule-transport-http/3.8.4/mule-transport-http-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\transports\mule-transport-http\3.8.4\mule-transport-http-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/com/mulesoft/muleesb/transports/mule-transport-jdbc-ee/3.8.4/mule-transport-jdbc-ee-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\com\mulesoft\muleesb\transports\mule-transport-jdbc-ee\3.8.4\mule-transport-jdbc-ee-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/com/mulesoft/muleesb/transports/mule-transport-jdbc-ee/3.8.4/mule-transport-jdbc-ee-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\com\mulesoft\muleesb\transports\mule-transport-jdbc-ee\3.8.4\mule-transport-jdbc-ee-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/com/mulesoft/muleesb/transports/mule-transport-jms-ee/3.8.4/mule-transport-jms-ee-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\com\mulesoft\muleesb\transports\mule-transport-jms-ee\3.8.4\mule-transport-jms-ee-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/com/mulesoft/muleesb/transports/mule-transport-jms-ee/3.8.4/mule-transport-jms-ee-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\com\mulesoft\muleesb\transports\mule-transport-jms-ee\3.8.4\mule-transport-jms-ee-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/org/mule/transports/mule-transport-vm/3.8.4/mule-transport-vm-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\transports\mule-transport-vm\3.8.4\mule-transport-vm-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/org/mule/transports/mule-transport-vm/3.8.4/mule-transport-vm-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\transports\mule-transport-vm\3.8.4\mule-transport-vm-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/org/mule/modules/mule-module-scripting/3.8.4/mule-module-scripting-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\modules\mule-module-scripting\3.8.4\mule-module-scripting-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/org/mule/modules/mule-module-scripting/3.8.4/mule-module-scripting-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\modules\mule-module-scripting\3.8.4\mule-module-scripting-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/org/mule/modules/mule-module-xml/3.8.4/mule-module-xml-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\modules\mule-module-xml\3.8.4\mule-module-xml-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/org/mule/modules/mule-module-xml/3.8.4/mule-module-xml-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\modules\mule-module-xml\3.8.4\mule-module-xml-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/org/mule/tests/mule-tests-functional/3.8.4/mule-tests-functional-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\tests\mule-tests-functional\3.8.4\mule-tests-functional-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/org/mule/tests/mule-tests-functional/3.8.4/mule-tests-functional-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\tests\mule-tests-functional\3.8.4\mule-tests-functional-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/org/mule/modules/mule-module-http/3.8.4/mule-module-http-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\modules\mule-module-http\3.8.4\mule-module-http-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/org/mule/modules/mule-module-http/3.8.4/mule-module-http-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\modules\mule-module-http\3.8.4\mule-module-http-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/org/mule/modules/mule-module-spring-config/3.8.4/mule-module-spring-config-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\modules\mule-module-spring-config\3.8.4\mule-module-spring-config-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/org/mule/modules/mule-module-spring-config/3.8.4/mule-module-spring-config-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\modules\mule-module-spring-config\3.8.4\mule-module-spring-config-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/com/mulesoft/weave/mule-plugin-weave/3.8.4/mule-plugin-weave-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\com\mulesoft\weave\mule-plugin-weave\3.8.4\mule-plugin-weave-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/com/mulesoft/weave/mule-plugin-weave/3.8.4/mule-plugin-weave-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\com\mulesoft\weave\mule-plugin-weave\3.8.4\mule-plugin-weave-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/org/mule/modules/mule-module-json/3.8.4/mule-module-json-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\modules\mule-module-json\3.8.4\mule-module-json-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/org/mule/modules/mule-module-json/3.8.4/mule-module-json-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\modules\mule-module-json\3.8.4\mule-module-json-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/org/mule/transports/mule-transport-email/3.8.4/mule-transport-email-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\transports\mule-transport-email\3.8.4\mule-transport-email-3.8.4.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/
Downloading: https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/org/mule/transports/mule-transport-email/3.8.4/mule-transport-email-3.8.4.pom

[DEBUG] Writing tracking file C:\Users\ptupakul\.m2\repository\org\mule\transports\mule-transport-email\3.8.4\mule-transport-email-3.8.4.pom.lastUpdated
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=304, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=1, ConflictIdSorter.conflictIdCount=122, ConflictIdSorter.conflictIdCycleCount=1, ConflictResolver.totalTime=2, ConflictResolver.conflictItemCount=150, DefaultDependencyCollector.collectTime=29500, DefaultDependencyCollector.transformTime=3}
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 30.404 s
[INFO] Finished at: 2020-08-10T15:55:32+05:30
[INFO] Final Memory: 170M/512M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project mule-lint-project-example: Could not resolve dependencies for project com.acme.integration:mule-lint-project-example:mule:1.0.0-SNAPSHOT: Failed to collect dependencies at com.mulesoft.muleesb:mule-core-ee:jar:3.8.4: Failed to read artifact descriptor for com.mulesoft.muleesb:mule-core-ee:jar:3.8.4: Could not transfer artifact com.mulesoft.muleesb:mule-core-ee:pom:3.8.4 from/to Central (http://repo1.maven.org/maven2/): Error transferring file: Server returned HTTP response code: 501 for URL: http://repo1.maven.org/maven2/com/mulesoft/muleesb/mule-core-ee/3.8.4/mule-core-ee-3.8.4.pom from http://repo1.maven.org/maven2/com/mulesoft/muleesb/mule-core-ee/3.8.4/mule-core-ee-3.8.4.pom -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal on project mule-lint-project-example: Could not resolve dependencies for project com.acme.integration:mule-lint-project-example:mule:1.0.0-SNAPSHOT: Failed to collect dependencies at com.mulesoft.muleesb:mule-core-ee:jar:3.8.4
    at org.apache.maven.lifecycle.internal.LifecycleDependencyResolver.getDependencies(LifecycleDependencyResolver.java:221)
    at org.apache.maven.lifecycle.internal.LifecycleDependencyResolver.resolveProjectDependencies(LifecycleDependencyResolver.java:127)
    at org.apache.maven.lifecycle.internal.MojoExecutor.ensureDependenciesAreResolved(MojoExecutor.java:245)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:199)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)
    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)
    at org.mule.tooling.maven.embedded.runner.MavenBuildRunnable.run(MavenBuildRunnable.java:81)
    at java.lang.Thread.run(Thread.java:748)
    at org.mule.tooling.maven.embedded.runner.EmbeddedMavenRunner$1.run(EmbeddedMavenRunner.java:54)
Caused by: org.apache.maven.project.DependencyResolutionException: Could not resolve dependencies for project com.acme.integration:mule-lint-project-example:mule:1.0.0-SNAPSHOT: Failed to collect dependencies at com.mulesoft.muleesb:mule-core-ee:jar:3.8.4
    at org.apache.maven.project.DefaultProjectDependenciesResolver.resolve(DefaultProjectDependenciesResolver.java:180)
    at org.apache.maven.lifecycle.internal.LifecycleDependencyResolver.getDependencies(LifecycleDependencyResolver.java:195)
    ... 17 more
Caused by: org.eclipse.aether.collection.DependencyCollectionException: Failed to collect dependencies at com.mulesoft.muleesb:mule-core-ee:jar:3.8.4
    at org.eclipse.aether.internal.impl.DefaultDependencyCollector.collectDependencies(DefaultDependencyCollector.java:291)
    at org.eclipse.aether.internal.impl.DefaultRepositorySystem.collectDependencies(DefaultRepositorySystem.java:316)
    at org.apache.maven.project.DefaultProjectDependenciesResolver.resolve(DefaultProjectDependenciesResolver.java:172)
    ... 18 more
Caused by: org.eclipse.aether.resolution.ArtifactDescriptorException: Failed to read artifact descriptor for com.mulesoft.muleesb:mule-core-ee:jar:3.8.4
    at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.loadPom(DefaultArtifactDescriptorReader.java:282)
    at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.readArtifactDescriptor(DefaultArtifactDescriptorReader.java:198)
    at org.eclipse.aether.internal.impl.DefaultDependencyCollector.resolveCachedArtifactDescriptor(DefaultDependencyCollector.java:535)
    at org.eclipse.aether.internal.impl.DefaultDependencyCollector.getArtifactDescriptorResult(DefaultDependencyCollector.java:519)
    at org.eclipse.aether.internal.impl.DefaultDependencyCollector.processDependency(DefaultDependencyCollector.java:409)
    at org.eclipse.aether.internal.impl.DefaultDependencyCollector.processDependency(DefaultDependencyCollector.java:363)
    at org.eclipse.aether.internal.impl.DefaultDependencyCollector.process(DefaultDependencyCollector.java:351)
    at org.eclipse.aether.internal.impl.DefaultDependencyCollector.collectDependencies(DefaultDependencyCollector.java:254)
    ... 20 more
Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Could not transfer artifact com.mulesoft.muleesb:mule-core-ee:pom:3.8.4 from/to Central (http://repo1.maven.org/maven2/): Error transferring file: Server returned HTTP response code: 501 for URL: http://repo1.maven.org/maven2/com/mulesoft/muleesb/mule-core-ee/3.8.4/mule-core-ee-3.8.4.pom from http://repo1.maven.org/maven2/com/mulesoft/muleesb/mule-core-ee/3.8.4/mule-core-ee-3.8.4.pom
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:444)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts(DefaultArtifactResolver.java:246)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact(DefaultArtifactResolver.java:223)
    at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.loadPom(DefaultArtifactDescriptorReader.java:267)
    ... 27 more
Caused by: org.eclipse.aether.transfer.ArtifactTransferException: Could not transfer artifact com.mulesoft.muleesb:mule-core-ee:pom:3.8.4 from/to Central (http://repo1.maven.org/maven2/): Error transferring file: Server returned HTTP response code: 501 for URL: http://repo1.maven.org/maven2/com/mulesoft/muleesb/mule-core-ee/3.8.4/mule-core-ee-3.8.4.pom from http://repo1.maven.org/maven2/com/mulesoft/muleesb/mule-core-ee/3.8.4/mule-core-ee-3.8.4.pom
    at org.eclipse.aether.connector.basic.ArtifactTransportListener.transferFailed(ArtifactTransportListener.java:43)
    at org.eclipse.aether.connector.basic.BasicRepositoryConnector$TaskRunner.run(BasicRepositoryConnector.java:355)
    at org.eclipse.aether.util.concurrency.RunnableErrorForwarder$1.run(RunnableErrorForwarder.java:67)
    at org.eclipse.aether.connector.basic.BasicRepositoryConnector$DirectExecutor.execute(BasicRepositoryConnector.java:581)
    at org.eclipse.aether.connector.basic.BasicRepositoryConnector.get(BasicRepositoryConnector.java:249)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.performDownloads(DefaultArtifactResolver.java:520)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:421)
    ... 30 more
Caused by: org.apache.maven.wagon.TransferFailedException: Error transferring file: Server returned HTTP response code: 501 for URL: http://repo1.maven.org/maven2/com/mulesoft/muleesb/mule-core-ee/3.8.4/mule-core-ee-3.8.4.pom from http://repo1.maven.org/maven2/com/mulesoft/muleesb/mule-core-ee/3.8.4/mule-core-ee-3.8.4.pom
    at org.apache.maven.wagon.providers.http.LightweightHttpWagon.fillInputData(LightweightHttpWagon.java:174)
    at org.apache.maven.wagon.StreamWagon.getInputStream(StreamWagon.java:116)
    at org.apache.maven.wagon.StreamWagon.getIfNewer(StreamWagon.java:88)
    at org.apache.maven.wagon.StreamWagon.get(StreamWagon.java:61)
    at org.eclipse.aether.transport.wagon.WagonTransporter$GetTaskRunner.run(WagonTransporter.java:560)
    at org.eclipse.aether.transport.wagon.WagonTransporter.execute(WagonTransporter.java:427)
    at org.eclipse.aether.transport.wagon.WagonTransporter.get(WagonTransporter.java:404)
    at org.eclipse.aether.connector.basic.BasicRepositoryConnector$GetTaskRunner.runTask(BasicRepositoryConnector.java:447)
    at org.eclipse.aether.connector.basic.BasicRepositoryConnector$TaskRunner.run(BasicRepositoryConnector.java:350)
    ... 35 more
Caused by: java.io.IOException: Server returned HTTP response code: 501 for URL: http://repo1.maven.org/maven2/com/mulesoft/muleesb/mule-core-ee/3.8.4/mule-core-ee-3.8.4.pom
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
    at sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1950)
    at sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1945)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1944)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1514)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1498)
    at org.apache.maven.wagon.providers.http.LightweightHttpWagon.fillInputData(LightweightHttpWagon.java:144)
    ... 43 more
Caused by: java.io.IOException: Server returned HTTP response code: 501 for URL: http://repo1.maven.org/maven2/com/mulesoft/muleesb/mule-core-ee/3.8.4/mule-core-ee-3.8.4.pom
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1900)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1498)
    at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)
    at org.apache.maven.wagon.providers.http.LightweightHttpWagon.fillInputData(LightweightHttpWagon.java:131)
    ... 43 more
[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/DependencyResolutionException
cgorshing commented 4 years ago

Caused by: java.io.IOException: Server returned HTTP response code: 501 for URL: http://repo1.maven.org/maven2/com/mulesoft/muleesb/mule-core-ee/3.8.4/mule-core-ee-3.8.4.pom

These all look like maven settings issues and not related specifically to mule-lint. Check to make sure your ~/.m2/settings.xml are correct.