NPE in javac reproduction - JDK-8216202
Andrew Janke
floss at apjanke.net
Fri May 8 20:27:05 UTC 2020
Hi, OpenJDK folks,
I have some info about a bug in the OpenJDK bugs database,
https://bugs.openjdk.java.net/browse/JDK-8216202, but I don't have
Author status so I can't comment on the issue. I heard from
help at openjdk.java.net
that this might be the right place to send it.
My project ANTLRWorks2-Jank has code that is running into what looks
like the NullPointerException reported there, and can reproduce the
error consistently.
You can find the code in the branch mavenize/ditch-ATN-simulator at
https://github.com/apjanke/antlrworks2-jank/tree/mavenize/ditch-ATN-simulator.
The tags NPE-during-compile-02 and NPE-during-compile-03 are particular
versions which reliably
reproduce this NPE:
https://github.com/apjanke/antlrworks2-jank/tree/NPE-during-compile-02.
To reproduce the error, clone the repo, check out the tag
NPE-during-compile-02 or NPE-during-compile-03, and run `mvn -e compile`
in the root of the repo.
The NPE seems to happen with OpenJDK 9, 11, and 13.0.2 (selected by
setting $JAVA_HOME before calling mvn). This is on macOS 10.14.6.
My own issue report: https://github.com/apjanke/antlrworks2-jank/issues/1
When I change the maven-compiler-plugin <release> to 11 or 13, the error
changes to an AssertionError:
[INFO] works-editor-antlr4 ................................ FAILURE [
0.597 s]
[INFO] antlr-works-editor ................................. SKIPPED
[...]
---------------------------------------------------
Exception in thread "main" java.lang.AssertionError
at jdk.compiler/com.sun.tools.javac.util.Assert.error(Assert.java:155)
at jdk.compiler/com.sun.tools.javac.util.Assert.check(Assert.java:46)
at jdk.compiler/com.sun.tools.javac.comp.Modules.enter(Modules.java:247)
at
jdk.compiler/com.sun.tools.javac.main.JavaCompiler.readSourceFile(JavaCompiler.java:836)
at
jdk.compiler/com.sun.tools.javac.processing.JavacProcessingEnvironment$ImplicitCompleter.complete(JavacProcessingEnvironment.java:1576)
at
jdk.compiler/com.sun.tools.javac.code.Symbol.complete(Symbol.java:657)
at
jdk.compiler/com.sun.tools.javac.code.Symbol$ClassSymbol.complete(Symbol.java:1356)
at
jdk.compiler/com.sun.tools.javac.code.Type$ClassType.complete(Type.java:1157)
at
jdk.compiler/com.sun.tools.javac.code.Type$ClassType.getTypeArguments(Type.java:1083)
at
jdk.compiler/com.sun.tools.javac.code.Printer.visitClassType(Printer.java:237)
at
jdk.compiler/com.sun.tools.javac.code.Printer.visitClassType(Printer.java:52)
at
jdk.compiler/com.sun.tools.javac.code.Type$ClassType.accept(Type.java:1010)
at jdk.compiler/com.sun.tools.javac.code.Printer.visit(Printer.java:136)
at
jdk.compiler/com.sun.tools.javac.util.AbstractDiagnosticFormatter.formatArgument(AbstractDiagnosticFormatter.java:199)
at
jdk.compiler/com.sun.tools.javac.util.AbstractDiagnosticFormatter.formatArguments(AbstractDiagnosticFormatter.java:167)
at
jdk.compiler/com.sun.tools.javac.util.BasicDiagnosticFormatter.formatMessage(BasicDiagnosticFormatter.java:111)
at
jdk.compiler/com.sun.tools.javac.util.BasicDiagnosticFormatter.formatMessage(BasicDiagnosticFormatter.java:67)
at
jdk.compiler/com.sun.tools.javac.util.AbstractDiagnosticFormatter.formatArgument(AbstractDiagnosticFormatter.java:185)
at
jdk.compiler/com.sun.tools.javac.util.AbstractDiagnosticFormatter.formatArguments(AbstractDiagnosticFormatter.java:167)
at
jdk.compiler/com.sun.tools.javac.util.BasicDiagnosticFormatter.formatMessage(BasicDiagnosticFormatter.java:111)
at
jdk.compiler/com.sun.tools.javac.util.BasicDiagnosticFormatter.formatMessage(BasicDiagnosticFormatter.java:67)
at
jdk.compiler/com.sun.tools.javac.util.JCDiagnostic.getMessage(JCDiagnostic.java:788)
at
jdk.compiler/com.sun.tools.javac.api.ClientCodeWrapper$DiagnosticSourceUnwrapper.getMessage(ClientCodeWrapper.java:835)
at
org.codehaus.plexus.compiler.javac.JavaxToolsCompiler.compileInProcess(JavaxToolsCompiler.java:131)
at
org.codehaus.plexus.compiler.javac.JavacCompiler.performCompile(JavacCompiler.java:174)
at
org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute(AbstractCompilerMojo.java:1134)
at
org.apache.maven.plugin.compiler.CompilerMojo.execute(CompilerMojo.java:187)
at
org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:210)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:156)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:148)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:81)
at
org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:56)
at
org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:305)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:192)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:105)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:957)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:289)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:193)
at
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
at
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at
java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:567)
at
org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:282)
at
org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:225)
at
org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:406)
at
org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:347)
Find debug logs attached.
Cheers,
Andrew Janke
-------------- next part --------------
Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f)
Maven home: /usr/local/Cellar/maven/3.6.3_1/libexec
Java version: 13.0.2, vendor: N/A, runtime: /usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home
Default locale: en_US, platform encoding: UTF-8
OS name: "mac os x", version: "10.14.6", arch: "x86_64", family: "mac"
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG] Imported: javax.annotation.* < plexus.core
[DEBUG] Imported: javax.annotation.security.* < plexus.core
[DEBUG] Imported: javax.enterprise.inject.* < plexus.core
[DEBUG] Imported: javax.enterprise.util.* < plexus.core
[DEBUG] Imported: javax.inject.* < plexus.core
[DEBUG] Imported: org.apache.maven.* < plexus.core
[DEBUG] Imported: org.apache.maven.artifact < plexus.core
[DEBUG] Imported: org.apache.maven.classrealm < plexus.core
[DEBUG] Imported: org.apache.maven.cli < plexus.core
[DEBUG] Imported: org.apache.maven.configuration < plexus.core
[DEBUG] Imported: org.apache.maven.exception < plexus.core
[DEBUG] Imported: org.apache.maven.execution < plexus.core
[DEBUG] Imported: org.apache.maven.execution.scope < plexus.core
[DEBUG] Imported: org.apache.maven.lifecycle < plexus.core
[DEBUG] Imported: org.apache.maven.model < plexus.core
[DEBUG] Imported: org.apache.maven.monitor < plexus.core
[DEBUG] Imported: org.apache.maven.plugin < plexus.core
[DEBUG] Imported: org.apache.maven.profiles < plexus.core
[DEBUG] Imported: org.apache.maven.project < plexus.core
[DEBUG] Imported: org.apache.maven.reporting < plexus.core
[DEBUG] Imported: org.apache.maven.repository < plexus.core
[DEBUG] Imported: org.apache.maven.rtinfo < plexus.core
[DEBUG] Imported: org.apache.maven.settings < plexus.core
[DEBUG] Imported: org.apache.maven.toolchain < plexus.core
[DEBUG] Imported: org.apache.maven.usability < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.* < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.events < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core
[DEBUG] Imported: org.codehaus.classworlds < plexus.core
[DEBUG] Imported: org.codehaus.plexus.* < plexus.core
[DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core
[DEBUG] Imported: org.codehaus.plexus.component < plexus.core
[DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core
[DEBUG] Imported: org.codehaus.plexus.container < plexus.core
[DEBUG] Imported: org.codehaus.plexus.context < plexus.core
[DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core
[DEBUG] Imported: org.codehaus.plexus.logging < plexus.core
[DEBUG] Imported: org.codehaus.plexus.personality < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
[DEBUG] Imported: org.eclipse.aether.* < plexus.core
[DEBUG] Imported: org.eclipse.aether.artifact < plexus.core
[DEBUG] Imported: org.eclipse.aether.collection < plexus.core
[DEBUG] Imported: org.eclipse.aether.deployment < plexus.core
[DEBUG] Imported: org.eclipse.aether.graph < plexus.core
[DEBUG] Imported: org.eclipse.aether.impl < plexus.core
[DEBUG] Imported: org.eclipse.aether.installation < plexus.core
[DEBUG] Imported: org.eclipse.aether.internal.impl < plexus.core
[DEBUG] Imported: org.eclipse.aether.metadata < plexus.core
[DEBUG] Imported: org.eclipse.aether.repository < plexus.core
[DEBUG] Imported: org.eclipse.aether.resolution < plexus.core
[DEBUG] Imported: org.eclipse.aether.spi < plexus.core
[DEBUG] Imported: org.eclipse.aether.transfer < plexus.core
[DEBUG] Imported: org.eclipse.aether.version < plexus.core
[DEBUG] Imported: org.fusesource.jansi.* < plexus.core
[DEBUG] Imported: org.slf4j.* < plexus.core
[DEBUG] Imported: org.slf4j.event.* < plexus.core
[DEBUG] Imported: org.slf4j.helpers.* < plexus.core
[DEBUG] Imported: org.slf4j.spi.* < plexus.core
[DEBUG] Populating class realm maven.api
[INFO] Error stacktraces are turned on.
[DEBUG] Message scheme: color
[DEBUG] Message styles: debug info warning error success failure strong mojo project
[DEBUG] Reading global settings from /usr/local/Cellar/maven/3.6.3_1/libexec/conf/settings.xml
[DEBUG] Reading user settings from /Users/janke/.m2/settings.xml
[DEBUG] Reading global toolchains from /usr/local/Cellar/maven/3.6.3_1/libexec/conf/toolchains.xml
[DEBUG] Reading user toolchains from /Users/janke/.m2/toolchains.xml
[DEBUG] Using local repository at /Users/janke/.m2/repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/janke/.m2/repository
[INFO] Scanning for projects...
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:antlrworks-jank:pom:2.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging pom from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:editor-completionext:jar:2.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:editor-containingfolder:jar:2.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=957250, ConflictMarker.markTime=356351, ConflictMarker.nodeCount=207, ConflictIdSorter.graphTime=518019, ConflictIdSorter.topsortTime=262275, ConflictIdSorter.conflictIdCount=50, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=4148758, ConflictResolver.conflictItemCount=116, DefaultDependencyCollector.collectTime=339084786, DefaultDependencyCollector.transformTime=7873488}
[DEBUG] org.codehaus.mojo:nbm-maven-plugin:jar:3.13
[DEBUG] org.apache.maven:maven-artifact:jar:2.2.0:compile
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.1:compile
[DEBUG] org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.0:compile
[DEBUG] org.apache.ant:ant:jar:1.9.2:compile
[DEBUG] org.apache.ant:ant-launcher:jar:1.9.2:compile
[DEBUG] org.apache.maven:maven-project:jar:2.2.0:compile
[DEBUG] org.apache.maven:maven-settings:jar:2.2.0:compile
[DEBUG] org.apache.maven:maven-profile:jar:2.2.0:compile
[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.0:compile
[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.11:compile
[DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0:compile
[DEBUG] org.codehaus.plexus:plexus-archiver:jar:1.2:compile
[DEBUG] org.apache.maven.shared:maven-dependency-tree:jar:2.1:compile
[DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile
[DEBUG] org.eclipse.aether:aether-util:jar:0.9.0.M2:compile
[DEBUG] org.apache.maven.shared:maven-dependency-analyzer:jar:1.2:compile
[DEBUG] asm:asm:jar:3.0:compile
[DEBUG] org.apache.maven:maven-model:jar:2.2.0:compile
[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.0:compile
[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.0:compile
[DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile
[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[DEBUG] junit:junit:jar:4.10:test (scope managed from default) (version managed from default)
[DEBUG] org.hamcrest:hamcrest-core:jar:1.1:test
[DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile
[DEBUG] org.apache.maven.shared:maven-filtering:jar:1.0:compile
[DEBUG] org.apache.maven:maven-monitor:jar:2.0.6:compile
[DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
[DEBUG] org.apache.maven:maven-core:jar:2.2.0:compile
[DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.0:compile
[DEBUG] org.slf4j:slf4j-jdk14:jar:1.5.6:runtime
[DEBUG] org.slf4j:slf4j-api:jar:1.5.6:runtime
[DEBUG] org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime
[DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.2.0:compile
[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile
[DEBUG] org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile
[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.0:compile
[DEBUG] commons-cli:commons-cli:jar:1.2:compile
[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.0:compile
[DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
[DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG] javax.help:javahelp:jar:2.0.05:runtime
[DEBUG] org.codehaus.mojo:nbm-maven-harness:jar:8.0-beta:compile
[DEBUG] org.codehaus.plexus:plexus-io:jar:2.0.2:compile
[DEBUG] org.codehaus.mojo:nb-shared:jar:1.2:compile
[DEBUG] com.google.guava:guava:jar:12.0:compile
[DEBUG] com.google.code.findbugs:jsr305:jar:1.3.9:compile
[DEBUG] Created new class realm extension>org.codehaus.mojo:nbm-maven-plugin:3.13
[DEBUG] Importing foreign packages into class realm extension>org.codehaus.mojo:nbm-maven-plugin:3.13
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm extension>org.codehaus.mojo:nbm-maven-plugin:3.13
[DEBUG] Included: org.codehaus.mojo:nbm-maven-plugin:jar:3.13
[DEBUG] Included: org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.0
[DEBUG] Included: org.apache.ant:ant:jar:1.9.2
[DEBUG] Included: org.apache.ant:ant-launcher:jar:1.9.2
[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.11
[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0
[DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:1.2
[DEBUG] Included: org.apache.maven.shared:maven-dependency-tree:jar:2.1
[DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
[DEBUG] Included: org.eclipse.aether:aether-util:jar:0.9.0.M2
[DEBUG] Included: org.apache.maven.shared:maven-dependency-analyzer:jar:1.2
[DEBUG] Included: asm:asm:jar:3.0
[DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1
[DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.0
[DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
[DEBUG] Included: org.slf4j:slf4j-jdk14:jar:1.5.6
[DEBUG] Included: org.slf4j:jcl-over-slf4j:jar:1.5.6
[DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.0
[DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1
[DEBUG] Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1
[DEBUG] Included: commons-cli:commons-cli:jar:1.2
[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
[DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
[DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4
[DEBUG] Included: javax.help:javahelp:jar:2.0.05
[DEBUG] Included: org.codehaus.mojo:nbm-maven-harness:jar:8.0-beta
[DEBUG] Included: org.codehaus.plexus:plexus-io:jar:2.0.2
[DEBUG] Included: org.codehaus.mojo:nb-shared:jar:1.2
[DEBUG] Included: com.google.guava:guava:jar:12.0
[DEBUG] Included: com.google.code.findbugs:jsr305:jar:1.3.9
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:antlr-works-netbeans:nbm:2.6.0-SNAPSHOT: [ClassRealm[extension>org.codehaus.mojo:nbm-maven-plugin:3.13, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]]
[DEBUG] Created new class realm project>net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT
[DEBUG] Populating class realm project>net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT
[DEBUG] Looking up lifecycle mappings for packaging nbm from ClassRealm[project>net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:antlr-works-editor:nbm:2.6.0-SNAPSHOT: [ClassRealm[extension>org.codehaus.mojo:nbm-maven-plugin:3.13, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]]
[DEBUG] Looking up lifecycle mappings for packaging nbm from ClassRealm[project>net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:tvl-editor-actions:jar:2.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:tvl-editor-whitespace:jar:2.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:works-editor-antlr3:jar:2.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:works-editor-antlr4:jar:2.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] ANTLRWorks2-Jank [pom]
[INFO] editor-completionext [jar]
[INFO] editor-containingfolder [jar]
[INFO] antlr-works-netbeans [nbm]
[INFO] tvl-editor-actions [jar]
[INFO] works-editor-antlr4 [jar]
[INFO] antlr-works-editor [nbm]
[INFO] tvl-editor-whitespace [jar]
[INFO] works-editor-antlr3 [jar]
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: net.apjanke.antlrworks-jank:antlrworks-jank:pom:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:editor-completionext:jar:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:editor-containingfolder:jar:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:antlr-works-netbeans:nbm:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:tvl-editor-actions:jar:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:works-editor-antlr4:jar:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:antlr-works-editor:nbm:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:tvl-editor-whitespace:jar:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:works-editor-antlr3:jar:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] =======================================================================
[INFO]
[INFO] ------------< net.apjanke.antlrworks-jank:antlrworks-jank >-------------
[INFO] Building ANTLRWorks2-Jank 2.6.0-SNAPSHOT [1/9]
[INFO] --------------------------------[ pom ]---------------------------------
[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: net.apjanke.antlrworks-jank:antlrworks-jank:2.6.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): []
[DEBUG] Repositories (dependencies): [netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans/, default, releases+snapshots), atricore (http://repository.atricore.org/m2-release-repository/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] =======================================================================
[INFO]
[INFO] ----------< net.apjanke.antlrworks-jank:editor-completionext >----------
[INFO] Building editor-completionext 2.6.0-SNAPSHOT [2/9]
[INFO] --------------------------------[ jar ]---------------------------------
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: net.apjanke.antlrworks-jank:editor-completionext:2.6.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile]
[DEBUG] Repositories (dependencies): [netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans/, default, releases+snapshots), atricore (http://repository.atricore.org/m2-release-repository/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<buildFilters default-value="${project.build.filters}"/>
<encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
<escapeString>${maven.resources.escapeString}</escapeString>
<escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
<includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
<outputDirectory default-value="${project.build.outputDirectory}"/>
<overwrite default-value="false">${maven.resources.overwrite}</overwrite>
<project default-value="${project}"/>
<resources default-value="${project.resources}"/>
<session default-value="${session}"/>
<supportMultiLineFiltering default-value="false">${maven.resources.supportMultiLineFiltering}</supportMultiLineFiltering>
<useBuildFilters default-value="true"/>
<useDefaultDelimiters default-value="true"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.8.1: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">1.8</source>
<staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
<target default-value="1.6">1.8</target>
<useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
<verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[DEBUG] =======================================================================
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=891191, ConflictMarker.markTime=376867, ConflictMarker.nodeCount=557, ConflictIdSorter.graphTime=482187, ConflictIdSorter.topsortTime=330510, ConflictIdSorter.conflictIdCount=80, ConflictIdSorter.conflictIdCycleCount=1, ConflictResolver.totalTime=4858024, ConflictResolver.conflictItemCount=555, DefaultDependencyCollector.collectTime=127373601, DefaultDependencyCollector.transformTime=7044664}
[DEBUG] net.apjanke.antlrworks-jank:editor-completionext:jar:2.6.0-SNAPSHOT
[DEBUG] javax.annotation:javax.annotation-api:jar:1.3.2:compile
[DEBUG] org.netbeans.api:org-netbeans-api-annotations-common:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-palette:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-awt:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-dialogs:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-explorer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-tabcontrol:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-loaders:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-scripting:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-templates:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-modules:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-nodes:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-text:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-lookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-windows:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-document:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-fold-nbui:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-guards:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-indent:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib2:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-lexer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-actions:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-fold:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-ui:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-mimelookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-settings-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-keymap:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-options-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-core:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-bootstrap:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-keyring:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-swing-plaf:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-openide-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-intent:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-libs-asm:jar:RELEASE112:runtime
[DEBUG] org.ow2.asm:asm-all:jar:5.0.1:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup-base:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-spi-quicksearch:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-outline:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints-projects:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-tools-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-editor:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-projectapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-navigator:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-indexing:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-java-classpath:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-libs-lucene:jar:RELEASE112:compile
[DEBUG] org.apache.lucene:lucene-core:jar:3.5.0:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-parsing-lucene:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-masterfs:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-project-indexingbridge:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi-base:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-queries:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-tasklist:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-sampler:jar:RELEASE112:compile
[DEBUG] org.antlr:antlr4-runtime:jar:4.8-1:compile
[DEBUG] org.antlr:stringtemplate:jar:4.0.2:compile
[DEBUG] org.antlr:antlr-runtime:jar:3.3:compile
[DEBUG] org.antlr:antlr4:jar:4.8-1:compile
[DEBUG] org.antlr:ST4:jar:4.3:compile
[DEBUG] org.abego.treelayout:org.abego.treelayout.core:jar:1.0.3:compile
[DEBUG] org.glassfish:javax.json:jar:1.0.4:compile
[DEBUG] com.ibm.icu:icu4j:jar:61.1:compile
[DEBUG] junit:junit:jar:4.13:test
[DEBUG] org.hamcrest:hamcrest-core:jar:1.3:test
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ editor-completionext ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=115092, ConflictMarker.markTime=34482, ConflictMarker.nodeCount=77, ConflictIdSorter.graphTime=39904, ConflictIdSorter.topsortTime=20560, ConflictIdSorter.conflictIdCount=26, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=397797, ConflictResolver.conflictItemCount=74, DefaultDependencyCollector.collectTime=11071448, DefaultDependencyCollector.transformTime=631734}
[DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:2.6
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6: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.reporting:maven-reporting-api:jar:2.0.6:compile
[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7: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.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile
[DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
[DEBUG] classworlds:classworlds:jar:1.1:compile
[DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile
[DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile
[DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile
[DEBUG] org.apache.maven:maven-monitor:jar:2.0.6: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] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile
[DEBUG] org.apache.maven.shared:maven-filtering:jar:1.1:compile
[DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.13:compile
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6
[DEBUG] Included: org.apache.maven.plugins:maven-resources-plugin: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: commons-cli:commons-cli:jar:1.0
[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
[DEBUG] Included: junit:junit:jar:3.8.1
[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5
[DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.1
[DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.13
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:resources' with basic configurator -->
[DEBUG] (f) buildFilters = []
[DEBUG] (f) encoding = UTF-8
[DEBUG] (f) escapeWindowsPaths = true
[DEBUG] (s) includeEmptyDirs = false
[DEBUG] (s) outputDirectory = /Users/janke/local/repos/antlrworks-jank/editor-completionext/target/classes
[DEBUG] (s) overwrite = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:editor-completionext:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/editor-completionext/pom.xml
[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /Users/janke/local/repos/antlrworks-jank/editor-completionext/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) supportMultiLineFiltering = false
[DEBUG] (f) useBuildFilters = true
[DEBUG] (s) useDefaultDelimiters = true
[DEBUG] -- end configuration --
[DEBUG] properties used {env.TERM=xterm-256color, java.specification.version=13, sun.arch.data.model=64, env.CLICOLOR=1, java.vendor.url=https://openjdk.java.net/, env.COLORFGBG=12;8, env.GOPATH=/Users/janke/local/go-work, sun.boot.library.path=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home/lib, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X -e compile, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-01-14, version=2.6.0-SNAPSHOT, java.home=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home, env.GUIEDITOR=subl, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.LC_TERMINAL_VERSION=3.3.9, java.runtime.version=13.0.2+8, env.LSCOLORS=gxxxdxdxdxexexdxdxgxgx, env.PATH=/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin, env.LS_COLORS=di=36:so=33:pi=33:ex=33:bd=34:cd=34:su=33:sg=33:tw=36:ow=36:ln=00;04, file.encoding=UTF-8, env.HOMEBREW_EDITOR=subl, env.HISTCONTROL=ignoredups, env.SHLVL=2, java.io.tmpdir=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, java.version=13.0.2, java.vm.specification.name=Java Virtual Machine Specification, netbeans.version=RELEASE112, java.library.path=/Users/janke/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=N/A, env.JAVA_MAIN_CLASS_11911=org.codehaus.plexus.classworlds.launcher.Launcher, classworlds.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/bin/m2.conf, sun.io.unicode.encoding=UnicodeBig, env.LANG=en_US.UTF-8, env.HOMEBREW_SANDBOX=1, java.vm.specification.version=13, os.name=Mac OS X, env.DISPLAY=/private/tmp/com.apple.launchd.O2942FNRqP/org.macosforge.xquartz:0, release.username=apjanke, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, maven.compiler.source=1.8, user.home=/Users/janke, env.XML_CATALOG_FILES=/usr/local/etc/xml/catalog, env.EDITOR=vi, brandingToken=antlrworks2jank, env.COLORTERM=truecolor, env.Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.YiSqoN3EU9/Render, env.ITERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.ITERM_PROFILE=Solarized - Dark - apj, path.separator=:, os.version=10.14.6, java.vm.name=OpenJDK 64-Bit Server VM, env.SHELL=/bin/zsh, gpg.executable=gpg2, env.HISTSIZE=32768, os.arch=x86_64, env.HISTFILESIZE=32768, maven.multiModuleProjectDirectory=/Users/janke/local/repos/antlrworks-jank, env.MAVEN_PROJECTBASEDIR=/Users/janke/local/repos/antlrworks-jank, java.vm.info=mixed mode, sharing, env.USER=janke, java.class.version=57.0, env.HOMEBREW_NO_AUTO_UPDATE=1, sun.jnu.encoding=UTF-8, env.HISTIGNORE=ls:ls *:cd:cd -:pwd:exit:date:* --help, env.VISUAL=subl -w, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=/usr/local/Cellar/maven/3.6.3_1/libexec, env.JAVA_HOME=/usr/local/opt/openjdk, env.LC_TERMINAL=iTerm2, file.separator=/, env.LESS=-R, java.vm.compressedOopsMode=Non-zero disjoint base, line.separator=
, env.TERM_PROGRAM_VERSION=3.3.9, user.name=janke, env.XPC_FLAGS=0x0, env.LOGNAME=janke, env.__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0, env.TERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.9RGvwmJ5GD/Listeners, env.TERMINFO_DIRS=/Users/janke/.terminfo:/usr/local/share/terminfo:, maven.compiler.target=1.8, env.TMPDIR=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, library.jansi.path=/usr/local/Cellar/maven/3.6.3_1/libexec/lib/jansi-native, env.TERM_PROGRAM=iTerm.app, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, env.OLDPWD=/Users/janke/local/repos/antlrworks-jank, env.PWD=/Users/janke/local/repos/antlrworks-jank, env.PAGER=less, java.class.path=/usr/local/Cellar/maven/3.6.3_1/libexec/boot/plexus-classworlds-2.6.0.jar, env.HOME=/Users/janke, java.vm.vendor=Oracle Corporation, gpg.keyname=24AF1EA5, maven.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/conf, env.HOMEBREW_DEVELOPER=1, sun.java.launcher=SUN_STANDARD, user.country=US, sun.cpu.endian=little, user.language=en, env.XPC_SERVICE_NAME=0, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.name=OpenJDK Runtime Environment, project.build.sourceEncoding=UTF-8, env.MAVEN_CMD_LINE_ARGS= -X -e compile, java.vendor.url.bug=https://bugreport.java.com/bugreport/, user.dir=/Users/janke/local/repos/antlrworks-jank, antlr.version=4.8-1, java.vm.version=13.0.2+8}
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory /Users/janke/local/repos/antlrworks-jank/editor-completionext/src/main/resources
excludes []
includes []
[INFO] skip non existing resourceDirectory /Users/janke/local/repos/antlrworks-jank/editor-completionext/src/main/resources
[DEBUG] no use filter components
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ editor-completionext ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=94888, ConflictMarker.markTime=47953, ConflictMarker.nodeCount=118, ConflictIdSorter.graphTime=32560, ConflictIdSorter.topsortTime=34340, ConflictIdSorter.conflictIdCount=45, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=497197, ConflictResolver.conflictItemCount=72, DefaultDependencyCollector.collectTime=82520372, DefaultDependencyCollector.transformTime=728737}
[DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:3.8.1
[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 (version managed from default)
[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 (version managed from default)
[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.1
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1
[DEBUG] Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.8.1
[DEBUG] Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2
[DEBUG] Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7
[DEBUG] Included: org.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.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile' with basic configurator -->
[DEBUG] (f) basedir = /Users/janke/local/repos/antlrworks-jank/editor-completionext
[DEBUG] (f) buildDirectory = /Users/janke/local/repos/antlrworks-jank/editor-completionext/target
[DEBUG] (f) compilePath = [/Users/janke/local/repos/antlrworks-jank/editor-completionext/target/classes, /Users/janke/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-annotations-common/RELEASE112/org-netbeans-api-annotations-common-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-palette/RELEASE112/org-netbeans-spi-palette-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-awt/RELEASE112/org-openide-awt-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-dialogs/RELEASE112/org-openide-dialogs-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-explorer/RELEASE112/org-openide-explorer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-tabcontrol/RELEASE112/org-netbeans-swing-tabcontrol-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems/RELEASE112/org-openide-filesystems-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-loaders/RELEASE112/org-openide-loaders-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-scripting/RELEASE112/org-netbeans-api-scripting-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-templates/RELEASE112/org-netbeans-api-templates-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-modules/RELEASE112/org-openide-modules-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-nodes/RELEASE112/org-openide-nodes-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-text/RELEASE112/org-openide-text-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util/RELEASE112/org-openide-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-lookup/RELEASE112/org-openide-util-lookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-windows/RELEASE112/org-openide-windows-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-util/RELEASE112/org-netbeans-modules-editor-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor/RELEASE112/org-netbeans-modules-editor-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress/RELEASE112/org-netbeans-api-progress-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress-nb/RELEASE112/org-netbeans-api-progress-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-document/RELEASE112/org-netbeans-modules-editor-document-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-guards/RELEASE112/org-netbeans-modules-editor-guards-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-indent/RELEASE112/org-netbeans-modules-editor-indent-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib2/RELEASE112/org-netbeans-modules-editor-lib2-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-lexer/RELEASE112/org-netbeans-modules-lexer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-actions/RELEASE112/org-openide-actions-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems-nb/RELEASE112/org-openide-filesystems-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-fold/RELEASE112/org-netbeans-modules-editor-fold-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings-lib/RELEASE112/org-netbeans-modules-editor-settings-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-ui/RELEASE112/org-openide-util-ui-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib/RELEASE112/org-netbeans-modules-editor-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-mimelookup/RELEASE112/org-netbeans-modules-editor-mimelookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings/RELEASE112/org-netbeans-modules-editor-settings-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-editor-settings-storage/RELEASE112/org-netbeans-modules-editor-settings-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-keymap/RELEASE112/org-netbeans-modules-options-keymap-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-options-api/RELEASE112/org-netbeans-modules-options-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-quicksearch/RELEASE112/org-netbeans-spi-quicksearch-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-outline/RELEASE112/org-netbeans-swing-outline-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints-projects/RELEASE112/org-netbeans-spi-editor-hints-projects-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-tools-storage/RELEASE112/org-netbeans-modules-editor-tools-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectapi/RELEASE112/org-netbeans-modules-projectapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi/RELEASE112/org-netbeans-modules-projectuiapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints/RELEASE112/org-netbeans-spi-editor-hints-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-navigator/RELEASE112/org-netbeans-spi-navigator-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-indexing/RELEASE112/org-netbeans-modules-parsing-indexing-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-java-classpath/RELEASE112/org-netbeans-api-java-classpath-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-libs-lucene/RELEASE112/org-netbeans-libs-lucene-RELEASE112.jar, /Users/janke/.m2/repository/org/apache/lucene/lucene-core/3.5.0/lucene-core-3.5.0.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-api/RELEASE112/org-netbeans-modules-parsing-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi-base/RELEASE112/org-netbeans-modules-projectuiapi-base-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-queries/RELEASE112/org-netbeans-modules-queries-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-tasklist/RELEASE112/org-netbeans-spi-tasklist-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-sampler/RELEASE112/org-netbeans-modules-sampler-RELEASE112.jar, /Users/janke/.m2/repository/org/antlr/antlr4-runtime/4.8-1/antlr4-runtime-4.8-1.jar, /Users/janke/.m2/repository/org/antlr/stringtemplate/4.0.2/stringtemplate-4.0.2.jar, /Users/janke/.m2/repository/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar, /Users/janke/.m2/repository/org/antlr/antlr4/4.8-1/antlr4-4.8-1.jar, /Users/janke/.m2/repository/org/antlr/ST4/4.3/ST4-4.3.jar, /Users/janke/.m2/repository/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.jar, /Users/janke/.m2/repository/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar, /Users/janke/.m2/repository/com/ibm/icu/icu4j/61.1/icu4j-61.1.jar]
[DEBUG] (f) compileSourceRoots = [/Users/janke/local/repos/antlrworks-jank/editor-completionext/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 = /Users/janke/local/repos/antlrworks-jank/editor-completionext/target/generated-sources/annotations
[DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile {execution: default-compile}
[DEBUG] (f) optimize = false
[DEBUG] (f) outputDirectory = /Users/janke/local/repos/antlrworks-jank/editor-completionext/target/classes
[DEBUG] (f) parameters = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:editor-completionext:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/editor-completionext/pom.xml
[DEBUG] (f) projectArtifact = net.apjanke.antlrworks-jank:editor-completionext:jar:2.6.0-SNAPSHOT
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) showDeprecation = false
[DEBUG] (f) showWarnings = false
[DEBUG] (f) skipMultiThreadWarning = false
[DEBUG] (f) source = 1.8
[DEBUG] (f) staleMillis = 0
[DEBUG] (s) target = 1.8
[DEBUG] (f) useIncrementalCompilation = true
[DEBUG] (f) verbose = false
[DEBUG] -- end configuration --
[DEBUG] Using compiler 'javac'.
[DEBUG] Adding /Users/janke/local/repos/antlrworks-jank/editor-completionext/target/generated-sources/annotations to compile source roots:
/Users/janke/local/repos/antlrworks-jank/editor-completionext/src/main/java
[DEBUG] New compile source roots:
/Users/janke/local/repos/antlrworks-jank/editor-completionext/src/main/java
/Users/janke/local/repos/antlrworks-jank/editor-completionext/target/generated-sources/annotations
[DEBUG] CompilerReuseStrategy: reuseCreated
[DEBUG] useIncrementalCompilation enabled
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --------< net.apjanke.antlrworks-jank:editor-containingfolder >---------
[INFO] Building editor-containingfolder 2.6.0-SNAPSHOT [3/9]
[INFO] --------------------------------[ jar ]---------------------------------
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: net.apjanke.antlrworks-jank:editor-containingfolder:2.6.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile]
[DEBUG] Repositories (dependencies): [netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans/, default, releases+snapshots), atricore (http://repository.atricore.org/m2-release-repository/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<buildFilters default-value="${project.build.filters}"/>
<encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
<escapeString>${maven.resources.escapeString}</escapeString>
<escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
<includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
<outputDirectory default-value="${project.build.outputDirectory}"/>
<overwrite default-value="false">${maven.resources.overwrite}</overwrite>
<project default-value="${project}"/>
<resources default-value="${project.resources}"/>
<session default-value="${session}"/>
<supportMultiLineFiltering default-value="false">${maven.resources.supportMultiLineFiltering}</supportMultiLineFiltering>
<useBuildFilters default-value="true"/>
<useDefaultDelimiters default-value="true"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.8.1: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">8</source>
<staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
<target default-value="1.6">8</target>
<useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
<verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[DEBUG] =======================================================================
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=10983, ConflictMarker.markTime=17644, ConflictMarker.nodeCount=3, ConflictIdSorter.graphTime=6430, ConflictIdSorter.topsortTime=9714, ConflictIdSorter.conflictIdCount=2, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=77661, ConflictResolver.conflictItemCount=2, DefaultDependencyCollector.collectTime=1978244, DefaultDependencyCollector.transformTime=139159}
[DEBUG] net.apjanke.antlrworks-jank:editor-containingfolder:jar:2.6.0-SNAPSHOT
[DEBUG] junit:junit:jar:4.13:test
[DEBUG] org.hamcrest:hamcrest-core:jar:1.3:test
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ editor-containingfolder ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:resources' with basic configurator -->
[DEBUG] (f) buildFilters = []
[DEBUG] (f) encoding = UTF-8
[DEBUG] (f) escapeWindowsPaths = true
[DEBUG] (s) includeEmptyDirs = false
[DEBUG] (s) outputDirectory = /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/target/classes
[DEBUG] (s) overwrite = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:editor-containingfolder:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/pom.xml
[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) supportMultiLineFiltering = false
[DEBUG] (f) useBuildFilters = true
[DEBUG] (s) useDefaultDelimiters = true
[DEBUG] -- end configuration --
[DEBUG] properties used {env.TERM=xterm-256color, java.specification.version=13, sun.arch.data.model=64, env.CLICOLOR=1, java.vendor.url=https://openjdk.java.net/, env.COLORFGBG=12;8, env.GOPATH=/Users/janke/local/go-work, sun.boot.library.path=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home/lib, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X -e compile, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-01-14, version=2.6.0-SNAPSHOT, java.home=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home, env.GUIEDITOR=subl, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.LC_TERMINAL_VERSION=3.3.9, java.runtime.version=13.0.2+8, env.LSCOLORS=gxxxdxdxdxexexdxdxgxgx, env.PATH=/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin, env.LS_COLORS=di=36:so=33:pi=33:ex=33:bd=34:cd=34:su=33:sg=33:tw=36:ow=36:ln=00;04, file.encoding=UTF-8, env.HOMEBREW_EDITOR=subl, env.HISTCONTROL=ignoredups, env.SHLVL=2, java.io.tmpdir=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, java.version=13.0.2, java.vm.specification.name=Java Virtual Machine Specification, netbeans.version=RELEASE112, java.library.path=/Users/janke/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=N/A, env.JAVA_MAIN_CLASS_11911=org.codehaus.plexus.classworlds.launcher.Launcher, classworlds.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/bin/m2.conf, sun.io.unicode.encoding=UnicodeBig, env.LANG=en_US.UTF-8, env.HOMEBREW_SANDBOX=1, java.vm.specification.version=13, os.name=Mac OS X, env.DISPLAY=/private/tmp/com.apple.launchd.O2942FNRqP/org.macosforge.xquartz:0, release.username=apjanke, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, maven.compiler.source=1.8, user.home=/Users/janke, env.XML_CATALOG_FILES=/usr/local/etc/xml/catalog, env.EDITOR=vi, brandingToken=antlrworks2jank, env.COLORTERM=truecolor, env.Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.YiSqoN3EU9/Render, env.ITERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.ITERM_PROFILE=Solarized - Dark - apj, path.separator=:, os.version=10.14.6, java.vm.name=OpenJDK 64-Bit Server VM, env.SHELL=/bin/zsh, gpg.executable=gpg2, env.HISTSIZE=32768, os.arch=x86_64, env.HISTFILESIZE=32768, maven.multiModuleProjectDirectory=/Users/janke/local/repos/antlrworks-jank, env.MAVEN_PROJECTBASEDIR=/Users/janke/local/repos/antlrworks-jank, java.vm.info=mixed mode, sharing, env.USER=janke, java.class.version=57.0, env.HOMEBREW_NO_AUTO_UPDATE=1, sun.jnu.encoding=UTF-8, env.HISTIGNORE=ls:ls *:cd:cd -:pwd:exit:date:* --help, env.VISUAL=subl -w, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=/usr/local/Cellar/maven/3.6.3_1/libexec, env.JAVA_HOME=/usr/local/opt/openjdk, env.LC_TERMINAL=iTerm2, file.separator=/, env.LESS=-R, java.vm.compressedOopsMode=Non-zero disjoint base, line.separator=
, env.TERM_PROGRAM_VERSION=3.3.9, user.name=janke, env.XPC_FLAGS=0x0, env.LOGNAME=janke, env.__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0, env.TERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.9RGvwmJ5GD/Listeners, env.TERMINFO_DIRS=/Users/janke/.terminfo:/usr/local/share/terminfo:, maven.compiler.target=1.8, env.TMPDIR=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, library.jansi.path=/usr/local/Cellar/maven/3.6.3_1/libexec/lib/jansi-native, env.TERM_PROGRAM=iTerm.app, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, env.OLDPWD=/Users/janke/local/repos/antlrworks-jank, env.PWD=/Users/janke/local/repos/antlrworks-jank, env.PAGER=less, java.class.path=/usr/local/Cellar/maven/3.6.3_1/libexec/boot/plexus-classworlds-2.6.0.jar, env.HOME=/Users/janke, java.vm.vendor=Oracle Corporation, gpg.keyname=24AF1EA5, maven.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/conf, env.HOMEBREW_DEVELOPER=1, sun.java.launcher=SUN_STANDARD, user.country=US, sun.cpu.endian=little, user.language=en, env.XPC_SERVICE_NAME=0, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.name=OpenJDK Runtime Environment, project.build.sourceEncoding=UTF-8, env.MAVEN_CMD_LINE_ARGS= -X -e compile, java.vendor.url.bug=https://bugreport.java.com/bugreport/, user.dir=/Users/janke/local/repos/antlrworks-jank, antlr.version=4.8-1, java.vm.version=13.0.2+8}
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/src/main/resources
excludes []
includes []
[INFO] skip non existing resourceDirectory /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/src/main/resources
[DEBUG] no use filter components
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ editor-containingfolder ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile' with basic configurator -->
[DEBUG] (f) basedir = /Users/janke/local/repos/antlrworks-jank/editor-containingfolder
[DEBUG] (f) buildDirectory = /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/target
[DEBUG] (f) compilePath = [/Users/janke/local/repos/antlrworks-jank/editor-containingfolder/target/classes]
[DEBUG] (f) compileSourceRoots = [/Users/janke/local/repos/antlrworks-jank/editor-containingfolder/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 = /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/target/generated-sources/annotations
[DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile {execution: default-compile}
[DEBUG] (f) optimize = false
[DEBUG] (f) outputDirectory = /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/target/classes
[DEBUG] (f) parameters = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:editor-containingfolder:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/pom.xml
[DEBUG] (f) projectArtifact = net.apjanke.antlrworks-jank:editor-containingfolder:jar:2.6.0-SNAPSHOT
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) showDeprecation = false
[DEBUG] (f) showWarnings = false
[DEBUG] (f) skipMultiThreadWarning = false
[DEBUG] (f) source = 8
[DEBUG] (f) staleMillis = 0
[DEBUG] (s) target = 8
[DEBUG] (f) useIncrementalCompilation = true
[DEBUG] (f) verbose = false
[DEBUG] -- end configuration --
[DEBUG] Using compiler 'javac'.
[INFO] No sources to compile
[INFO]
[INFO] ----------< net.apjanke.antlrworks-jank:antlr-works-netbeans >----------
[INFO] Building antlr-works-netbeans 2.6.0-SNAPSHOT [4/9]
[INFO] --------------------------------[ nbm ]---------------------------------
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-resources-plugin/maven-metadata.xml in local (/Users/janke/.m2/repository)
[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.1.0 from repository central (https://repo.maven.apache.org/maven2, default, releases)
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-surefire-plugin/maven-metadata.xml in local (/Users/janke/.m2/repository)
[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 3.0.0-M4 from repository central (https://repo.maven.apache.org/maven2, default, releases)
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml in local (/Users/janke/.m2/repository)
[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] Could not find metadata org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml in local (/Users/janke/.m2/repository)
[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] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile]
[DEBUG] Repositories (dependencies): [netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans/, default, releases+snapshots), atricore (http://repository.atricore.org/m2-release-repository/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:3.1.0:resources (default-resources)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<addDefaultExcludes default-value="true"/>
<buildFilters default-value="${project.build.filters}"/>
<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.apache.maven.plugins:maven-compiler-plugin:3.8.1: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">1.8</source>
<staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
<target default-value="1.6">1.8</target>
<useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
<verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[DEBUG] =======================================================================
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=325749, ConflictMarker.markTime=168443, ConflictMarker.nodeCount=557, ConflictIdSorter.graphTime=273136, ConflictIdSorter.topsortTime=340644, ConflictIdSorter.conflictIdCount=80, ConflictIdSorter.conflictIdCycleCount=1, ConflictResolver.totalTime=1932070, ConflictResolver.conflictItemCount=555, DefaultDependencyCollector.collectTime=3687220, DefaultDependencyCollector.transformTime=3097345}
[DEBUG] net.apjanke.antlrworks-jank:antlr-works-netbeans:nbm:2.6.0-SNAPSHOT
[DEBUG] javax.annotation:javax.annotation-api:jar:1.3.2:compile
[DEBUG] org.netbeans.api:org-netbeans-api-annotations-common:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-palette:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-awt:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-dialogs:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-explorer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-tabcontrol:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-loaders:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-scripting:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-templates:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-modules:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-nodes:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-text:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-lookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-windows:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-document:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-fold-nbui:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-guards:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-indent:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib2:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-lexer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-actions:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-fold:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-ui:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-mimelookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-settings-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-keymap:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-options-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-core:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-bootstrap:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-keyring:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-sampler:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-swing-plaf:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-openide-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-intent:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-libs-asm:jar:RELEASE112:runtime
[DEBUG] org.ow2.asm:asm-all:jar:5.0.1:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup-base:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-spi-quicksearch:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-outline:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-editor:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints-projects:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-tools-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-projectapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-navigator:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-indexing:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-java-classpath:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-libs-lucene:jar:RELEASE112:compile
[DEBUG] org.apache.lucene:lucene-core:jar:3.5.0:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-parsing-lucene:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-masterfs:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-project-indexingbridge:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi-base:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-queries:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-tasklist:jar:RELEASE112:compile
[DEBUG] org.antlr:antlr4-runtime:jar:4.8-1:compile
[DEBUG] org.antlr:stringtemplate:jar:4.0.2:compile
[DEBUG] org.antlr:antlr-runtime:jar:3.3:compile
[DEBUG] org.antlr:antlr4:jar:4.8-1:compile
[DEBUG] org.antlr:ST4:jar:4.3:compile
[DEBUG] org.abego.treelayout:org.abego.treelayout.core:jar:1.0.3:compile
[DEBUG] org.glassfish:javax.json:jar:1.0.4:compile
[DEBUG] com.ibm.icu:icu4j:jar:61.1:compile
[DEBUG] junit:junit:jar:4.13:test
[DEBUG] org.hamcrest:hamcrest-core:jar:1.3:test
[INFO]
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ antlr-works-netbeans ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=59232, ConflictMarker.markTime=32909, ConflictMarker.nodeCount=68, ConflictIdSorter.graphTime=25016, ConflictIdSorter.topsortTime=17644, ConflictIdSorter.conflictIdCount=28, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=253453, ConflictResolver.conflictItemCount=67, DefaultDependencyCollector.collectTime=20716913, DefaultDependencyCollector.transformTime=434103}
[DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:3.1.0
[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.7.1:compile (version managed from default)
[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.1.0: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.1.0
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.1.0
[DEBUG] Imported: < project>net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.1.0
[DEBUG] Included: org.apache.maven.plugins:maven-resources-plugin:jar:3.1.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.sonatype.aether:aether-util:jar:1.7
[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.codehaus.plexus:plexus-utils:jar:3.1.0
[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.1.0:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:3.1.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:3.1.0: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 = /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/classes
[DEBUG] (s) overwrite = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/pom.xml
[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) skip = false
[DEBUG] (f) supportMultiLineFiltering = false
[DEBUG] (f) useBuildFilters = true
[DEBUG] (s) useDefaultDelimiters = true
[DEBUG] -- end configuration --
[DEBUG] properties used {env.TERM=xterm-256color, java.specification.version=13, sun.arch.data.model=64, env.CLICOLOR=1, java.vendor.url=https://openjdk.java.net/, env.COLORFGBG=12;8, env.GOPATH=/Users/janke/local/go-work, sun.boot.library.path=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home/lib, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X -e compile, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-01-14, version=2.6.0-SNAPSHOT, java.home=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home, env.GUIEDITOR=subl, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.LC_TERMINAL_VERSION=3.3.9, java.runtime.version=13.0.2+8, env.LSCOLORS=gxxxdxdxdxexexdxdxgxgx, env.PATH=/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin, env.LS_COLORS=di=36:so=33:pi=33:ex=33:bd=34:cd=34:su=33:sg=33:tw=36:ow=36:ln=00;04, file.encoding=UTF-8, env.HOMEBREW_EDITOR=subl, env.HISTCONTROL=ignoredups, env.SHLVL=2, project.baseUri=file:/Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/, java.io.tmpdir=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, java.version=13.0.2, java.vm.specification.name=Java Virtual Machine Specification, netbeans.version=RELEASE112, java.library.path=/Users/janke/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=N/A, env.JAVA_MAIN_CLASS_11911=org.codehaus.plexus.classworlds.launcher.Launcher, classworlds.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/bin/m2.conf, sun.io.unicode.encoding=UnicodeBig, env.LANG=en_US.UTF-8, env.HOMEBREW_SANDBOX=1, java.vm.specification.version=13, os.name=Mac OS X, env.DISPLAY=/private/tmp/com.apple.launchd.O2942FNRqP/org.macosforge.xquartz:0, release.username=apjanke, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, maven.compiler.source=1.8, user.home=/Users/janke, env.XML_CATALOG_FILES=/usr/local/etc/xml/catalog, env.EDITOR=vi, maven.build.timestamp=2020-05-08T16:59:36Z, brandingToken=antlrworks2jank, env.COLORTERM=truecolor, env.Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.YiSqoN3EU9/Render, env.ITERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.ITERM_PROFILE=Solarized - Dark - apj, path.separator=:, os.version=10.14.6, java.vm.name=OpenJDK 64-Bit Server VM, env.SHELL=/bin/zsh, gpg.executable=gpg2, env.HISTSIZE=32768, os.arch=x86_64, env.HISTFILESIZE=32768, maven.multiModuleProjectDirectory=/Users/janke/local/repos/antlrworks-jank, env.MAVEN_PROJECTBASEDIR=/Users/janke/local/repos/antlrworks-jank, java.vm.info=mixed mode, sharing, env.USER=janke, java.class.version=57.0, env.HOMEBREW_NO_AUTO_UPDATE=1, sun.jnu.encoding=UTF-8, env.HISTIGNORE=ls:ls *:cd:cd -:pwd:exit:date:* --help, env.VISUAL=subl -w, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=/usr/local/Cellar/maven/3.6.3_1/libexec, env.JAVA_HOME=/usr/local/opt/openjdk, env.LC_TERMINAL=iTerm2, file.separator=/, env.LESS=-R, java.vm.compressedOopsMode=Non-zero disjoint base, line.separator=
, env.TERM_PROGRAM_VERSION=3.3.9, user.name=janke, env.XPC_FLAGS=0x0, env.LOGNAME=janke, env.__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0, env.TERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.9RGvwmJ5GD/Listeners, env.TERMINFO_DIRS=/Users/janke/.terminfo:/usr/local/share/terminfo:, maven.compiler.target=1.8, env.TMPDIR=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, library.jansi.path=/usr/local/Cellar/maven/3.6.3_1/libexec/lib/jansi-native, env.TERM_PROGRAM=iTerm.app, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, env.OLDPWD=/Users/janke/local/repos/antlrworks-jank, env.PWD=/Users/janke/local/repos/antlrworks-jank, env.PAGER=less, java.class.path=/usr/local/Cellar/maven/3.6.3_1/libexec/boot/plexus-classworlds-2.6.0.jar, env.HOME=/Users/janke, java.vm.vendor=Oracle Corporation, gpg.keyname=24AF1EA5, maven.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/conf, env.HOMEBREW_DEVELOPER=1, sun.java.launcher=SUN_STANDARD, user.country=US, sun.cpu.endian=little, user.language=en, env.XPC_SERVICE_NAME=0, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.name=OpenJDK Runtime Environment, project.build.sourceEncoding=UTF-8, env.MAVEN_CMD_LINE_ARGS= -X -e compile, java.vendor.url.bug=https://bugreport.java.com/bugreport/, user.dir=/Users/janke/local/repos/antlrworks-jank, antlr.version=4.8-1, java.vm.version=13.0.2+8}
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/src/main/resources
excludes []
includes []
[INFO] skip non existing resourceDirectory /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/src/main/resources
[DEBUG] no use filter components
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ antlr-works-netbeans ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=72495, ConflictMarker.markTime=45697, ConflictMarker.nodeCount=118, ConflictIdSorter.graphTime=31296, ConflictIdSorter.topsortTime=24159, ConflictIdSorter.conflictIdCount=45, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=348115, ConflictResolver.conflictItemCount=72, DefaultDependencyCollector.collectTime=2692884, DefaultDependencyCollector.transformTime=539570}
[DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:3.8.1
[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 (version managed from default)
[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 (version managed from default)
[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.1-735602335
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1-735602335
[DEBUG] Imported: < project>net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1-735602335
[DEBUG] Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.8.1
[DEBUG] Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2
[DEBUG] Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7
[DEBUG] Included: org.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.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1-735602335, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile' with basic configurator -->
[DEBUG] (f) basedir = /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans
[DEBUG] (f) buildDirectory = /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target
[DEBUG] (f) compilePath = [/Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/classes, /Users/janke/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-annotations-common/RELEASE112/org-netbeans-api-annotations-common-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-palette/RELEASE112/org-netbeans-spi-palette-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-awt/RELEASE112/org-openide-awt-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-dialogs/RELEASE112/org-openide-dialogs-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-explorer/RELEASE112/org-openide-explorer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-tabcontrol/RELEASE112/org-netbeans-swing-tabcontrol-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems/RELEASE112/org-openide-filesystems-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-loaders/RELEASE112/org-openide-loaders-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-scripting/RELEASE112/org-netbeans-api-scripting-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-templates/RELEASE112/org-netbeans-api-templates-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-modules/RELEASE112/org-openide-modules-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-nodes/RELEASE112/org-openide-nodes-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-text/RELEASE112/org-openide-text-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util/RELEASE112/org-openide-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-lookup/RELEASE112/org-openide-util-lookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-windows/RELEASE112/org-openide-windows-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor/RELEASE112/org-netbeans-modules-editor-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress/RELEASE112/org-netbeans-api-progress-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress-nb/RELEASE112/org-netbeans-api-progress-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-document/RELEASE112/org-netbeans-modules-editor-document-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-guards/RELEASE112/org-netbeans-modules-editor-guards-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-indent/RELEASE112/org-netbeans-modules-editor-indent-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib2/RELEASE112/org-netbeans-modules-editor-lib2-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-lexer/RELEASE112/org-netbeans-modules-lexer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-actions/RELEASE112/org-openide-actions-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems-nb/RELEASE112/org-openide-filesystems-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-util/RELEASE112/org-netbeans-modules-editor-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-fold/RELEASE112/org-netbeans-modules-editor-fold-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings-lib/RELEASE112/org-netbeans-modules-editor-settings-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-ui/RELEASE112/org-openide-util-ui-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib/RELEASE112/org-netbeans-modules-editor-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-mimelookup/RELEASE112/org-netbeans-modules-editor-mimelookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings/RELEASE112/org-netbeans-modules-editor-settings-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-editor-settings-storage/RELEASE112/org-netbeans-modules-editor-settings-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-keymap/RELEASE112/org-netbeans-modules-options-keymap-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-options-api/RELEASE112/org-netbeans-modules-options-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-quicksearch/RELEASE112/org-netbeans-spi-quicksearch-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-outline/RELEASE112/org-netbeans-swing-outline-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-editor/RELEASE112/org-netbeans-modules-options-editor-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints-projects/RELEASE112/org-netbeans-spi-editor-hints-projects-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-tools-storage/RELEASE112/org-netbeans-modules-editor-tools-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectapi/RELEASE112/org-netbeans-modules-projectapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi/RELEASE112/org-netbeans-modules-projectuiapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints/RELEASE112/org-netbeans-spi-editor-hints-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-navigator/RELEASE112/org-netbeans-spi-navigator-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-indexing/RELEASE112/org-netbeans-modules-parsing-indexing-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-java-classpath/RELEASE112/org-netbeans-api-java-classpath-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-libs-lucene/RELEASE112/org-netbeans-libs-lucene-RELEASE112.jar, /Users/janke/.m2/repository/org/apache/lucene/lucene-core/3.5.0/lucene-core-3.5.0.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-api/RELEASE112/org-netbeans-modules-parsing-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi-base/RELEASE112/org-netbeans-modules-projectuiapi-base-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-queries/RELEASE112/org-netbeans-modules-queries-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-tasklist/RELEASE112/org-netbeans-spi-tasklist-RELEASE112.jar, /Users/janke/.m2/repository/org/antlr/antlr4-runtime/4.8-1/antlr4-runtime-4.8-1.jar, /Users/janke/.m2/repository/org/antlr/stringtemplate/4.0.2/stringtemplate-4.0.2.jar, /Users/janke/.m2/repository/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar, /Users/janke/.m2/repository/org/antlr/antlr4/4.8-1/antlr4-4.8-1.jar, /Users/janke/.m2/repository/org/antlr/ST4/4.3/ST4-4.3.jar, /Users/janke/.m2/repository/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.jar, /Users/janke/.m2/repository/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar, /Users/janke/.m2/repository/com/ibm/icu/icu4j/61.1/icu4j-61.1.jar]
[DEBUG] (f) compileSourceRoots = [/Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/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 = /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/generated-sources/annotations
[DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile {execution: default-compile}
[DEBUG] (f) optimize = false
[DEBUG] (f) outputDirectory = /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/classes
[DEBUG] (f) parameters = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/pom.xml
[DEBUG] (f) projectArtifact = net.apjanke.antlrworks-jank:antlr-works-netbeans:nbm:2.6.0-SNAPSHOT
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) showDeprecation = false
[DEBUG] (f) showWarnings = false
[DEBUG] (f) skipMultiThreadWarning = false
[DEBUG] (f) source = 1.8
[DEBUG] (f) staleMillis = 0
[DEBUG] (s) target = 1.8
[DEBUG] (f) useIncrementalCompilation = true
[DEBUG] (f) verbose = false
[DEBUG] -- end configuration --
[DEBUG] Using compiler 'javac'.
[DEBUG] Adding /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/generated-sources/annotations to compile source roots:
/Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/src/main/java
[DEBUG] New compile source roots:
/Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/src/main/java
/Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/generated-sources/annotations
[DEBUG] CompilerReuseStrategy: reuseCreated
[DEBUG] useIncrementalCompilation enabled
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] -----------< net.apjanke.antlrworks-jank:tvl-editor-actions >-----------
[INFO] Building tvl-editor-actions 2.6.0-SNAPSHOT [5/9]
[INFO] --------------------------------[ jar ]---------------------------------
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: net.apjanke.antlrworks-jank:tvl-editor-actions:2.6.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile]
[DEBUG] Repositories (dependencies): [netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans/, default, releases+snapshots), atricore (http://repository.atricore.org/m2-release-repository/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<buildFilters default-value="${project.build.filters}"/>
<encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
<escapeString>${maven.resources.escapeString}</escapeString>
<escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
<includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
<outputDirectory default-value="${project.build.outputDirectory}"/>
<overwrite default-value="false">${maven.resources.overwrite}</overwrite>
<project default-value="${project}"/>
<resources default-value="${project.resources}"/>
<session default-value="${session}"/>
<supportMultiLineFiltering default-value="false">${maven.resources.supportMultiLineFiltering}</supportMultiLineFiltering>
<useBuildFilters default-value="true"/>
<useDefaultDelimiters default-value="true"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.8.1: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">1.8</source>
<staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
<target default-value="1.6">1.8</target>
<useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
<verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[DEBUG] =======================================================================
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=376294, ConflictMarker.markTime=177446, ConflictMarker.nodeCount=544, ConflictIdSorter.graphTime=321537, ConflictIdSorter.topsortTime=59766, ConflictIdSorter.conflictIdCount=72, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1414233, ConflictResolver.conflictItemCount=543, DefaultDependencyCollector.collectTime=2639083, DefaultDependencyCollector.transformTime=2414681}
[DEBUG] net.apjanke.antlrworks-jank:tvl-editor-actions:jar:2.6.0-SNAPSHOT
[DEBUG] javax.annotation:javax.annotation-api:jar:1.3.2:compile
[DEBUG] org.netbeans.api:org-netbeans-api-annotations-common:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-palette:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-awt:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-dialogs:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-explorer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-tabcontrol:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-loaders:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-scripting:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-templates:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-modules:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-nodes:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-text:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-lookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-windows:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-document:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-fold-nbui:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-guards:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-indent:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib2:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-lexer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-actions:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-fold:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-ui:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-mimelookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-settings-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-keymap:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-options-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-core:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-bootstrap:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-keyring:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-sampler:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-swing-plaf:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-openide-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-intent:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-libs-asm:jar:RELEASE112:runtime
[DEBUG] org.ow2.asm:asm-all:jar:5.0.1:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup-base:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-spi-quicksearch:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-outline:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints-projects:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-tools-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-editor:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-projectapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-navigator:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-indexing:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-java-classpath:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-libs-lucene:jar:RELEASE112:compile
[DEBUG] org.apache.lucene:lucene-core:jar:3.5.0:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-parsing-lucene:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-masterfs:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-project-indexingbridge:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi-base:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-queries:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-tasklist:jar:RELEASE112:compile
[DEBUG] junit:junit:jar:4.13:test
[DEBUG] org.hamcrest:hamcrest-core:jar:1.3:test
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ tvl-editor-actions ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:resources' with basic configurator -->
[DEBUG] (f) buildFilters = []
[DEBUG] (f) encoding = UTF-8
[DEBUG] (f) escapeWindowsPaths = true
[DEBUG] (s) includeEmptyDirs = false
[DEBUG] (s) outputDirectory = /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/classes
[DEBUG] (s) overwrite = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:tvl-editor-actions:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/pom.xml
[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) supportMultiLineFiltering = false
[DEBUG] (f) useBuildFilters = true
[DEBUG] (s) useDefaultDelimiters = true
[DEBUG] -- end configuration --
[DEBUG] properties used {env.TERM=xterm-256color, java.specification.version=13, sun.arch.data.model=64, env.CLICOLOR=1, java.vendor.url=https://openjdk.java.net/, env.COLORFGBG=12;8, env.GOPATH=/Users/janke/local/go-work, sun.boot.library.path=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home/lib, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X -e compile, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-01-14, version=2.6.0-SNAPSHOT, java.home=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home, env.GUIEDITOR=subl, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.LC_TERMINAL_VERSION=3.3.9, java.runtime.version=13.0.2+8, env.LSCOLORS=gxxxdxdxdxexexdxdxgxgx, env.PATH=/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin, env.LS_COLORS=di=36:so=33:pi=33:ex=33:bd=34:cd=34:su=33:sg=33:tw=36:ow=36:ln=00;04, file.encoding=UTF-8, env.HOMEBREW_EDITOR=subl, env.HISTCONTROL=ignoredups, env.SHLVL=2, java.io.tmpdir=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, java.version=13.0.2, java.vm.specification.name=Java Virtual Machine Specification, netbeans.version=RELEASE112, java.library.path=/Users/janke/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=N/A, env.JAVA_MAIN_CLASS_11911=org.codehaus.plexus.classworlds.launcher.Launcher, classworlds.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/bin/m2.conf, sun.io.unicode.encoding=UnicodeBig, env.LANG=en_US.UTF-8, env.HOMEBREW_SANDBOX=1, java.vm.specification.version=13, os.name=Mac OS X, env.DISPLAY=/private/tmp/com.apple.launchd.O2942FNRqP/org.macosforge.xquartz:0, release.username=apjanke, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, maven.compiler.source=1.8, user.home=/Users/janke, env.XML_CATALOG_FILES=/usr/local/etc/xml/catalog, env.EDITOR=vi, brandingToken=antlrworks2jank, env.COLORTERM=truecolor, env.Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.YiSqoN3EU9/Render, env.ITERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.ITERM_PROFILE=Solarized - Dark - apj, path.separator=:, os.version=10.14.6, java.vm.name=OpenJDK 64-Bit Server VM, env.SHELL=/bin/zsh, gpg.executable=gpg2, env.HISTSIZE=32768, os.arch=x86_64, env.HISTFILESIZE=32768, maven.multiModuleProjectDirectory=/Users/janke/local/repos/antlrworks-jank, env.MAVEN_PROJECTBASEDIR=/Users/janke/local/repos/antlrworks-jank, java.vm.info=mixed mode, sharing, env.USER=janke, java.class.version=57.0, env.HOMEBREW_NO_AUTO_UPDATE=1, sun.jnu.encoding=UTF-8, env.HISTIGNORE=ls:ls *:cd:cd -:pwd:exit:date:* --help, env.VISUAL=subl -w, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=/usr/local/Cellar/maven/3.6.3_1/libexec, env.JAVA_HOME=/usr/local/opt/openjdk, env.LC_TERMINAL=iTerm2, file.separator=/, env.LESS=-R, java.vm.compressedOopsMode=Non-zero disjoint base, line.separator=
, env.TERM_PROGRAM_VERSION=3.3.9, user.name=janke, env.XPC_FLAGS=0x0, env.LOGNAME=janke, env.__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0, env.TERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.9RGvwmJ5GD/Listeners, env.TERMINFO_DIRS=/Users/janke/.terminfo:/usr/local/share/terminfo:, maven.compiler.target=1.8, env.TMPDIR=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, library.jansi.path=/usr/local/Cellar/maven/3.6.3_1/libexec/lib/jansi-native, env.TERM_PROGRAM=iTerm.app, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, env.OLDPWD=/Users/janke/local/repos/antlrworks-jank, env.PWD=/Users/janke/local/repos/antlrworks-jank, env.PAGER=less, java.class.path=/usr/local/Cellar/maven/3.6.3_1/libexec/boot/plexus-classworlds-2.6.0.jar, env.HOME=/Users/janke, java.vm.vendor=Oracle Corporation, gpg.keyname=24AF1EA5, maven.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/conf, env.HOMEBREW_DEVELOPER=1, sun.java.launcher=SUN_STANDARD, user.country=US, sun.cpu.endian=little, user.language=en, env.XPC_SERVICE_NAME=0, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.name=OpenJDK Runtime Environment, project.build.sourceEncoding=UTF-8, env.MAVEN_CMD_LINE_ARGS= -X -e compile, java.vendor.url.bug=https://bugreport.java.com/bugreport/, user.dir=/Users/janke/local/repos/antlrworks-jank, antlr.version=4.8-1, java.vm.version=13.0.2+8}
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/src/main/resources
excludes []
includes []
[INFO] skip non existing resourceDirectory /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/src/main/resources
[DEBUG] no use filter components
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ tvl-editor-actions ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile' with basic configurator -->
[DEBUG] (f) basedir = /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions
[DEBUG] (f) buildDirectory = /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target
[DEBUG] (f) compilePath = [/Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/classes, /Users/janke/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-annotations-common/RELEASE112/org-netbeans-api-annotations-common-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-palette/RELEASE112/org-netbeans-spi-palette-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-awt/RELEASE112/org-openide-awt-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-dialogs/RELEASE112/org-openide-dialogs-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-explorer/RELEASE112/org-openide-explorer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-tabcontrol/RELEASE112/org-netbeans-swing-tabcontrol-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems/RELEASE112/org-openide-filesystems-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-loaders/RELEASE112/org-openide-loaders-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-scripting/RELEASE112/org-netbeans-api-scripting-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-templates/RELEASE112/org-netbeans-api-templates-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-modules/RELEASE112/org-openide-modules-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-nodes/RELEASE112/org-openide-nodes-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-text/RELEASE112/org-openide-text-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util/RELEASE112/org-openide-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-lookup/RELEASE112/org-openide-util-lookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-windows/RELEASE112/org-openide-windows-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor/RELEASE112/org-netbeans-modules-editor-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress/RELEASE112/org-netbeans-api-progress-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress-nb/RELEASE112/org-netbeans-api-progress-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-document/RELEASE112/org-netbeans-modules-editor-document-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-guards/RELEASE112/org-netbeans-modules-editor-guards-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-indent/RELEASE112/org-netbeans-modules-editor-indent-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib2/RELEASE112/org-netbeans-modules-editor-lib2-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-lexer/RELEASE112/org-netbeans-modules-lexer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-actions/RELEASE112/org-openide-actions-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems-nb/RELEASE112/org-openide-filesystems-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-util/RELEASE112/org-netbeans-modules-editor-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-fold/RELEASE112/org-netbeans-modules-editor-fold-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings-lib/RELEASE112/org-netbeans-modules-editor-settings-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-ui/RELEASE112/org-openide-util-ui-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib/RELEASE112/org-netbeans-modules-editor-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-mimelookup/RELEASE112/org-netbeans-modules-editor-mimelookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings/RELEASE112/org-netbeans-modules-editor-settings-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-editor-settings-storage/RELEASE112/org-netbeans-modules-editor-settings-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-keymap/RELEASE112/org-netbeans-modules-options-keymap-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-options-api/RELEASE112/org-netbeans-modules-options-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-quicksearch/RELEASE112/org-netbeans-spi-quicksearch-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-outline/RELEASE112/org-netbeans-swing-outline-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints-projects/RELEASE112/org-netbeans-spi-editor-hints-projects-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-tools-storage/RELEASE112/org-netbeans-modules-editor-tools-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectapi/RELEASE112/org-netbeans-modules-projectapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi/RELEASE112/org-netbeans-modules-projectuiapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints/RELEASE112/org-netbeans-spi-editor-hints-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-navigator/RELEASE112/org-netbeans-spi-navigator-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-indexing/RELEASE112/org-netbeans-modules-parsing-indexing-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-java-classpath/RELEASE112/org-netbeans-api-java-classpath-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-libs-lucene/RELEASE112/org-netbeans-libs-lucene-RELEASE112.jar, /Users/janke/.m2/repository/org/apache/lucene/lucene-core/3.5.0/lucene-core-3.5.0.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-api/RELEASE112/org-netbeans-modules-parsing-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi-base/RELEASE112/org-netbeans-modules-projectuiapi-base-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-queries/RELEASE112/org-netbeans-modules-queries-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-tasklist/RELEASE112/org-netbeans-spi-tasklist-RELEASE112.jar]
[DEBUG] (f) compileSourceRoots = [/Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/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 = /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/generated-sources/annotations
[DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile {execution: default-compile}
[DEBUG] (f) optimize = false
[DEBUG] (f) outputDirectory = /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/classes
[DEBUG] (f) parameters = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:tvl-editor-actions:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/pom.xml
[DEBUG] (f) projectArtifact = net.apjanke.antlrworks-jank:tvl-editor-actions:jar:2.6.0-SNAPSHOT
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) showDeprecation = false
[DEBUG] (f) showWarnings = false
[DEBUG] (f) skipMultiThreadWarning = false
[DEBUG] (f) source = 1.8
[DEBUG] (f) staleMillis = 0
[DEBUG] (s) target = 1.8
[DEBUG] (f) useIncrementalCompilation = true
[DEBUG] (f) verbose = false
[DEBUG] -- end configuration --
[DEBUG] Using compiler 'javac'.
[DEBUG] Adding /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/generated-sources/annotations to compile source roots:
/Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/src/main/java
[DEBUG] New compile source roots:
/Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/src/main/java
/Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/generated-sources/annotations
[DEBUG] CompilerReuseStrategy: reuseCreated
[DEBUG] useIncrementalCompilation enabled
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] ----------< net.apjanke.antlrworks-jank:works-editor-antlr4 >-----------
[INFO] Building works-editor-antlr4 2.6.0-SNAPSHOT [6/9]
[INFO] --------------------------------[ jar ]---------------------------------
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: net.apjanke.antlrworks-jank:works-editor-antlr4:2.6.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile]
[DEBUG] Repositories (dependencies): [netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans/, default, releases+snapshots), atricore (http://repository.atricore.org/m2-release-repository/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<buildFilters default-value="${project.build.filters}"/>
<encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
<escapeString>${maven.resources.escapeString}</escapeString>
<escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
<includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
<outputDirectory default-value="${project.build.outputDirectory}"/>
<overwrite default-value="false">${maven.resources.overwrite}</overwrite>
<project default-value="${project}"/>
<resources default-value="${project.resources}"/>
<session default-value="${session}"/>
<supportMultiLineFiltering default-value="false">${maven.resources.supportMultiLineFiltering}</supportMultiLineFiltering>
<useBuildFilters default-value="true"/>
<useDefaultDelimiters default-value="true"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.8.1: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">1.8</source>
<staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
<target default-value="1.6">1.8</target>
<useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
<verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[DEBUG] =======================================================================
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=289990, ConflictMarker.markTime=177073, ConflictMarker.nodeCount=597, ConflictIdSorter.graphTime=451034, ConflictIdSorter.topsortTime=187214, ConflictIdSorter.conflictIdCount=83, ConflictIdSorter.conflictIdCycleCount=1, ConflictResolver.totalTime=1731386, ConflictResolver.conflictItemCount=595, DefaultDependencyCollector.collectTime=3240982, DefaultDependencyCollector.transformTime=2889743}
[DEBUG] net.apjanke.antlrworks-jank:works-editor-antlr4:jar:2.6.0-SNAPSHOT
[DEBUG] net.apjanke.antlrworks-jank:editor-completionext:jar:2.6.0-SNAPSHOT:compile
[DEBUG] javax.annotation:javax.annotation-api:jar:1.3.2:compile
[DEBUG] org.netbeans.api:org-netbeans-api-annotations-common:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-palette:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-awt:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-dialogs:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-explorer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-tabcontrol:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-loaders:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-scripting:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-templates:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-modules:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-nodes:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-text:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-lookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-windows:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-document:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-fold-nbui:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-guards:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-indent:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib2:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-lexer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-actions:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-fold:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-ui:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-mimelookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-settings-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-keymap:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-options-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-core:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-bootstrap:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-keyring:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-swing-plaf:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-openide-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-intent:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-libs-asm:jar:RELEASE112:runtime
[DEBUG] org.ow2.asm:asm-all:jar:5.0.1:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup-base:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-spi-quicksearch:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-outline:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints-projects:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-tools-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-projectapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-navigator:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-indexing:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-java-classpath:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-libs-lucene:jar:RELEASE112:compile
[DEBUG] org.apache.lucene:lucene-core:jar:3.5.0:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-parsing-lucene:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-masterfs:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-project-indexingbridge:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi-base:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-queries:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-tasklist:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-sampler:jar:RELEASE112:compile
[DEBUG] net.apjanke.antlrworks-jank:tvl-editor-actions:jar:2.6.0-SNAPSHOT:compile
[DEBUG] net.apjanke.antlrworks-jank:antlr-works-netbeans:jar:2.6.0-SNAPSHOT:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-editor:jar:RELEASE112:compile
[DEBUG] org.antlr:antlr4-runtime:jar:4.8-1:compile
[DEBUG] org.antlr:stringtemplate:jar:4.0.2:compile
[DEBUG] org.antlr:antlr-runtime:jar:3.3:compile
[DEBUG] org.antlr:antlr4:jar:4.8-1:compile
[DEBUG] org.antlr:ST4:jar:4.3:compile
[DEBUG] org.abego.treelayout:org.abego.treelayout.core:jar:1.0.3:compile
[DEBUG] org.glassfish:javax.json:jar:1.0.4:compile
[DEBUG] com.ibm.icu:icu4j:jar:61.1:compile
[DEBUG] junit:junit:jar:4.13:test
[DEBUG] org.hamcrest:hamcrest-core:jar:1.3:test
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ works-editor-antlr4 ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:resources' with basic configurator -->
[DEBUG] (f) buildFilters = []
[DEBUG] (f) encoding = UTF-8
[DEBUG] (f) escapeWindowsPaths = true
[DEBUG] (s) includeEmptyDirs = false
[DEBUG] (s) outputDirectory = /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/classes
[DEBUG] (s) overwrite = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:works-editor-antlr4:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/pom.xml
[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) supportMultiLineFiltering = false
[DEBUG] (f) useBuildFilters = true
[DEBUG] (s) useDefaultDelimiters = true
[DEBUG] -- end configuration --
[DEBUG] properties used {env.TERM=xterm-256color, java.specification.version=13, sun.arch.data.model=64, env.CLICOLOR=1, java.vendor.url=https://openjdk.java.net/, env.COLORFGBG=12;8, env.GOPATH=/Users/janke/local/go-work, sun.boot.library.path=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home/lib, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X -e compile, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-01-14, version=2.6.0-SNAPSHOT, java.home=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home, env.GUIEDITOR=subl, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.LC_TERMINAL_VERSION=3.3.9, java.runtime.version=13.0.2+8, env.LSCOLORS=gxxxdxdxdxexexdxdxgxgx, env.PATH=/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin, env.LS_COLORS=di=36:so=33:pi=33:ex=33:bd=34:cd=34:su=33:sg=33:tw=36:ow=36:ln=00;04, file.encoding=UTF-8, env.HOMEBREW_EDITOR=subl, env.HISTCONTROL=ignoredups, env.SHLVL=2, java.io.tmpdir=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, java.version=13.0.2, java.vm.specification.name=Java Virtual Machine Specification, netbeans.version=RELEASE112, java.library.path=/Users/janke/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=N/A, env.JAVA_MAIN_CLASS_11911=org.codehaus.plexus.classworlds.launcher.Launcher, classworlds.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/bin/m2.conf, sun.io.unicode.encoding=UnicodeBig, env.LANG=en_US.UTF-8, env.HOMEBREW_SANDBOX=1, java.vm.specification.version=13, os.name=Mac OS X, env.DISPLAY=/private/tmp/com.apple.launchd.O2942FNRqP/org.macosforge.xquartz:0, release.username=apjanke, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, maven.compiler.source=1.8, user.home=/Users/janke, env.XML_CATALOG_FILES=/usr/local/etc/xml/catalog, env.EDITOR=vi, brandingToken=antlrworks2jank, env.COLORTERM=truecolor, env.Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.YiSqoN3EU9/Render, env.ITERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.ITERM_PROFILE=Solarized - Dark - apj, path.separator=:, os.version=10.14.6, java.vm.name=OpenJDK 64-Bit Server VM, env.SHELL=/bin/zsh, gpg.executable=gpg2, env.HISTSIZE=32768, os.arch=x86_64, env.HISTFILESIZE=32768, maven.multiModuleProjectDirectory=/Users/janke/local/repos/antlrworks-jank, env.MAVEN_PROJECTBASEDIR=/Users/janke/local/repos/antlrworks-jank, java.vm.info=mixed mode, sharing, env.USER=janke, java.class.version=57.0, env.HOMEBREW_NO_AUTO_UPDATE=1, sun.jnu.encoding=UTF-8, env.HISTIGNORE=ls:ls *:cd:cd -:pwd:exit:date:* --help, env.VISUAL=subl -w, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=/usr/local/Cellar/maven/3.6.3_1/libexec, env.JAVA_HOME=/usr/local/opt/openjdk, env.LC_TERMINAL=iTerm2, file.separator=/, env.LESS=-R, java.vm.compressedOopsMode=Non-zero disjoint base, line.separator=
, env.TERM_PROGRAM_VERSION=3.3.9, user.name=janke, env.XPC_FLAGS=0x0, env.LOGNAME=janke, env.__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0, env.TERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.9RGvwmJ5GD/Listeners, env.TERMINFO_DIRS=/Users/janke/.terminfo:/usr/local/share/terminfo:, maven.compiler.target=1.8, env.TMPDIR=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, library.jansi.path=/usr/local/Cellar/maven/3.6.3_1/libexec/lib/jansi-native, env.TERM_PROGRAM=iTerm.app, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, env.OLDPWD=/Users/janke/local/repos/antlrworks-jank, env.PWD=/Users/janke/local/repos/antlrworks-jank, env.PAGER=less, java.class.path=/usr/local/Cellar/maven/3.6.3_1/libexec/boot/plexus-classworlds-2.6.0.jar, env.HOME=/Users/janke, java.vm.vendor=Oracle Corporation, gpg.keyname=24AF1EA5, maven.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/conf, env.HOMEBREW_DEVELOPER=1, sun.java.launcher=SUN_STANDARD, user.country=US, sun.cpu.endian=little, user.language=en, env.XPC_SERVICE_NAME=0, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.name=OpenJDK Runtime Environment, project.build.sourceEncoding=UTF-8, env.MAVEN_CMD_LINE_ARGS= -X -e compile, java.vendor.url.bug=https://bugreport.java.com/bugreport/, user.dir=/Users/janke/local/repos/antlrworks-jank, antlr.version=4.8-1, java.vm.version=13.0.2+8}
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/resources
excludes []
includes []
[INFO] skip non existing resourceDirectory /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/resources
[DEBUG] no use filter components
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ works-editor-antlr4 ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile' with basic configurator -->
[DEBUG] (f) basedir = /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4
[DEBUG] (f) buildDirectory = /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target
[DEBUG] (f) compilePath = [/Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/classes, /Users/janke/local/repos/antlrworks-jank/editor-completionext/target/classes, /Users/janke/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-annotations-common/RELEASE112/org-netbeans-api-annotations-common-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-palette/RELEASE112/org-netbeans-spi-palette-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-awt/RELEASE112/org-openide-awt-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-dialogs/RELEASE112/org-openide-dialogs-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-explorer/RELEASE112/org-openide-explorer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-tabcontrol/RELEASE112/org-netbeans-swing-tabcontrol-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems/RELEASE112/org-openide-filesystems-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-loaders/RELEASE112/org-openide-loaders-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-scripting/RELEASE112/org-netbeans-api-scripting-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-templates/RELEASE112/org-netbeans-api-templates-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-modules/RELEASE112/org-openide-modules-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-nodes/RELEASE112/org-openide-nodes-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-text/RELEASE112/org-openide-text-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util/RELEASE112/org-openide-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-lookup/RELEASE112/org-openide-util-lookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-windows/RELEASE112/org-openide-windows-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-util/RELEASE112/org-netbeans-modules-editor-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor/RELEASE112/org-netbeans-modules-editor-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress/RELEASE112/org-netbeans-api-progress-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress-nb/RELEASE112/org-netbeans-api-progress-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-document/RELEASE112/org-netbeans-modules-editor-document-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-guards/RELEASE112/org-netbeans-modules-editor-guards-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-indent/RELEASE112/org-netbeans-modules-editor-indent-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib2/RELEASE112/org-netbeans-modules-editor-lib2-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-lexer/RELEASE112/org-netbeans-modules-lexer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-actions/RELEASE112/org-openide-actions-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems-nb/RELEASE112/org-openide-filesystems-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-fold/RELEASE112/org-netbeans-modules-editor-fold-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings-lib/RELEASE112/org-netbeans-modules-editor-settings-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-ui/RELEASE112/org-openide-util-ui-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib/RELEASE112/org-netbeans-modules-editor-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-mimelookup/RELEASE112/org-netbeans-modules-editor-mimelookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings/RELEASE112/org-netbeans-modules-editor-settings-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-editor-settings-storage/RELEASE112/org-netbeans-modules-editor-settings-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-keymap/RELEASE112/org-netbeans-modules-options-keymap-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-options-api/RELEASE112/org-netbeans-modules-options-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-quicksearch/RELEASE112/org-netbeans-spi-quicksearch-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-outline/RELEASE112/org-netbeans-swing-outline-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints-projects/RELEASE112/org-netbeans-spi-editor-hints-projects-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-tools-storage/RELEASE112/org-netbeans-modules-editor-tools-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectapi/RELEASE112/org-netbeans-modules-projectapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi/RELEASE112/org-netbeans-modules-projectuiapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints/RELEASE112/org-netbeans-spi-editor-hints-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-navigator/RELEASE112/org-netbeans-spi-navigator-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-indexing/RELEASE112/org-netbeans-modules-parsing-indexing-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-java-classpath/RELEASE112/org-netbeans-api-java-classpath-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-libs-lucene/RELEASE112/org-netbeans-libs-lucene-RELEASE112.jar, /Users/janke/.m2/repository/org/apache/lucene/lucene-core/3.5.0/lucene-core-3.5.0.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-api/RELEASE112/org-netbeans-modules-parsing-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi-base/RELEASE112/org-netbeans-modules-projectuiapi-base-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-queries/RELEASE112/org-netbeans-modules-queries-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-tasklist/RELEASE112/org-netbeans-spi-tasklist-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-sampler/RELEASE112/org-netbeans-modules-sampler-RELEASE112.jar, /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/classes, /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/classes, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-editor/RELEASE112/org-netbeans-modules-options-editor-RELEASE112.jar, /Users/janke/.m2/repository/org/antlr/antlr4-runtime/4.8-1/antlr4-runtime-4.8-1.jar, /Users/janke/.m2/repository/org/antlr/stringtemplate/4.0.2/stringtemplate-4.0.2.jar, /Users/janke/.m2/repository/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar, /Users/janke/.m2/repository/org/antlr/antlr4/4.8-1/antlr4-4.8-1.jar, /Users/janke/.m2/repository/org/antlr/ST4/4.3/ST4-4.3.jar, /Users/janke/.m2/repository/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.jar, /Users/janke/.m2/repository/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar, /Users/janke/.m2/repository/com/ibm/icu/icu4j/61.1/icu4j-61.1.jar]
[DEBUG] (f) compileSourceRoots = [/Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/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 = /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/generated-sources/annotations
[DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile {execution: default-compile}
[DEBUG] (f) optimize = false
[DEBUG] (f) outputDirectory = /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/classes
[DEBUG] (f) parameters = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:works-editor-antlr4:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/pom.xml
[DEBUG] (f) projectArtifact = net.apjanke.antlrworks-jank:works-editor-antlr4:jar:2.6.0-SNAPSHOT
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) showDeprecation = false
[DEBUG] (f) showWarnings = false
[DEBUG] (f) skipMultiThreadWarning = false
[DEBUG] (f) source = 1.8
[DEBUG] (f) staleMillis = 0
[DEBUG] (s) target = 1.8
[DEBUG] (f) useIncrementalCompilation = true
[DEBUG] (f) verbose = false
[DEBUG] -- end configuration --
[DEBUG] Using compiler 'javac'.
[DEBUG] Adding /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/generated-sources/annotations to compile source roots:
/Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java
[DEBUG] New compile source roots:
/Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java
/Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/generated-sources/annotations
[DEBUG] CompilerReuseStrategy: reuseCreated
[DEBUG] useIncrementalCompilation enabled
[DEBUG] Stale source detected: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java/org/antlr/works/editor/antlr4/completion/CompletionToolTip.java
[DEBUG] Stale source detected: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java/org/antlr/works/editor/antlr4/completion/AbstractParserCache.java
[DEBUG] Stale source detected: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java/org/antlr/works/editor/antlr4/completion/AbstractForestParser.java
[DEBUG] Stale source detected: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java/org/antlr/works/editor/antlr4/completion/CodeCompletionErrorStrategy.java
[DEBUG] Stale source detected: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java/org/antlr/works/editor/antlr4/completion/CaretReachedException.java
[DEBUG] Stale source detected: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java/org/antlr/works/editor/antlr4/completion/ForestParser.java
[DEBUG] Stale source detected: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java/org/antlr/works/editor/antlr4/completion/CodeCompletionParser.java
[DEBUG] Stale source detected: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java/org/antlr/works/editor/antlr4/parsing/DescriptiveErrorListener.java
[DEBUG] Stale source detected: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java/org/antlr/works/editor/antlr4/highlighting/TokenSourceWithStateV4.java
[DEBUG] Stale source detected: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java/org/antlr/works/editor/antlr4/completion/MultipleDecisionData.java
[DEBUG] Stale source detected: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java/org/antlr/works/editor/antlr4/completion/CompletionMatchResult.java
[DEBUG] Stale source detected: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java/org/antlr/works/editor/antlr4/parsing/ParseTrees.java
[DEBUG] Stale source detected: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java/org/antlr/works/editor/antlr4/completion/CaretToken.java
[DEBUG] Stale source detected: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java/org/antlr/works/editor/antlr4/formatting/AlignmentRequirement.java
[INFO] Changes detected - recompiling the module!
[DEBUG] Classpath:
[DEBUG] /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/classes
[DEBUG] /Users/janke/local/repos/antlrworks-jank/editor-completionext/target/classes
[DEBUG] /Users/janke/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-annotations-common/RELEASE112/org-netbeans-api-annotations-common-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-palette/RELEASE112/org-netbeans-spi-palette-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-awt/RELEASE112/org-openide-awt-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-dialogs/RELEASE112/org-openide-dialogs-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-explorer/RELEASE112/org-openide-explorer-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-tabcontrol/RELEASE112/org-netbeans-swing-tabcontrol-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems/RELEASE112/org-openide-filesystems-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-loaders/RELEASE112/org-openide-loaders-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-scripting/RELEASE112/org-netbeans-api-scripting-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-templates/RELEASE112/org-netbeans-api-templates-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-modules/RELEASE112/org-openide-modules-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-nodes/RELEASE112/org-openide-nodes-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-text/RELEASE112/org-openide-text-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-util/RELEASE112/org-openide-util-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-lookup/RELEASE112/org-openide-util-lookup-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-windows/RELEASE112/org-openide-windows-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-util/RELEASE112/org-netbeans-modules-editor-util-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor/RELEASE112/org-netbeans-modules-editor-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress/RELEASE112/org-netbeans-api-progress-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress-nb/RELEASE112/org-netbeans-api-progress-nb-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-document/RELEASE112/org-netbeans-modules-editor-document-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-guards/RELEASE112/org-netbeans-modules-editor-guards-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-indent/RELEASE112/org-netbeans-modules-editor-indent-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib2/RELEASE112/org-netbeans-modules-editor-lib2-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-lexer/RELEASE112/org-netbeans-modules-lexer-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-actions/RELEASE112/org-openide-actions-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems-nb/RELEASE112/org-openide-filesystems-nb-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-fold/RELEASE112/org-netbeans-modules-editor-fold-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings-lib/RELEASE112/org-netbeans-modules-editor-settings-lib-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-ui/RELEASE112/org-openide-util-ui-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib/RELEASE112/org-netbeans-modules-editor-lib-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-mimelookup/RELEASE112/org-netbeans-modules-editor-mimelookup-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings/RELEASE112/org-netbeans-modules-editor-settings-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-editor-settings-storage/RELEASE112/org-netbeans-modules-editor-settings-storage-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-keymap/RELEASE112/org-netbeans-modules-options-keymap-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-options-api/RELEASE112/org-netbeans-modules-options-api-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-quicksearch/RELEASE112/org-netbeans-spi-quicksearch-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-outline/RELEASE112/org-netbeans-swing-outline-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints-projects/RELEASE112/org-netbeans-spi-editor-hints-projects-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-tools-storage/RELEASE112/org-netbeans-modules-editor-tools-storage-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectapi/RELEASE112/org-netbeans-modules-projectapi-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi/RELEASE112/org-netbeans-modules-projectuiapi-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints/RELEASE112/org-netbeans-spi-editor-hints-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-navigator/RELEASE112/org-netbeans-spi-navigator-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-indexing/RELEASE112/org-netbeans-modules-parsing-indexing-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-java-classpath/RELEASE112/org-netbeans-api-java-classpath-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-libs-lucene/RELEASE112/org-netbeans-libs-lucene-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/apache/lucene/lucene-core/3.5.0/lucene-core-3.5.0.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-api/RELEASE112/org-netbeans-modules-parsing-api-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi-base/RELEASE112/org-netbeans-modules-projectuiapi-base-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-queries/RELEASE112/org-netbeans-modules-queries-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-tasklist/RELEASE112/org-netbeans-spi-tasklist-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-sampler/RELEASE112/org-netbeans-modules-sampler-RELEASE112.jar
[DEBUG] /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/classes
[DEBUG] /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/classes
[DEBUG] /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-editor/RELEASE112/org-netbeans-modules-options-editor-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/antlr/antlr4-runtime/4.8-1/antlr4-runtime-4.8-1.jar
[DEBUG] /Users/janke/.m2/repository/org/antlr/stringtemplate/4.0.2/stringtemplate-4.0.2.jar
[DEBUG] /Users/janke/.m2/repository/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar
[DEBUG] /Users/janke/.m2/repository/org/antlr/antlr4/4.8-1/antlr4-4.8-1.jar
[DEBUG] /Users/janke/.m2/repository/org/antlr/ST4/4.3/ST4-4.3.jar
[DEBUG] /Users/janke/.m2/repository/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.jar
[DEBUG] /Users/janke/.m2/repository/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar
[DEBUG] /Users/janke/.m2/repository/com/ibm/icu/icu4j/61.1/icu4j-61.1.jar
[DEBUG] Source roots:
[DEBUG] /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java
[DEBUG] /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/generated-sources/annotations
[DEBUG] Command line options:
[DEBUG] -d /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/classes -classpath /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/classes:/Users/janke/local/repos/antlrworks-jank/editor-completionext/target/classes:/Users/janke/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-annotations-common/RELEASE112/org-netbeans-api-annotations-common-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-palette/RELEASE112/org-netbeans-spi-palette-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-awt/RELEASE112/org-openide-awt-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-dialogs/RELEASE112/org-openide-dialogs-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-explorer/RELEASE112/org-openide-explorer-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-tabcontrol/RELEASE112/org-netbeans-swing-tabcontrol-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems/RELEASE112/org-openide-filesystems-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-loaders/RELEASE112/org-openide-loaders-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-scripting/RELEASE112/org-netbeans-api-scripting-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-templates/RELEASE112/org-netbeans-api-templates-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-modules/RELEASE112/org-openide-modules-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-nodes/RELEASE112/org-openide-nodes-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-text/RELEASE112/org-openide-text-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-util/RELEASE112/org-openide-util-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-util-lookup/RELEASE112/org-openide-util-lookup-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-windows/RELEASE112/org-openide-windows-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-util/RELEASE112/org-netbeans-modules-editor-util-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor/RELEASE112/org-netbeans-modules-editor-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress/RELEASE112/org-netbeans-api-progress-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress-nb/RELEASE112/org-netbeans-api-progress-nb-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-document/RELEASE112/org-netbeans-modules-editor-document-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-guards/RELEASE112/org-netbeans-modules-editor-guards-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-indent/RELEASE112/org-netbeans-modules-editor-indent-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib2/RELEASE112/org-netbeans-modules-editor-lib2-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-lexer/RELEASE112/org-netbeans-modules-lexer-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-actions/RELEASE112/org-openide-actions-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems-nb/RELEASE112/org-openide-filesystems-nb-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-fold/RELEASE112/org-netbeans-modules-editor-fold-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings-lib/RELEASE112/org-netbeans-modules-editor-settings-lib-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-util-ui/RELEASE112/org-openide-util-ui-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib/RELEASE112/org-netbeans-modules-editor-lib-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-mimelookup/RELEASE112/org-netbeans-modules-editor-mimelookup-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings/RELEASE112/org-netbeans-modules-editor-settings-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-editor-settings-storage/RELEASE112/org-netbeans-modules-editor-settings-storage-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-keymap/RELEASE112/org-netbeans-modules-options-keymap-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-options-api/RELEASE112/org-netbeans-modules-options-api-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-quicksearch/RELEASE112/org-netbeans-spi-quicksearch-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-outline/RELEASE112/org-netbeans-swing-outline-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints-projects/RELEASE112/org-netbeans-spi-editor-hints-projects-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-tools-storage/RELEASE112/org-netbeans-modules-editor-tools-storage-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectapi/RELEASE112/org-netbeans-modules-projectapi-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi/RELEASE112/org-netbeans-modules-projectuiapi-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints/RELEASE112/org-netbeans-spi-editor-hints-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-navigator/RELEASE112/org-netbeans-spi-navigator-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-indexing/RELEASE112/org-netbeans-modules-parsing-indexing-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-java-classpath/RELEASE112/org-netbeans-api-java-classpath-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-libs-lucene/RELEASE112/org-netbeans-libs-lucene-RELEASE112.jar:/Users/janke/.m2/repository/org/apache/lucene/lucene-core/3.5.0/lucene-core-3.5.0.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-api/RELEASE112/org-netbeans-modules-parsing-api-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi-base/RELEASE112/org-netbeans-modules-projectuiapi-base-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-queries/RELEASE112/org-netbeans-modules-queries-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-tasklist/RELEASE112/org-netbeans-spi-tasklist-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-sampler/RELEASE112/org-netbeans-modules-sampler-RELEASE112.jar:/Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/classes:/Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/classes:/Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-editor/RELEASE112/org-netbeans-modules-options-editor-RELEASE112.jar:/Users/janke/.m2/repository/org/antlr/antlr4-runtime/4.8-1/antlr4-runtime-4.8-1.jar:/Users/janke/.m2/repository/org/antlr/stringtemplate/4.0.2/stringtemplate-4.0.2.jar:/Users/janke/.m2/repository/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar:/Users/janke/.m2/repository/org/antlr/antlr4/4.8-1/antlr4-4.8-1.jar:/Users/janke/.m2/repository/org/antlr/ST4/4.3/ST4-4.3.jar:/Users/janke/.m2/repository/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.jar:/Users/janke/.m2/repository/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar:/Users/janke/.m2/repository/com/ibm/icu/icu4j/61.1/icu4j-61.1.jar: -sourcepath /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java:/Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/generated-sources/annotations: -s /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/generated-sources/annotations -g -nowarn -target 1.8 -source 1.8 -encoding UTF-8
[DEBUG] incrementalBuildHelper#beforeRebuildExecution
[INFO] Compiling 39 source files to /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/classes
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for ANTLRWorks2-Jank 2.6.0-SNAPSHOT:
[INFO]
[INFO] ANTLRWorks2-Jank ................................... SUCCESS [ 0.008 s]
[INFO] editor-completionext ............................... SUCCESS [ 0.512 s]
[INFO] editor-containingfolder ............................ SUCCESS [ 0.060 s]
[INFO] antlr-works-netbeans ............................... SUCCESS [ 0.310 s]
[INFO] tvl-editor-actions ................................. SUCCESS [ 0.117 s]
[INFO] works-editor-antlr4 ................................ FAILURE [ 1.242 s]
[INFO] antlr-works-editor ................................. SKIPPED
[INFO] tvl-editor-whitespace .............................. SKIPPED
[INFO] works-editor-antlr3 ................................ SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.898 s
[INFO] Finished at: 2020-05-08T12:59:38-04:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project works-editor-antlr4: Fatal error compiling: CompilerException: NullPointerException -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project works-editor-antlr4: Fatal error compiling
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke (Method.java:567)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
Caused by: org.apache.maven.plugin.MojoExecutionException: Fatal error compiling
at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute (AbstractCompilerMojo.java:1145)
at org.apache.maven.plugin.compiler.CompilerMojo.execute (CompilerMojo.java:187)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke (Method.java:567)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
Caused by: org.codehaus.plexus.compiler.CompilerException
at org.codehaus.plexus.compiler.javac.JavaxToolsCompiler.compileInProcess (JavaxToolsCompiler.java:173)
at org.codehaus.plexus.compiler.javac.JavacCompiler.performCompile (JavacCompiler.java:174)
at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute (AbstractCompilerMojo.java:1134)
at org.apache.maven.plugin.compiler.CompilerMojo.execute (CompilerMojo.java:187)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke (Method.java:567)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
Caused by: java.lang.NullPointerException
at com.sun.tools.javac.main.JavaCompiler.readSourceFile (JavaCompiler.java:840)
at com.sun.tools.javac.processing.JavacProcessingEnvironment$ImplicitCompleter.complete (JavacProcessingEnvironment.java:1576)
at com.sun.tools.javac.code.Symbol.complete (Symbol.java:657)
at com.sun.tools.javac.code.Symbol$ClassSymbol.complete (Symbol.java:1356)
at com.sun.tools.javac.code.Type$ClassType.complete (Type.java:1157)
at com.sun.tools.javac.code.Type$ClassType.getTypeArguments (Type.java:1083)
at com.sun.tools.javac.code.Printer.visitClassType (Printer.java:237)
at com.sun.tools.javac.code.Printer.visitClassType (Printer.java:52)
at com.sun.tools.javac.code.Type$ClassType.accept (Type.java:1010)
at com.sun.tools.javac.code.Printer.visit (Printer.java:136)
at com.sun.tools.javac.util.AbstractDiagnosticFormatter.formatArgument (AbstractDiagnosticFormatter.java:199)
at com.sun.tools.javac.util.AbstractDiagnosticFormatter.formatArguments (AbstractDiagnosticFormatter.java:167)
at com.sun.tools.javac.util.BasicDiagnosticFormatter.formatMessage (BasicDiagnosticFormatter.java:111)
at com.sun.tools.javac.util.BasicDiagnosticFormatter.formatMessage (BasicDiagnosticFormatter.java:67)
at com.sun.tools.javac.util.AbstractDiagnosticFormatter.formatArgument (AbstractDiagnosticFormatter.java:185)
at com.sun.tools.javac.util.AbstractDiagnosticFormatter.formatArguments (AbstractDiagnosticFormatter.java:167)
at com.sun.tools.javac.util.BasicDiagnosticFormatter.formatMessage (BasicDiagnosticFormatter.java:111)
at com.sun.tools.javac.util.BasicDiagnosticFormatter.formatMessage (BasicDiagnosticFormatter.java:67)
at com.sun.tools.javac.util.JCDiagnostic.getMessage (JCDiagnostic.java:788)
at com.sun.tools.javac.api.ClientCodeWrapper$DiagnosticSourceUnwrapper.getMessage (ClientCodeWrapper.java:835)
at org.codehaus.plexus.compiler.javac.JavaxToolsCompiler.compileInProcess (JavaxToolsCompiler.java:131)
at org.codehaus.plexus.compiler.javac.JavacCompiler.performCompile (JavacCompiler.java:174)
at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute (AbstractCompilerMojo.java:1134)
at org.apache.maven.plugin.compiler.CompilerMojo.execute (CompilerMojo.java:187)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke (Method.java:567)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[ERROR]
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <args> -rf :works-editor-antlr4
-------------- next part --------------
Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f)
Maven home: /usr/local/Cellar/maven/3.6.3_1/libexec
Java version: 13.0.2, vendor: N/A, runtime: /usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home
Default locale: en_US, platform encoding: UTF-8
OS name: "mac os x", version: "10.14.6", arch: "x86_64", family: "mac"
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG] Imported: javax.annotation.* < plexus.core
[DEBUG] Imported: javax.annotation.security.* < plexus.core
[DEBUG] Imported: javax.enterprise.inject.* < plexus.core
[DEBUG] Imported: javax.enterprise.util.* < plexus.core
[DEBUG] Imported: javax.inject.* < plexus.core
[DEBUG] Imported: org.apache.maven.* < plexus.core
[DEBUG] Imported: org.apache.maven.artifact < plexus.core
[DEBUG] Imported: org.apache.maven.classrealm < plexus.core
[DEBUG] Imported: org.apache.maven.cli < plexus.core
[DEBUG] Imported: org.apache.maven.configuration < plexus.core
[DEBUG] Imported: org.apache.maven.exception < plexus.core
[DEBUG] Imported: org.apache.maven.execution < plexus.core
[DEBUG] Imported: org.apache.maven.execution.scope < plexus.core
[DEBUG] Imported: org.apache.maven.lifecycle < plexus.core
[DEBUG] Imported: org.apache.maven.model < plexus.core
[DEBUG] Imported: org.apache.maven.monitor < plexus.core
[DEBUG] Imported: org.apache.maven.plugin < plexus.core
[DEBUG] Imported: org.apache.maven.profiles < plexus.core
[DEBUG] Imported: org.apache.maven.project < plexus.core
[DEBUG] Imported: org.apache.maven.reporting < plexus.core
[DEBUG] Imported: org.apache.maven.repository < plexus.core
[DEBUG] Imported: org.apache.maven.rtinfo < plexus.core
[DEBUG] Imported: org.apache.maven.settings < plexus.core
[DEBUG] Imported: org.apache.maven.toolchain < plexus.core
[DEBUG] Imported: org.apache.maven.usability < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.* < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.events < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core
[DEBUG] Imported: org.codehaus.classworlds < plexus.core
[DEBUG] Imported: org.codehaus.plexus.* < plexus.core
[DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core
[DEBUG] Imported: org.codehaus.plexus.component < plexus.core
[DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core
[DEBUG] Imported: org.codehaus.plexus.container < plexus.core
[DEBUG] Imported: org.codehaus.plexus.context < plexus.core
[DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core
[DEBUG] Imported: org.codehaus.plexus.logging < plexus.core
[DEBUG] Imported: org.codehaus.plexus.personality < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
[DEBUG] Imported: org.eclipse.aether.* < plexus.core
[DEBUG] Imported: org.eclipse.aether.artifact < plexus.core
[DEBUG] Imported: org.eclipse.aether.collection < plexus.core
[DEBUG] Imported: org.eclipse.aether.deployment < plexus.core
[DEBUG] Imported: org.eclipse.aether.graph < plexus.core
[DEBUG] Imported: org.eclipse.aether.impl < plexus.core
[DEBUG] Imported: org.eclipse.aether.installation < plexus.core
[DEBUG] Imported: org.eclipse.aether.internal.impl < plexus.core
[DEBUG] Imported: org.eclipse.aether.metadata < plexus.core
[DEBUG] Imported: org.eclipse.aether.repository < plexus.core
[DEBUG] Imported: org.eclipse.aether.resolution < plexus.core
[DEBUG] Imported: org.eclipse.aether.spi < plexus.core
[DEBUG] Imported: org.eclipse.aether.transfer < plexus.core
[DEBUG] Imported: org.eclipse.aether.version < plexus.core
[DEBUG] Imported: org.fusesource.jansi.* < plexus.core
[DEBUG] Imported: org.slf4j.* < plexus.core
[DEBUG] Imported: org.slf4j.event.* < plexus.core
[DEBUG] Imported: org.slf4j.helpers.* < plexus.core
[DEBUG] Imported: org.slf4j.spi.* < plexus.core
[DEBUG] Populating class realm maven.api
[INFO] Error stacktraces are turned on.
[DEBUG] Message scheme: color
[DEBUG] Message styles: debug info warning error success failure strong mojo project
[DEBUG] Reading global settings from /usr/local/Cellar/maven/3.6.3_1/libexec/conf/settings.xml
[DEBUG] Reading user settings from /Users/janke/.m2/settings.xml
[DEBUG] Reading global toolchains from /usr/local/Cellar/maven/3.6.3_1/libexec/conf/toolchains.xml
[DEBUG] Reading user toolchains from /Users/janke/.m2/toolchains.xml
[DEBUG] Using local repository at /Users/janke/.m2/repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/janke/.m2/repository
[INFO] Scanning for projects...
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:antlrworks-jank:pom:2.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging pom from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:editor-completionext:jar:2.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:editor-containingfolder:jar:2.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1351444, ConflictMarker.markTime=561068, ConflictMarker.nodeCount=207, ConflictIdSorter.graphTime=768446, ConflictIdSorter.topsortTime=349736, ConflictIdSorter.conflictIdCount=50, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=5683332, ConflictResolver.conflictItemCount=116, DefaultDependencyCollector.collectTime=304078066, DefaultDependencyCollector.transformTime=10612593}
[DEBUG] org.codehaus.mojo:nbm-maven-plugin:jar:3.13
[DEBUG] org.apache.maven:maven-artifact:jar:2.2.0:compile
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.1:compile
[DEBUG] org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.0:compile
[DEBUG] org.apache.ant:ant:jar:1.9.2:compile
[DEBUG] org.apache.ant:ant-launcher:jar:1.9.2:compile
[DEBUG] org.apache.maven:maven-project:jar:2.2.0:compile
[DEBUG] org.apache.maven:maven-settings:jar:2.2.0:compile
[DEBUG] org.apache.maven:maven-profile:jar:2.2.0:compile
[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.0:compile
[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.11:compile
[DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0:compile
[DEBUG] org.codehaus.plexus:plexus-archiver:jar:1.2:compile
[DEBUG] org.apache.maven.shared:maven-dependency-tree:jar:2.1:compile
[DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile
[DEBUG] org.eclipse.aether:aether-util:jar:0.9.0.M2:compile
[DEBUG] org.apache.maven.shared:maven-dependency-analyzer:jar:1.2:compile
[DEBUG] asm:asm:jar:3.0:compile
[DEBUG] org.apache.maven:maven-model:jar:2.2.0:compile
[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.0:compile
[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.0:compile
[DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile
[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[DEBUG] junit:junit:jar:4.10:test (scope managed from default) (version managed from default)
[DEBUG] org.hamcrest:hamcrest-core:jar:1.1:test
[DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile
[DEBUG] org.apache.maven.shared:maven-filtering:jar:1.0:compile
[DEBUG] org.apache.maven:maven-monitor:jar:2.0.6:compile
[DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
[DEBUG] org.apache.maven:maven-core:jar:2.2.0:compile
[DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.0:compile
[DEBUG] org.slf4j:slf4j-jdk14:jar:1.5.6:runtime
[DEBUG] org.slf4j:slf4j-api:jar:1.5.6:runtime
[DEBUG] org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime
[DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.2.0:compile
[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile
[DEBUG] org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile
[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.0:compile
[DEBUG] commons-cli:commons-cli:jar:1.2:compile
[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.0:compile
[DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
[DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG] javax.help:javahelp:jar:2.0.05:runtime
[DEBUG] org.codehaus.mojo:nbm-maven-harness:jar:8.0-beta:compile
[DEBUG] org.codehaus.plexus:plexus-io:jar:2.0.2:compile
[DEBUG] org.codehaus.mojo:nb-shared:jar:1.2:compile
[DEBUG] com.google.guava:guava:jar:12.0:compile
[DEBUG] com.google.code.findbugs:jsr305:jar:1.3.9:compile
[DEBUG] Created new class realm extension>org.codehaus.mojo:nbm-maven-plugin:3.13
[DEBUG] Importing foreign packages into class realm extension>org.codehaus.mojo:nbm-maven-plugin:3.13
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm extension>org.codehaus.mojo:nbm-maven-plugin:3.13
[DEBUG] Included: org.codehaus.mojo:nbm-maven-plugin:jar:3.13
[DEBUG] Included: org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.0
[DEBUG] Included: org.apache.ant:ant:jar:1.9.2
[DEBUG] Included: org.apache.ant:ant-launcher:jar:1.9.2
[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.11
[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0
[DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:1.2
[DEBUG] Included: org.apache.maven.shared:maven-dependency-tree:jar:2.1
[DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
[DEBUG] Included: org.eclipse.aether:aether-util:jar:0.9.0.M2
[DEBUG] Included: org.apache.maven.shared:maven-dependency-analyzer:jar:1.2
[DEBUG] Included: asm:asm:jar:3.0
[DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1
[DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.0
[DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
[DEBUG] Included: org.slf4j:slf4j-jdk14:jar:1.5.6
[DEBUG] Included: org.slf4j:jcl-over-slf4j:jar:1.5.6
[DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.0
[DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1
[DEBUG] Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1
[DEBUG] Included: commons-cli:commons-cli:jar:1.2
[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
[DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
[DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4
[DEBUG] Included: javax.help:javahelp:jar:2.0.05
[DEBUG] Included: org.codehaus.mojo:nbm-maven-harness:jar:8.0-beta
[DEBUG] Included: org.codehaus.plexus:plexus-io:jar:2.0.2
[DEBUG] Included: org.codehaus.mojo:nb-shared:jar:1.2
[DEBUG] Included: com.google.guava:guava:jar:12.0
[DEBUG] Included: com.google.code.findbugs:jsr305:jar:1.3.9
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:antlr-works-netbeans:nbm:2.6.0-SNAPSHOT: [ClassRealm[extension>org.codehaus.mojo:nbm-maven-plugin:3.13, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]]
[DEBUG] Created new class realm project>net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT
[DEBUG] Populating class realm project>net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT
[DEBUG] Looking up lifecycle mappings for packaging nbm from ClassRealm[project>net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:antlr-works-editor:nbm:2.6.0-SNAPSHOT: [ClassRealm[extension>org.codehaus.mojo:nbm-maven-plugin:3.13, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]]
[DEBUG] Looking up lifecycle mappings for packaging nbm from ClassRealm[project>net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:tvl-editor-actions:jar:2.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:tvl-editor-whitespace:jar:2.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:works-editor-antlr3:jar:2.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project net.apjanke.antlrworks-jank:works-editor-antlr4:jar:2.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] ANTLRWorks2-Jank [pom]
[INFO] editor-completionext [jar]
[INFO] editor-containingfolder [jar]
[INFO] antlr-works-netbeans [nbm]
[INFO] tvl-editor-actions [jar]
[INFO] works-editor-antlr4 [jar]
[INFO] antlr-works-editor [nbm]
[INFO] tvl-editor-whitespace [jar]
[INFO] works-editor-antlr3 [jar]
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: net.apjanke.antlrworks-jank:antlrworks-jank:pom:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:editor-completionext:jar:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:editor-containingfolder:jar:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:antlr-works-netbeans:nbm:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:tvl-editor-actions:jar:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:works-editor-antlr4:jar:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:antlr-works-editor:nbm:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:tvl-editor-whitespace:jar:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: net.apjanke.antlrworks-jank:works-editor-antlr3:jar:2.6.0-SNAPSHOT
[DEBUG] Tasks: [compile]
[DEBUG] Style: Regular
[DEBUG] =======================================================================
[INFO]
[INFO] ------------< net.apjanke.antlrworks-jank:antlrworks-jank >-------------
[INFO] Building ANTLRWorks2-Jank 2.6.0-SNAPSHOT [1/9]
[INFO] --------------------------------[ pom ]---------------------------------
[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: net.apjanke.antlrworks-jank:antlrworks-jank:2.6.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): []
[DEBUG] Repositories (dependencies): [netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans/, default, releases+snapshots), atricore (http://repository.atricore.org/m2-release-repository/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] =======================================================================
[INFO]
[INFO] ----------< net.apjanke.antlrworks-jank:editor-completionext >----------
[INFO] Building editor-completionext 2.6.0-SNAPSHOT [2/9]
[INFO] --------------------------------[ jar ]---------------------------------
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: net.apjanke.antlrworks-jank:editor-completionext:2.6.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile]
[DEBUG] Repositories (dependencies): [netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans/, default, releases+snapshots), atricore (http://repository.atricore.org/m2-release-repository/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<buildFilters default-value="${project.build.filters}"/>
<encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
<escapeString>${maven.resources.escapeString}</escapeString>
<escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
<includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
<outputDirectory default-value="${project.build.outputDirectory}"/>
<overwrite default-value="false">${maven.resources.overwrite}</overwrite>
<project default-value="${project}"/>
<resources default-value="${project.resources}"/>
<session default-value="${session}"/>
<supportMultiLineFiltering default-value="false">${maven.resources.supportMultiLineFiltering}</supportMultiLineFiltering>
<useBuildFilters default-value="true"/>
<useDefaultDelimiters default-value="true"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.8.1: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>13</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">1.8</source>
<staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
<target default-value="1.6">1.8</target>
<useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
<verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[DEBUG] =======================================================================
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=912242, ConflictMarker.markTime=569751, ConflictMarker.nodeCount=557, ConflictIdSorter.graphTime=482284, ConflictIdSorter.topsortTime=317278, ConflictIdSorter.conflictIdCount=80, ConflictIdSorter.conflictIdCycleCount=1, ConflictResolver.totalTime=6492406, ConflictResolver.conflictItemCount=555, DefaultDependencyCollector.collectTime=120339435, DefaultDependencyCollector.transformTime=8924891}
[DEBUG] net.apjanke.antlrworks-jank:editor-completionext:jar:2.6.0-SNAPSHOT
[DEBUG] javax.annotation:javax.annotation-api:jar:1.3.2:compile
[DEBUG] org.netbeans.api:org-netbeans-api-annotations-common:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-palette:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-awt:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-dialogs:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-explorer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-tabcontrol:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-loaders:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-scripting:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-templates:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-modules:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-nodes:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-text:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-lookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-windows:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-document:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-fold-nbui:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-guards:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-indent:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib2:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-lexer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-actions:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-fold:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-ui:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-mimelookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-settings-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-keymap:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-options-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-core:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-bootstrap:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-keyring:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-swing-plaf:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-openide-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-intent:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-libs-asm:jar:RELEASE112:runtime
[DEBUG] org.ow2.asm:asm-all:jar:5.0.1:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup-base:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-spi-quicksearch:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-outline:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints-projects:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-tools-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-editor:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-projectapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-navigator:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-indexing:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-java-classpath:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-libs-lucene:jar:RELEASE112:compile
[DEBUG] org.apache.lucene:lucene-core:jar:3.5.0:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-parsing-lucene:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-masterfs:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-project-indexingbridge:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi-base:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-queries:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-tasklist:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-sampler:jar:RELEASE112:compile
[DEBUG] org.antlr:antlr4-runtime:jar:4.8-1:compile
[DEBUG] org.antlr:stringtemplate:jar:4.0.2:compile
[DEBUG] org.antlr:antlr-runtime:jar:3.3:compile
[DEBUG] org.antlr:antlr4:jar:4.8-1:compile
[DEBUG] org.antlr:ST4:jar:4.3:compile
[DEBUG] org.abego.treelayout:org.abego.treelayout.core:jar:1.0.3:compile
[DEBUG] org.glassfish:javax.json:jar:1.0.4:compile
[DEBUG] com.ibm.icu:icu4j:jar:61.1:compile
[DEBUG] junit:junit:jar:4.13:test
[DEBUG] org.hamcrest:hamcrest-core:jar:1.3:test
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ editor-completionext ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=108659, ConflictMarker.markTime=35302, ConflictMarker.nodeCount=77, ConflictIdSorter.graphTime=42686, ConflictIdSorter.topsortTime=23744, ConflictIdSorter.conflictIdCount=26, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=446791, ConflictResolver.conflictItemCount=74, DefaultDependencyCollector.collectTime=9111481, DefaultDependencyCollector.transformTime=683798}
[DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:2.6
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6: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.reporting:maven-reporting-api:jar:2.0.6:compile
[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7: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.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile
[DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
[DEBUG] classworlds:classworlds:jar:1.1:compile
[DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile
[DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile
[DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile
[DEBUG] org.apache.maven:maven-monitor:jar:2.0.6: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] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile
[DEBUG] org.apache.maven.shared:maven-filtering:jar:1.1:compile
[DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.13:compile
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6
[DEBUG] Included: org.apache.maven.plugins:maven-resources-plugin: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: commons-cli:commons-cli:jar:1.0
[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
[DEBUG] Included: junit:junit:jar:3.8.1
[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5
[DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.1
[DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.13
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:resources' with basic configurator -->
[DEBUG] (f) buildFilters = []
[DEBUG] (f) encoding = UTF-8
[DEBUG] (f) escapeWindowsPaths = true
[DEBUG] (s) includeEmptyDirs = false
[DEBUG] (s) outputDirectory = /Users/janke/local/repos/antlrworks-jank/editor-completionext/target/classes
[DEBUG] (s) overwrite = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:editor-completionext:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/editor-completionext/pom.xml
[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /Users/janke/local/repos/antlrworks-jank/editor-completionext/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) supportMultiLineFiltering = false
[DEBUG] (f) useBuildFilters = true
[DEBUG] (s) useDefaultDelimiters = true
[DEBUG] -- end configuration --
[DEBUG] properties used {env.TERM=xterm-256color, java.specification.version=13, sun.arch.data.model=64, env.CLICOLOR=1, java.vendor.url=https://openjdk.java.net/, env.COLORFGBG=12;8, env.GOPATH=/Users/janke/local/go-work, sun.boot.library.path=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home/lib, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X -e compile, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-01-14, version=2.6.0-SNAPSHOT, java.home=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home, env.GUIEDITOR=subl, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.LC_TERMINAL_VERSION=3.3.9, java.runtime.version=13.0.2+8, env.LSCOLORS=gxxxdxdxdxexexdxdxgxgx, env.PATH=/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin, env.LS_COLORS=di=36:so=33:pi=33:ex=33:bd=34:cd=34:su=33:sg=33:tw=36:ow=36:ln=00;04, file.encoding=UTF-8, env.HOMEBREW_EDITOR=subl, env.HISTCONTROL=ignoredups, env.SHLVL=2, java.io.tmpdir=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, java.version=13.0.2, java.vm.specification.name=Java Virtual Machine Specification, netbeans.version=RELEASE112, java.library.path=/Users/janke/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=N/A, classworlds.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/bin/m2.conf, sun.io.unicode.encoding=UnicodeBig, env.LANG=en_US.UTF-8, env.HOMEBREW_SANDBOX=1, java.vm.specification.version=13, os.name=Mac OS X, env.DISPLAY=/private/tmp/com.apple.launchd.O2942FNRqP/org.macosforge.xquartz:0, release.username=apjanke, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, maven.compiler.source=1.8, user.home=/Users/janke, env.XML_CATALOG_FILES=/usr/local/etc/xml/catalog, env.EDITOR=vi, brandingToken=antlrworks2jank, env.COLORTERM=truecolor, env.Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.YiSqoN3EU9/Render, env.ITERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.ITERM_PROFILE=Solarized - Dark - apj, path.separator=:, os.version=10.14.6, java.vm.name=OpenJDK 64-Bit Server VM, env.SHELL=/bin/zsh, gpg.executable=gpg2, env.HISTSIZE=32768, os.arch=x86_64, env.HISTFILESIZE=32768, maven.multiModuleProjectDirectory=/Users/janke/local/repos/antlrworks-jank, env.MAVEN_PROJECTBASEDIR=/Users/janke/local/repos/antlrworks-jank, java.vm.info=mixed mode, sharing, env.USER=janke, java.class.version=57.0, env.HOMEBREW_NO_AUTO_UPDATE=1, sun.jnu.encoding=UTF-8, env.HISTIGNORE=ls:ls *:cd:cd -:pwd:exit:date:* --help, env.VISUAL=subl -w, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=/usr/local/Cellar/maven/3.6.3_1/libexec, env.JAVA_HOME=/usr/local/opt/openjdk, env.LC_TERMINAL=iTerm2, file.separator=/, env.LESS=-R, java.vm.compressedOopsMode=Non-zero disjoint base, line.separator=
, env.JAVA_MAIN_CLASS_12069=org.codehaus.plexus.classworlds.launcher.Launcher, env.TERM_PROGRAM_VERSION=3.3.9, user.name=janke, env.XPC_FLAGS=0x0, env.LOGNAME=janke, env.__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0, env.TERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.9RGvwmJ5GD/Listeners, env.TERMINFO_DIRS=/Users/janke/.terminfo:/usr/local/share/terminfo:, maven.compiler.target=1.8, env.TMPDIR=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, library.jansi.path=/usr/local/Cellar/maven/3.6.3_1/libexec/lib/jansi-native, env.TERM_PROGRAM=iTerm.app, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, env.OLDPWD=/Users/janke/local/repos/antlrworks-jank, env.PWD=/Users/janke/local/repos/antlrworks-jank, env.PAGER=less, java.class.path=/usr/local/Cellar/maven/3.6.3_1/libexec/boot/plexus-classworlds-2.6.0.jar, env.HOME=/Users/janke, java.vm.vendor=Oracle Corporation, gpg.keyname=24AF1EA5, maven.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/conf, env.HOMEBREW_DEVELOPER=1, sun.java.launcher=SUN_STANDARD, user.country=US, sun.cpu.endian=little, user.language=en, env.XPC_SERVICE_NAME=0, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.name=OpenJDK Runtime Environment, project.build.sourceEncoding=UTF-8, env.MAVEN_CMD_LINE_ARGS= -X -e compile, java.vendor.url.bug=https://bugreport.java.com/bugreport/, user.dir=/Users/janke/local/repos/antlrworks-jank, antlr.version=4.8-1, java.vm.version=13.0.2+8}
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory /Users/janke/local/repos/antlrworks-jank/editor-completionext/src/main/resources
excludes []
includes []
[INFO] skip non existing resourceDirectory /Users/janke/local/repos/antlrworks-jank/editor-completionext/src/main/resources
[DEBUG] no use filter components
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ editor-completionext ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=140339, ConflictMarker.markTime=84363, ConflictMarker.nodeCount=118, ConflictIdSorter.graphTime=56580, ConflictIdSorter.topsortTime=61120, ConflictIdSorter.conflictIdCount=45, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=908002, ConflictResolver.conflictItemCount=72, DefaultDependencyCollector.collectTime=81865106, DefaultDependencyCollector.transformTime=1289779}
[DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:3.8.1
[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 (version managed from default)
[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 (version managed from default)
[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.1
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1
[DEBUG] Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.8.1
[DEBUG] Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2
[DEBUG] Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7
[DEBUG] Included: org.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.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile' with basic configurator -->
[DEBUG] (f) basedir = /Users/janke/local/repos/antlrworks-jank/editor-completionext
[DEBUG] (f) buildDirectory = /Users/janke/local/repos/antlrworks-jank/editor-completionext/target
[DEBUG] (f) compilePath = [/Users/janke/local/repos/antlrworks-jank/editor-completionext/target/classes, /Users/janke/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-annotations-common/RELEASE112/org-netbeans-api-annotations-common-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-palette/RELEASE112/org-netbeans-spi-palette-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-awt/RELEASE112/org-openide-awt-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-dialogs/RELEASE112/org-openide-dialogs-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-explorer/RELEASE112/org-openide-explorer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-tabcontrol/RELEASE112/org-netbeans-swing-tabcontrol-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems/RELEASE112/org-openide-filesystems-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-loaders/RELEASE112/org-openide-loaders-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-scripting/RELEASE112/org-netbeans-api-scripting-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-templates/RELEASE112/org-netbeans-api-templates-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-modules/RELEASE112/org-openide-modules-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-nodes/RELEASE112/org-openide-nodes-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-text/RELEASE112/org-openide-text-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util/RELEASE112/org-openide-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-lookup/RELEASE112/org-openide-util-lookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-windows/RELEASE112/org-openide-windows-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-util/RELEASE112/org-netbeans-modules-editor-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor/RELEASE112/org-netbeans-modules-editor-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress/RELEASE112/org-netbeans-api-progress-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress-nb/RELEASE112/org-netbeans-api-progress-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-document/RELEASE112/org-netbeans-modules-editor-document-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-guards/RELEASE112/org-netbeans-modules-editor-guards-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-indent/RELEASE112/org-netbeans-modules-editor-indent-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib2/RELEASE112/org-netbeans-modules-editor-lib2-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-lexer/RELEASE112/org-netbeans-modules-lexer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-actions/RELEASE112/org-openide-actions-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems-nb/RELEASE112/org-openide-filesystems-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-fold/RELEASE112/org-netbeans-modules-editor-fold-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings-lib/RELEASE112/org-netbeans-modules-editor-settings-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-ui/RELEASE112/org-openide-util-ui-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib/RELEASE112/org-netbeans-modules-editor-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-mimelookup/RELEASE112/org-netbeans-modules-editor-mimelookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings/RELEASE112/org-netbeans-modules-editor-settings-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-editor-settings-storage/RELEASE112/org-netbeans-modules-editor-settings-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-keymap/RELEASE112/org-netbeans-modules-options-keymap-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-options-api/RELEASE112/org-netbeans-modules-options-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-quicksearch/RELEASE112/org-netbeans-spi-quicksearch-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-outline/RELEASE112/org-netbeans-swing-outline-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints-projects/RELEASE112/org-netbeans-spi-editor-hints-projects-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-tools-storage/RELEASE112/org-netbeans-modules-editor-tools-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectapi/RELEASE112/org-netbeans-modules-projectapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi/RELEASE112/org-netbeans-modules-projectuiapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints/RELEASE112/org-netbeans-spi-editor-hints-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-navigator/RELEASE112/org-netbeans-spi-navigator-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-indexing/RELEASE112/org-netbeans-modules-parsing-indexing-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-java-classpath/RELEASE112/org-netbeans-api-java-classpath-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-libs-lucene/RELEASE112/org-netbeans-libs-lucene-RELEASE112.jar, /Users/janke/.m2/repository/org/apache/lucene/lucene-core/3.5.0/lucene-core-3.5.0.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-api/RELEASE112/org-netbeans-modules-parsing-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi-base/RELEASE112/org-netbeans-modules-projectuiapi-base-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-queries/RELEASE112/org-netbeans-modules-queries-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-tasklist/RELEASE112/org-netbeans-spi-tasklist-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-sampler/RELEASE112/org-netbeans-modules-sampler-RELEASE112.jar, /Users/janke/.m2/repository/org/antlr/antlr4-runtime/4.8-1/antlr4-runtime-4.8-1.jar, /Users/janke/.m2/repository/org/antlr/stringtemplate/4.0.2/stringtemplate-4.0.2.jar, /Users/janke/.m2/repository/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar, /Users/janke/.m2/repository/org/antlr/antlr4/4.8-1/antlr4-4.8-1.jar, /Users/janke/.m2/repository/org/antlr/ST4/4.3/ST4-4.3.jar, /Users/janke/.m2/repository/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.jar, /Users/janke/.m2/repository/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar, /Users/janke/.m2/repository/com/ibm/icu/icu4j/61.1/icu4j-61.1.jar]
[DEBUG] (f) compileSourceRoots = [/Users/janke/local/repos/antlrworks-jank/editor-completionext/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 = /Users/janke/local/repos/antlrworks-jank/editor-completionext/target/generated-sources/annotations
[DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile {execution: default-compile}
[DEBUG] (f) optimize = false
[DEBUG] (f) outputDirectory = /Users/janke/local/repos/antlrworks-jank/editor-completionext/target/classes
[DEBUG] (f) parameters = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:editor-completionext:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/editor-completionext/pom.xml
[DEBUG] (f) projectArtifact = net.apjanke.antlrworks-jank:editor-completionext:jar:2.6.0-SNAPSHOT
[DEBUG] (s) release = 13
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) showDeprecation = false
[DEBUG] (f) showWarnings = false
[DEBUG] (f) skipMultiThreadWarning = false
[DEBUG] (f) source = 1.8
[DEBUG] (f) staleMillis = 0
[DEBUG] (s) target = 1.8
[DEBUG] (f) useIncrementalCompilation = true
[DEBUG] (f) verbose = false
[DEBUG] -- end configuration --
[DEBUG] Using compiler 'javac'.
[DEBUG] Adding /Users/janke/local/repos/antlrworks-jank/editor-completionext/target/generated-sources/annotations to compile source roots:
/Users/janke/local/repos/antlrworks-jank/editor-completionext/src/main/java
[DEBUG] New compile source roots:
/Users/janke/local/repos/antlrworks-jank/editor-completionext/src/main/java
/Users/janke/local/repos/antlrworks-jank/editor-completionext/target/generated-sources/annotations
[DEBUG] CompilerReuseStrategy: reuseCreated
[DEBUG] useIncrementalCompilation enabled
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --------< net.apjanke.antlrworks-jank:editor-containingfolder >---------
[INFO] Building editor-containingfolder 2.6.0-SNAPSHOT [3/9]
[INFO] --------------------------------[ jar ]---------------------------------
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: net.apjanke.antlrworks-jank:editor-containingfolder:2.6.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile]
[DEBUG] Repositories (dependencies): [netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans/, default, releases+snapshots), atricore (http://repository.atricore.org/m2-release-repository/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<buildFilters default-value="${project.build.filters}"/>
<encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
<escapeString>${maven.resources.escapeString}</escapeString>
<escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
<includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
<outputDirectory default-value="${project.build.outputDirectory}"/>
<overwrite default-value="false">${maven.resources.overwrite}</overwrite>
<project default-value="${project}"/>
<resources default-value="${project.resources}"/>
<session default-value="${session}"/>
<supportMultiLineFiltering default-value="false">${maven.resources.supportMultiLineFiltering}</supportMultiLineFiltering>
<useBuildFilters default-value="true"/>
<useDefaultDelimiters default-value="true"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.8.1: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>13</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] Dependency collection stats: {ConflictMarker.analyzeTime=12910, ConflictMarker.markTime=18742, ConflictMarker.nodeCount=3, ConflictIdSorter.graphTime=7404, ConflictIdSorter.topsortTime=11287, ConflictIdSorter.conflictIdCount=2, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=49178, ConflictResolver.conflictItemCount=2, DefaultDependencyCollector.collectTime=2223671, DefaultDependencyCollector.transformTime=120070}
[DEBUG] net.apjanke.antlrworks-jank:editor-containingfolder:jar:2.6.0-SNAPSHOT
[DEBUG] junit:junit:jar:4.13:test
[DEBUG] org.hamcrest:hamcrest-core:jar:1.3:test
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ editor-containingfolder ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:resources' with basic configurator -->
[DEBUG] (f) buildFilters = []
[DEBUG] (f) encoding = UTF-8
[DEBUG] (f) escapeWindowsPaths = true
[DEBUG] (s) includeEmptyDirs = false
[DEBUG] (s) outputDirectory = /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/target/classes
[DEBUG] (s) overwrite = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:editor-containingfolder:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/pom.xml
[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) supportMultiLineFiltering = false
[DEBUG] (f) useBuildFilters = true
[DEBUG] (s) useDefaultDelimiters = true
[DEBUG] -- end configuration --
[DEBUG] properties used {env.TERM=xterm-256color, java.specification.version=13, sun.arch.data.model=64, env.CLICOLOR=1, java.vendor.url=https://openjdk.java.net/, env.COLORFGBG=12;8, env.GOPATH=/Users/janke/local/go-work, sun.boot.library.path=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home/lib, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X -e compile, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-01-14, version=2.6.0-SNAPSHOT, java.home=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home, env.GUIEDITOR=subl, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.LC_TERMINAL_VERSION=3.3.9, java.runtime.version=13.0.2+8, env.LSCOLORS=gxxxdxdxdxexexdxdxgxgx, env.PATH=/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin, env.LS_COLORS=di=36:so=33:pi=33:ex=33:bd=34:cd=34:su=33:sg=33:tw=36:ow=36:ln=00;04, file.encoding=UTF-8, env.HOMEBREW_EDITOR=subl, env.HISTCONTROL=ignoredups, env.SHLVL=2, java.io.tmpdir=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, java.version=13.0.2, java.vm.specification.name=Java Virtual Machine Specification, netbeans.version=RELEASE112, java.library.path=/Users/janke/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=N/A, classworlds.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/bin/m2.conf, sun.io.unicode.encoding=UnicodeBig, env.LANG=en_US.UTF-8, env.HOMEBREW_SANDBOX=1, java.vm.specification.version=13, os.name=Mac OS X, env.DISPLAY=/private/tmp/com.apple.launchd.O2942FNRqP/org.macosforge.xquartz:0, release.username=apjanke, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, maven.compiler.source=1.8, user.home=/Users/janke, env.XML_CATALOG_FILES=/usr/local/etc/xml/catalog, env.EDITOR=vi, brandingToken=antlrworks2jank, env.COLORTERM=truecolor, env.Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.YiSqoN3EU9/Render, env.ITERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.ITERM_PROFILE=Solarized - Dark - apj, path.separator=:, os.version=10.14.6, java.vm.name=OpenJDK 64-Bit Server VM, env.SHELL=/bin/zsh, gpg.executable=gpg2, env.HISTSIZE=32768, os.arch=x86_64, env.HISTFILESIZE=32768, maven.multiModuleProjectDirectory=/Users/janke/local/repos/antlrworks-jank, env.MAVEN_PROJECTBASEDIR=/Users/janke/local/repos/antlrworks-jank, java.vm.info=mixed mode, sharing, env.USER=janke, java.class.version=57.0, env.HOMEBREW_NO_AUTO_UPDATE=1, sun.jnu.encoding=UTF-8, env.HISTIGNORE=ls:ls *:cd:cd -:pwd:exit:date:* --help, env.VISUAL=subl -w, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=/usr/local/Cellar/maven/3.6.3_1/libexec, env.JAVA_HOME=/usr/local/opt/openjdk, env.LC_TERMINAL=iTerm2, file.separator=/, env.LESS=-R, java.vm.compressedOopsMode=Non-zero disjoint base, line.separator=
, env.JAVA_MAIN_CLASS_12069=org.codehaus.plexus.classworlds.launcher.Launcher, env.TERM_PROGRAM_VERSION=3.3.9, user.name=janke, env.XPC_FLAGS=0x0, env.LOGNAME=janke, env.__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0, env.TERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.9RGvwmJ5GD/Listeners, env.TERMINFO_DIRS=/Users/janke/.terminfo:/usr/local/share/terminfo:, maven.compiler.target=1.8, env.TMPDIR=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, library.jansi.path=/usr/local/Cellar/maven/3.6.3_1/libexec/lib/jansi-native, env.TERM_PROGRAM=iTerm.app, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, env.OLDPWD=/Users/janke/local/repos/antlrworks-jank, env.PWD=/Users/janke/local/repos/antlrworks-jank, env.PAGER=less, java.class.path=/usr/local/Cellar/maven/3.6.3_1/libexec/boot/plexus-classworlds-2.6.0.jar, env.HOME=/Users/janke, java.vm.vendor=Oracle Corporation, gpg.keyname=24AF1EA5, maven.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/conf, env.HOMEBREW_DEVELOPER=1, sun.java.launcher=SUN_STANDARD, user.country=US, sun.cpu.endian=little, user.language=en, env.XPC_SERVICE_NAME=0, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.name=OpenJDK Runtime Environment, project.build.sourceEncoding=UTF-8, env.MAVEN_CMD_LINE_ARGS= -X -e compile, java.vendor.url.bug=https://bugreport.java.com/bugreport/, user.dir=/Users/janke/local/repos/antlrworks-jank, antlr.version=4.8-1, java.vm.version=13.0.2+8}
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/src/main/resources
excludes []
includes []
[INFO] skip non existing resourceDirectory /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/src/main/resources
[DEBUG] no use filter components
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ editor-containingfolder ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile' with basic configurator -->
[DEBUG] (f) basedir = /Users/janke/local/repos/antlrworks-jank/editor-containingfolder
[DEBUG] (f) buildDirectory = /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/target
[DEBUG] (f) compilePath = [/Users/janke/local/repos/antlrworks-jank/editor-containingfolder/target/classes]
[DEBUG] (f) compileSourceRoots = [/Users/janke/local/repos/antlrworks-jank/editor-containingfolder/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 = /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/target/generated-sources/annotations
[DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile {execution: default-compile}
[DEBUG] (f) optimize = false
[DEBUG] (f) outputDirectory = /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/target/classes
[DEBUG] (f) parameters = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:editor-containingfolder:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/editor-containingfolder/pom.xml
[DEBUG] (f) projectArtifact = net.apjanke.antlrworks-jank:editor-containingfolder:jar:2.6.0-SNAPSHOT
[DEBUG] (s) release = 13
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) showDeprecation = false
[DEBUG] (f) showWarnings = false
[DEBUG] (f) skipMultiThreadWarning = false
[DEBUG] (f) source = 1.8
[DEBUG] (f) staleMillis = 0
[DEBUG] (s) target = 1.8
[DEBUG] (f) useIncrementalCompilation = true
[DEBUG] (f) verbose = false
[DEBUG] -- end configuration --
[DEBUG] Using compiler 'javac'.
[INFO] No sources to compile
[INFO]
[INFO] ----------< net.apjanke.antlrworks-jank:antlr-works-netbeans >----------
[INFO] Building antlr-works-netbeans 2.6.0-SNAPSHOT [4/9]
[INFO] --------------------------------[ nbm ]---------------------------------
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-resources-plugin/maven-metadata.xml in local (/Users/janke/.m2/repository)
[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.1.0 from repository central (https://repo.maven.apache.org/maven2, default, releases)
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-surefire-plugin/maven-metadata.xml in local (/Users/janke/.m2/repository)
[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 3.0.0-M4 from repository central (https://repo.maven.apache.org/maven2, default, releases)
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml in local (/Users/janke/.m2/repository)
[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] Could not find metadata org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml in local (/Users/janke/.m2/repository)
[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] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile]
[DEBUG] Repositories (dependencies): [netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans/, default, releases+snapshots), atricore (http://repository.atricore.org/m2-release-repository/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:3.1.0:resources (default-resources)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<addDefaultExcludes default-value="true"/>
<buildFilters default-value="${project.build.filters}"/>
<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.apache.maven.plugins:maven-compiler-plugin:3.8.1: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>13</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">1.8</source>
<staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
<target default-value="1.6">1.8</target>
<useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
<verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[DEBUG] =======================================================================
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=390994, ConflictMarker.markTime=161696, ConflictMarker.nodeCount=557, ConflictIdSorter.graphTime=332838, ConflictIdSorter.topsortTime=510320, ConflictIdSorter.conflictIdCount=80, ConflictIdSorter.conflictIdCycleCount=1, ConflictResolver.totalTime=2224918, ConflictResolver.conflictItemCount=555, DefaultDependencyCollector.collectTime=5209833, DefaultDependencyCollector.transformTime=3723137}
[DEBUG] net.apjanke.antlrworks-jank:antlr-works-netbeans:nbm:2.6.0-SNAPSHOT
[DEBUG] javax.annotation:javax.annotation-api:jar:1.3.2:compile
[DEBUG] org.netbeans.api:org-netbeans-api-annotations-common:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-palette:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-awt:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-dialogs:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-explorer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-tabcontrol:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-loaders:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-scripting:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-templates:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-modules:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-nodes:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-text:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-lookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-windows:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-document:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-fold-nbui:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-guards:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-indent:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib2:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-lexer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-actions:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-fold:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-ui:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-mimelookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-settings-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-keymap:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-options-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-core:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-bootstrap:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-keyring:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-sampler:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-swing-plaf:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-openide-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-intent:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-libs-asm:jar:RELEASE112:runtime
[DEBUG] org.ow2.asm:asm-all:jar:5.0.1:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup-base:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-spi-quicksearch:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-outline:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-editor:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints-projects:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-tools-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-projectapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-navigator:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-indexing:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-java-classpath:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-libs-lucene:jar:RELEASE112:compile
[DEBUG] org.apache.lucene:lucene-core:jar:3.5.0:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-parsing-lucene:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-masterfs:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-project-indexingbridge:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi-base:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-queries:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-tasklist:jar:RELEASE112:compile
[DEBUG] org.antlr:antlr4-runtime:jar:4.8-1:compile
[DEBUG] org.antlr:stringtemplate:jar:4.0.2:compile
[DEBUG] org.antlr:antlr-runtime:jar:3.3:compile
[DEBUG] org.antlr:antlr4:jar:4.8-1:compile
[DEBUG] org.antlr:ST4:jar:4.3:compile
[DEBUG] org.abego.treelayout:org.abego.treelayout.core:jar:1.0.3:compile
[DEBUG] org.glassfish:javax.json:jar:1.0.4:compile
[DEBUG] com.ibm.icu:icu4j:jar:61.1:compile
[DEBUG] junit:junit:jar:4.13:test
[DEBUG] org.hamcrest:hamcrest-core:jar:1.3:test
[INFO]
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ antlr-works-netbeans ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=61558, ConflictMarker.markTime=35050, ConflictMarker.nodeCount=68, ConflictIdSorter.graphTime=48042, ConflictIdSorter.topsortTime=18915, ConflictIdSorter.conflictIdCount=28, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=468590, ConflictResolver.conflictItemCount=67, DefaultDependencyCollector.collectTime=14006058, DefaultDependencyCollector.transformTime=708699}
[DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:3.1.0
[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.7.1:compile (version managed from default)
[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.1.0: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.1.0
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.1.0
[DEBUG] Imported: < project>net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.1.0
[DEBUG] Included: org.apache.maven.plugins:maven-resources-plugin:jar:3.1.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.sonatype.aether:aether-util:jar:1.7
[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.codehaus.plexus:plexus-utils:jar:3.1.0
[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.1.0:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:3.1.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:3.1.0: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 = /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/classes
[DEBUG] (s) overwrite = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/pom.xml
[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) skip = false
[DEBUG] (f) supportMultiLineFiltering = false
[DEBUG] (f) useBuildFilters = true
[DEBUG] (s) useDefaultDelimiters = true
[DEBUG] -- end configuration --
[DEBUG] properties used {env.TERM=xterm-256color, java.specification.version=13, sun.arch.data.model=64, env.CLICOLOR=1, java.vendor.url=https://openjdk.java.net/, env.COLORFGBG=12;8, env.GOPATH=/Users/janke/local/go-work, sun.boot.library.path=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home/lib, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X -e compile, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-01-14, version=2.6.0-SNAPSHOT, java.home=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home, env.GUIEDITOR=subl, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.LC_TERMINAL_VERSION=3.3.9, java.runtime.version=13.0.2+8, env.LSCOLORS=gxxxdxdxdxexexdxdxgxgx, env.PATH=/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin, env.LS_COLORS=di=36:so=33:pi=33:ex=33:bd=34:cd=34:su=33:sg=33:tw=36:ow=36:ln=00;04, file.encoding=UTF-8, env.HOMEBREW_EDITOR=subl, env.HISTCONTROL=ignoredups, env.SHLVL=2, project.baseUri=file:/Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/, java.io.tmpdir=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, java.version=13.0.2, java.vm.specification.name=Java Virtual Machine Specification, netbeans.version=RELEASE112, java.library.path=/Users/janke/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=N/A, classworlds.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/bin/m2.conf, sun.io.unicode.encoding=UnicodeBig, env.LANG=en_US.UTF-8, env.HOMEBREW_SANDBOX=1, java.vm.specification.version=13, os.name=Mac OS X, env.DISPLAY=/private/tmp/com.apple.launchd.O2942FNRqP/org.macosforge.xquartz:0, release.username=apjanke, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, maven.compiler.source=1.8, user.home=/Users/janke, env.XML_CATALOG_FILES=/usr/local/etc/xml/catalog, env.EDITOR=vi, maven.build.timestamp=2020-05-08T17:05:45Z, brandingToken=antlrworks2jank, env.COLORTERM=truecolor, env.Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.YiSqoN3EU9/Render, env.ITERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.ITERM_PROFILE=Solarized - Dark - apj, path.separator=:, os.version=10.14.6, java.vm.name=OpenJDK 64-Bit Server VM, env.SHELL=/bin/zsh, gpg.executable=gpg2, env.HISTSIZE=32768, os.arch=x86_64, env.HISTFILESIZE=32768, maven.multiModuleProjectDirectory=/Users/janke/local/repos/antlrworks-jank, env.MAVEN_PROJECTBASEDIR=/Users/janke/local/repos/antlrworks-jank, java.vm.info=mixed mode, sharing, env.USER=janke, java.class.version=57.0, env.HOMEBREW_NO_AUTO_UPDATE=1, sun.jnu.encoding=UTF-8, env.HISTIGNORE=ls:ls *:cd:cd -:pwd:exit:date:* --help, env.VISUAL=subl -w, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=/usr/local/Cellar/maven/3.6.3_1/libexec, env.JAVA_HOME=/usr/local/opt/openjdk, env.LC_TERMINAL=iTerm2, file.separator=/, env.LESS=-R, java.vm.compressedOopsMode=Non-zero disjoint base, line.separator=
, env.JAVA_MAIN_CLASS_12069=org.codehaus.plexus.classworlds.launcher.Launcher, env.TERM_PROGRAM_VERSION=3.3.9, user.name=janke, env.XPC_FLAGS=0x0, env.LOGNAME=janke, env.__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0, env.TERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.9RGvwmJ5GD/Listeners, env.TERMINFO_DIRS=/Users/janke/.terminfo:/usr/local/share/terminfo:, maven.compiler.target=1.8, env.TMPDIR=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, library.jansi.path=/usr/local/Cellar/maven/3.6.3_1/libexec/lib/jansi-native, env.TERM_PROGRAM=iTerm.app, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, env.OLDPWD=/Users/janke/local/repos/antlrworks-jank, env.PWD=/Users/janke/local/repos/antlrworks-jank, env.PAGER=less, java.class.path=/usr/local/Cellar/maven/3.6.3_1/libexec/boot/plexus-classworlds-2.6.0.jar, env.HOME=/Users/janke, java.vm.vendor=Oracle Corporation, gpg.keyname=24AF1EA5, maven.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/conf, env.HOMEBREW_DEVELOPER=1, sun.java.launcher=SUN_STANDARD, user.country=US, sun.cpu.endian=little, user.language=en, env.XPC_SERVICE_NAME=0, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.name=OpenJDK Runtime Environment, project.build.sourceEncoding=UTF-8, env.MAVEN_CMD_LINE_ARGS= -X -e compile, java.vendor.url.bug=https://bugreport.java.com/bugreport/, user.dir=/Users/janke/local/repos/antlrworks-jank, antlr.version=4.8-1, java.vm.version=13.0.2+8}
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/src/main/resources
excludes []
includes []
[INFO] skip non existing resourceDirectory /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/src/main/resources
[DEBUG] no use filter components
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ antlr-works-netbeans ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=83488, ConflictMarker.markTime=49276, ConflictMarker.nodeCount=118, ConflictIdSorter.graphTime=62384, ConflictIdSorter.topsortTime=26324, ConflictIdSorter.conflictIdCount=45, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=383176, ConflictResolver.conflictItemCount=72, DefaultDependencyCollector.collectTime=2802838, DefaultDependencyCollector.transformTime=625038}
[DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:3.8.1
[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 (version managed from default)
[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 (version managed from default)
[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.1-1238127687
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1-1238127687
[DEBUG] Imported: < project>net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1-1238127687
[DEBUG] Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.8.1
[DEBUG] Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2
[DEBUG] Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7
[DEBUG] Included: org.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.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1-1238127687, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile' with basic configurator -->
[DEBUG] (f) basedir = /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans
[DEBUG] (f) buildDirectory = /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target
[DEBUG] (f) compilePath = [/Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/classes, /Users/janke/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-annotations-common/RELEASE112/org-netbeans-api-annotations-common-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-palette/RELEASE112/org-netbeans-spi-palette-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-awt/RELEASE112/org-openide-awt-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-dialogs/RELEASE112/org-openide-dialogs-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-explorer/RELEASE112/org-openide-explorer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-tabcontrol/RELEASE112/org-netbeans-swing-tabcontrol-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems/RELEASE112/org-openide-filesystems-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-loaders/RELEASE112/org-openide-loaders-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-scripting/RELEASE112/org-netbeans-api-scripting-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-templates/RELEASE112/org-netbeans-api-templates-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-modules/RELEASE112/org-openide-modules-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-nodes/RELEASE112/org-openide-nodes-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-text/RELEASE112/org-openide-text-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util/RELEASE112/org-openide-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-lookup/RELEASE112/org-openide-util-lookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-windows/RELEASE112/org-openide-windows-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor/RELEASE112/org-netbeans-modules-editor-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress/RELEASE112/org-netbeans-api-progress-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress-nb/RELEASE112/org-netbeans-api-progress-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-document/RELEASE112/org-netbeans-modules-editor-document-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-guards/RELEASE112/org-netbeans-modules-editor-guards-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-indent/RELEASE112/org-netbeans-modules-editor-indent-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib2/RELEASE112/org-netbeans-modules-editor-lib2-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-lexer/RELEASE112/org-netbeans-modules-lexer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-actions/RELEASE112/org-openide-actions-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems-nb/RELEASE112/org-openide-filesystems-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-util/RELEASE112/org-netbeans-modules-editor-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-fold/RELEASE112/org-netbeans-modules-editor-fold-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings-lib/RELEASE112/org-netbeans-modules-editor-settings-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-ui/RELEASE112/org-openide-util-ui-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib/RELEASE112/org-netbeans-modules-editor-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-mimelookup/RELEASE112/org-netbeans-modules-editor-mimelookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings/RELEASE112/org-netbeans-modules-editor-settings-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-editor-settings-storage/RELEASE112/org-netbeans-modules-editor-settings-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-keymap/RELEASE112/org-netbeans-modules-options-keymap-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-options-api/RELEASE112/org-netbeans-modules-options-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-quicksearch/RELEASE112/org-netbeans-spi-quicksearch-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-outline/RELEASE112/org-netbeans-swing-outline-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-editor/RELEASE112/org-netbeans-modules-options-editor-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints-projects/RELEASE112/org-netbeans-spi-editor-hints-projects-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-tools-storage/RELEASE112/org-netbeans-modules-editor-tools-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectapi/RELEASE112/org-netbeans-modules-projectapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi/RELEASE112/org-netbeans-modules-projectuiapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints/RELEASE112/org-netbeans-spi-editor-hints-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-navigator/RELEASE112/org-netbeans-spi-navigator-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-indexing/RELEASE112/org-netbeans-modules-parsing-indexing-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-java-classpath/RELEASE112/org-netbeans-api-java-classpath-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-libs-lucene/RELEASE112/org-netbeans-libs-lucene-RELEASE112.jar, /Users/janke/.m2/repository/org/apache/lucene/lucene-core/3.5.0/lucene-core-3.5.0.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-api/RELEASE112/org-netbeans-modules-parsing-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi-base/RELEASE112/org-netbeans-modules-projectuiapi-base-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-queries/RELEASE112/org-netbeans-modules-queries-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-tasklist/RELEASE112/org-netbeans-spi-tasklist-RELEASE112.jar, /Users/janke/.m2/repository/org/antlr/antlr4-runtime/4.8-1/antlr4-runtime-4.8-1.jar, /Users/janke/.m2/repository/org/antlr/stringtemplate/4.0.2/stringtemplate-4.0.2.jar, /Users/janke/.m2/repository/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar, /Users/janke/.m2/repository/org/antlr/antlr4/4.8-1/antlr4-4.8-1.jar, /Users/janke/.m2/repository/org/antlr/ST4/4.3/ST4-4.3.jar, /Users/janke/.m2/repository/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.jar, /Users/janke/.m2/repository/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar, /Users/janke/.m2/repository/com/ibm/icu/icu4j/61.1/icu4j-61.1.jar]
[DEBUG] (f) compileSourceRoots = [/Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/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 = /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/generated-sources/annotations
[DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile {execution: default-compile}
[DEBUG] (f) optimize = false
[DEBUG] (f) outputDirectory = /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/classes
[DEBUG] (f) parameters = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:antlr-works-netbeans:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/pom.xml
[DEBUG] (f) projectArtifact = net.apjanke.antlrworks-jank:antlr-works-netbeans:nbm:2.6.0-SNAPSHOT
[DEBUG] (s) release = 13
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) showDeprecation = false
[DEBUG] (f) showWarnings = false
[DEBUG] (f) skipMultiThreadWarning = false
[DEBUG] (f) source = 1.8
[DEBUG] (f) staleMillis = 0
[DEBUG] (s) target = 1.8
[DEBUG] (f) useIncrementalCompilation = true
[DEBUG] (f) verbose = false
[DEBUG] -- end configuration --
[DEBUG] Using compiler 'javac'.
[DEBUG] Adding /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/generated-sources/annotations to compile source roots:
/Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/src/main/java
[DEBUG] New compile source roots:
/Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/src/main/java
/Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/generated-sources/annotations
[DEBUG] CompilerReuseStrategy: reuseCreated
[DEBUG] useIncrementalCompilation enabled
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] -----------< net.apjanke.antlrworks-jank:tvl-editor-actions >-----------
[INFO] Building tvl-editor-actions 2.6.0-SNAPSHOT [5/9]
[INFO] --------------------------------[ jar ]---------------------------------
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: net.apjanke.antlrworks-jank:tvl-editor-actions:2.6.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile]
[DEBUG] Repositories (dependencies): [netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans/, default, releases+snapshots), atricore (http://repository.atricore.org/m2-release-repository/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<buildFilters default-value="${project.build.filters}"/>
<encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
<escapeString>${maven.resources.escapeString}</escapeString>
<escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
<includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
<outputDirectory default-value="${project.build.outputDirectory}"/>
<overwrite default-value="false">${maven.resources.overwrite}</overwrite>
<project default-value="${project}"/>
<resources default-value="${project.resources}"/>
<session default-value="${session}"/>
<supportMultiLineFiltering default-value="false">${maven.resources.supportMultiLineFiltering}</supportMultiLineFiltering>
<useBuildFilters default-value="true"/>
<useDefaultDelimiters default-value="true"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.8.1: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>13</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">1.8</source>
<staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
<target default-value="1.6">1.8</target>
<useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
<verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[DEBUG] =======================================================================
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=432093, ConflictMarker.markTime=178938, ConflictMarker.nodeCount=544, ConflictIdSorter.graphTime=409809, ConflictIdSorter.topsortTime=63934, ConflictIdSorter.conflictIdCount=72, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1294367, ConflictResolver.conflictItemCount=543, DefaultDependencyCollector.collectTime=2318550, DefaultDependencyCollector.transformTime=2449198}
[DEBUG] net.apjanke.antlrworks-jank:tvl-editor-actions:jar:2.6.0-SNAPSHOT
[DEBUG] javax.annotation:javax.annotation-api:jar:1.3.2:compile
[DEBUG] org.netbeans.api:org-netbeans-api-annotations-common:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-palette:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-awt:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-dialogs:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-explorer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-tabcontrol:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-loaders:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-scripting:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-templates:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-modules:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-nodes:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-text:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-lookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-windows:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-document:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-fold-nbui:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-guards:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-indent:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib2:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-lexer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-actions:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-fold:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-ui:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-mimelookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-settings-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-keymap:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-options-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-core:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-bootstrap:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-keyring:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-sampler:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-swing-plaf:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-openide-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-intent:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-libs-asm:jar:RELEASE112:runtime
[DEBUG] org.ow2.asm:asm-all:jar:5.0.1:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup-base:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-spi-quicksearch:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-outline:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints-projects:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-tools-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-editor:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-projectapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-navigator:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-indexing:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-java-classpath:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-libs-lucene:jar:RELEASE112:compile
[DEBUG] org.apache.lucene:lucene-core:jar:3.5.0:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-parsing-lucene:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-masterfs:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-project-indexingbridge:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi-base:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-queries:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-tasklist:jar:RELEASE112:compile
[DEBUG] junit:junit:jar:4.13:test
[DEBUG] org.hamcrest:hamcrest-core:jar:1.3:test
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ tvl-editor-actions ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:resources' with basic configurator -->
[DEBUG] (f) buildFilters = []
[DEBUG] (f) encoding = UTF-8
[DEBUG] (f) escapeWindowsPaths = true
[DEBUG] (s) includeEmptyDirs = false
[DEBUG] (s) outputDirectory = /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/classes
[DEBUG] (s) overwrite = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:tvl-editor-actions:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/pom.xml
[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) supportMultiLineFiltering = false
[DEBUG] (f) useBuildFilters = true
[DEBUG] (s) useDefaultDelimiters = true
[DEBUG] -- end configuration --
[DEBUG] properties used {env.TERM=xterm-256color, java.specification.version=13, sun.arch.data.model=64, env.CLICOLOR=1, java.vendor.url=https://openjdk.java.net/, env.COLORFGBG=12;8, env.GOPATH=/Users/janke/local/go-work, sun.boot.library.path=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home/lib, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X -e compile, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-01-14, version=2.6.0-SNAPSHOT, java.home=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home, env.GUIEDITOR=subl, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.LC_TERMINAL_VERSION=3.3.9, java.runtime.version=13.0.2+8, env.LSCOLORS=gxxxdxdxdxexexdxdxgxgx, env.PATH=/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin, env.LS_COLORS=di=36:so=33:pi=33:ex=33:bd=34:cd=34:su=33:sg=33:tw=36:ow=36:ln=00;04, file.encoding=UTF-8, env.HOMEBREW_EDITOR=subl, env.HISTCONTROL=ignoredups, env.SHLVL=2, java.io.tmpdir=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, java.version=13.0.2, java.vm.specification.name=Java Virtual Machine Specification, netbeans.version=RELEASE112, java.library.path=/Users/janke/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=N/A, classworlds.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/bin/m2.conf, sun.io.unicode.encoding=UnicodeBig, env.LANG=en_US.UTF-8, env.HOMEBREW_SANDBOX=1, java.vm.specification.version=13, os.name=Mac OS X, env.DISPLAY=/private/tmp/com.apple.launchd.O2942FNRqP/org.macosforge.xquartz:0, release.username=apjanke, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, maven.compiler.source=1.8, user.home=/Users/janke, env.XML_CATALOG_FILES=/usr/local/etc/xml/catalog, env.EDITOR=vi, brandingToken=antlrworks2jank, env.COLORTERM=truecolor, env.Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.YiSqoN3EU9/Render, env.ITERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.ITERM_PROFILE=Solarized - Dark - apj, path.separator=:, os.version=10.14.6, java.vm.name=OpenJDK 64-Bit Server VM, env.SHELL=/bin/zsh, gpg.executable=gpg2, env.HISTSIZE=32768, os.arch=x86_64, env.HISTFILESIZE=32768, maven.multiModuleProjectDirectory=/Users/janke/local/repos/antlrworks-jank, env.MAVEN_PROJECTBASEDIR=/Users/janke/local/repos/antlrworks-jank, java.vm.info=mixed mode, sharing, env.USER=janke, java.class.version=57.0, env.HOMEBREW_NO_AUTO_UPDATE=1, sun.jnu.encoding=UTF-8, env.HISTIGNORE=ls:ls *:cd:cd -:pwd:exit:date:* --help, env.VISUAL=subl -w, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=/usr/local/Cellar/maven/3.6.3_1/libexec, env.JAVA_HOME=/usr/local/opt/openjdk, env.LC_TERMINAL=iTerm2, file.separator=/, env.LESS=-R, java.vm.compressedOopsMode=Non-zero disjoint base, line.separator=
, env.JAVA_MAIN_CLASS_12069=org.codehaus.plexus.classworlds.launcher.Launcher, env.TERM_PROGRAM_VERSION=3.3.9, user.name=janke, env.XPC_FLAGS=0x0, env.LOGNAME=janke, env.__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0, env.TERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.9RGvwmJ5GD/Listeners, env.TERMINFO_DIRS=/Users/janke/.terminfo:/usr/local/share/terminfo:, maven.compiler.target=1.8, env.TMPDIR=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, library.jansi.path=/usr/local/Cellar/maven/3.6.3_1/libexec/lib/jansi-native, env.TERM_PROGRAM=iTerm.app, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, env.OLDPWD=/Users/janke/local/repos/antlrworks-jank, env.PWD=/Users/janke/local/repos/antlrworks-jank, env.PAGER=less, java.class.path=/usr/local/Cellar/maven/3.6.3_1/libexec/boot/plexus-classworlds-2.6.0.jar, env.HOME=/Users/janke, java.vm.vendor=Oracle Corporation, gpg.keyname=24AF1EA5, maven.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/conf, env.HOMEBREW_DEVELOPER=1, sun.java.launcher=SUN_STANDARD, user.country=US, sun.cpu.endian=little, user.language=en, env.XPC_SERVICE_NAME=0, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.name=OpenJDK Runtime Environment, project.build.sourceEncoding=UTF-8, env.MAVEN_CMD_LINE_ARGS= -X -e compile, java.vendor.url.bug=https://bugreport.java.com/bugreport/, user.dir=/Users/janke/local/repos/antlrworks-jank, antlr.version=4.8-1, java.vm.version=13.0.2+8}
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/src/main/resources
excludes []
includes []
[INFO] skip non existing resourceDirectory /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/src/main/resources
[DEBUG] no use filter components
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ tvl-editor-actions ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile' with basic configurator -->
[DEBUG] (f) basedir = /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions
[DEBUG] (f) buildDirectory = /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target
[DEBUG] (f) compilePath = [/Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/classes, /Users/janke/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-annotations-common/RELEASE112/org-netbeans-api-annotations-common-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-palette/RELEASE112/org-netbeans-spi-palette-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-awt/RELEASE112/org-openide-awt-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-dialogs/RELEASE112/org-openide-dialogs-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-explorer/RELEASE112/org-openide-explorer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-tabcontrol/RELEASE112/org-netbeans-swing-tabcontrol-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems/RELEASE112/org-openide-filesystems-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-loaders/RELEASE112/org-openide-loaders-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-scripting/RELEASE112/org-netbeans-api-scripting-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-templates/RELEASE112/org-netbeans-api-templates-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-modules/RELEASE112/org-openide-modules-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-nodes/RELEASE112/org-openide-nodes-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-text/RELEASE112/org-openide-text-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util/RELEASE112/org-openide-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-lookup/RELEASE112/org-openide-util-lookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-windows/RELEASE112/org-openide-windows-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor/RELEASE112/org-netbeans-modules-editor-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress/RELEASE112/org-netbeans-api-progress-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress-nb/RELEASE112/org-netbeans-api-progress-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-document/RELEASE112/org-netbeans-modules-editor-document-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-guards/RELEASE112/org-netbeans-modules-editor-guards-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-indent/RELEASE112/org-netbeans-modules-editor-indent-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib2/RELEASE112/org-netbeans-modules-editor-lib2-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-lexer/RELEASE112/org-netbeans-modules-lexer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-actions/RELEASE112/org-openide-actions-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems-nb/RELEASE112/org-openide-filesystems-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-util/RELEASE112/org-netbeans-modules-editor-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-fold/RELEASE112/org-netbeans-modules-editor-fold-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings-lib/RELEASE112/org-netbeans-modules-editor-settings-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-ui/RELEASE112/org-openide-util-ui-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib/RELEASE112/org-netbeans-modules-editor-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-mimelookup/RELEASE112/org-netbeans-modules-editor-mimelookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings/RELEASE112/org-netbeans-modules-editor-settings-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-editor-settings-storage/RELEASE112/org-netbeans-modules-editor-settings-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-keymap/RELEASE112/org-netbeans-modules-options-keymap-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-options-api/RELEASE112/org-netbeans-modules-options-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-quicksearch/RELEASE112/org-netbeans-spi-quicksearch-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-outline/RELEASE112/org-netbeans-swing-outline-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints-projects/RELEASE112/org-netbeans-spi-editor-hints-projects-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-tools-storage/RELEASE112/org-netbeans-modules-editor-tools-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectapi/RELEASE112/org-netbeans-modules-projectapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi/RELEASE112/org-netbeans-modules-projectuiapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints/RELEASE112/org-netbeans-spi-editor-hints-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-navigator/RELEASE112/org-netbeans-spi-navigator-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-indexing/RELEASE112/org-netbeans-modules-parsing-indexing-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-java-classpath/RELEASE112/org-netbeans-api-java-classpath-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-libs-lucene/RELEASE112/org-netbeans-libs-lucene-RELEASE112.jar, /Users/janke/.m2/repository/org/apache/lucene/lucene-core/3.5.0/lucene-core-3.5.0.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-api/RELEASE112/org-netbeans-modules-parsing-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi-base/RELEASE112/org-netbeans-modules-projectuiapi-base-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-queries/RELEASE112/org-netbeans-modules-queries-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-tasklist/RELEASE112/org-netbeans-spi-tasklist-RELEASE112.jar]
[DEBUG] (f) compileSourceRoots = [/Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/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 = /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/generated-sources/annotations
[DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile {execution: default-compile}
[DEBUG] (f) optimize = false
[DEBUG] (f) outputDirectory = /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/classes
[DEBUG] (f) parameters = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:tvl-editor-actions:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/pom.xml
[DEBUG] (f) projectArtifact = net.apjanke.antlrworks-jank:tvl-editor-actions:jar:2.6.0-SNAPSHOT
[DEBUG] (s) release = 13
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) showDeprecation = false
[DEBUG] (f) showWarnings = false
[DEBUG] (f) skipMultiThreadWarning = false
[DEBUG] (f) source = 1.8
[DEBUG] (f) staleMillis = 0
[DEBUG] (s) target = 1.8
[DEBUG] (f) useIncrementalCompilation = true
[DEBUG] (f) verbose = false
[DEBUG] -- end configuration --
[DEBUG] Using compiler 'javac'.
[DEBUG] Adding /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/generated-sources/annotations to compile source roots:
/Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/src/main/java
[DEBUG] New compile source roots:
/Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/src/main/java
/Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/generated-sources/annotations
[DEBUG] CompilerReuseStrategy: reuseCreated
[DEBUG] useIncrementalCompilation enabled
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] ----------< net.apjanke.antlrworks-jank:works-editor-antlr4 >-----------
[INFO] Building works-editor-antlr4 2.6.0-SNAPSHOT [6/9]
[INFO] --------------------------------[ jar ]---------------------------------
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: net.apjanke.antlrworks-jank:works-editor-antlr4:2.6.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile]
[DEBUG] Repositories (dependencies): [netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans/, default, releases+snapshots), atricore (http://repository.atricore.org/m2-release-repository/, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<buildFilters default-value="${project.build.filters}"/>
<encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
<escapeString>${maven.resources.escapeString}</escapeString>
<escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
<includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
<outputDirectory default-value="${project.build.outputDirectory}"/>
<overwrite default-value="false">${maven.resources.overwrite}</overwrite>
<project default-value="${project}"/>
<resources default-value="${project.resources}"/>
<session default-value="${session}"/>
<supportMultiLineFiltering default-value="false">${maven.resources.supportMultiLineFiltering}</supportMultiLineFiltering>
<useBuildFilters default-value="true"/>
<useDefaultDelimiters default-value="true"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.8.1: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>13</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">1.8</source>
<staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
<target default-value="1.6">1.8</target>
<useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
<verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[DEBUG] =======================================================================
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=312713, ConflictMarker.markTime=162329, ConflictMarker.nodeCount=597, ConflictIdSorter.graphTime=245522, ConflictIdSorter.topsortTime=186555, ConflictIdSorter.conflictIdCount=83, ConflictIdSorter.conflictIdCycleCount=1, ConflictResolver.totalTime=2113289, ConflictResolver.conflictItemCount=595, DefaultDependencyCollector.collectTime=3315084, DefaultDependencyCollector.transformTime=3157428}
[DEBUG] net.apjanke.antlrworks-jank:works-editor-antlr4:jar:2.6.0-SNAPSHOT
[DEBUG] net.apjanke.antlrworks-jank:editor-completionext:jar:2.6.0-SNAPSHOT:compile
[DEBUG] javax.annotation:javax.annotation-api:jar:1.3.2:compile
[DEBUG] org.netbeans.api:org-netbeans-api-annotations-common:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-palette:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-awt:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-dialogs:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-explorer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-tabcontrol:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-loaders:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-scripting:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-templates:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-modules:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-nodes:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-text:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-lookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-windows:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-util:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-progress-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-document:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-fold-nbui:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-guards:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-indent:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib2:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-lexer:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-actions:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-filesystems-nb:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-fold:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-openide-util-ui:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-lib:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-mimelookup:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-settings:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-editor-settings-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-keymap:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-options-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-core:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-bootstrap:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-keyring:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-swing-plaf:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-openide-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-intent:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-api-io:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-libs-asm:jar:RELEASE112:runtime
[DEBUG] org.ow2.asm:asm-all:jar:5.0.1:runtime
[DEBUG] org.netbeans.modules:org-netbeans-core-startup-base:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-spi-quicksearch:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-swing-outline:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints-projects:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-editor-tools-storage:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-projectapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-editor-hints:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-navigator:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-indexing:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-api-java-classpath:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-libs-lucene:jar:RELEASE112:compile
[DEBUG] org.apache.lucene:lucene-core:jar:3.5.0:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-parsing-api:jar:RELEASE112:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-parsing-lucene:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-masterfs:jar:RELEASE112:runtime
[DEBUG] org.netbeans.modules:org-netbeans-modules-project-indexingbridge:jar:RELEASE112:runtime
[DEBUG] org.netbeans.api:org-netbeans-modules-projectuiapi-base:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-queries:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-spi-tasklist:jar:RELEASE112:compile
[DEBUG] org.netbeans.api:org-netbeans-modules-sampler:jar:RELEASE112:compile
[DEBUG] net.apjanke.antlrworks-jank:tvl-editor-actions:jar:2.6.0-SNAPSHOT:compile
[DEBUG] net.apjanke.antlrworks-jank:antlr-works-netbeans:jar:2.6.0-SNAPSHOT:compile
[DEBUG] org.netbeans.modules:org-netbeans-modules-options-editor:jar:RELEASE112:compile
[DEBUG] org.antlr:antlr4-runtime:jar:4.8-1:compile
[DEBUG] org.antlr:stringtemplate:jar:4.0.2:compile
[DEBUG] org.antlr:antlr-runtime:jar:3.3:compile
[DEBUG] org.antlr:antlr4:jar:4.8-1:compile
[DEBUG] org.antlr:ST4:jar:4.3:compile
[DEBUG] org.abego.treelayout:org.abego.treelayout.core:jar:1.0.3:compile
[DEBUG] org.glassfish:javax.json:jar:1.0.4:compile
[DEBUG] com.ibm.icu:icu4j:jar:61.1:compile
[DEBUG] junit:junit:jar:4.13:test
[DEBUG] org.hamcrest:hamcrest-core:jar:1.3:test
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ works-editor-antlr4 ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:resources' with basic configurator -->
[DEBUG] (f) buildFilters = []
[DEBUG] (f) encoding = UTF-8
[DEBUG] (f) escapeWindowsPaths = true
[DEBUG] (s) includeEmptyDirs = false
[DEBUG] (s) outputDirectory = /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/classes
[DEBUG] (s) overwrite = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:works-editor-antlr4:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/pom.xml
[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) supportMultiLineFiltering = false
[DEBUG] (f) useBuildFilters = true
[DEBUG] (s) useDefaultDelimiters = true
[DEBUG] -- end configuration --
[DEBUG] properties used {env.TERM=xterm-256color, java.specification.version=13, sun.arch.data.model=64, env.CLICOLOR=1, java.vendor.url=https://openjdk.java.net/, env.COLORFGBG=12;8, env.GOPATH=/Users/janke/local/go-work, sun.boot.library.path=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home/lib, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X -e compile, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-01-14, version=2.6.0-SNAPSHOT, java.home=/usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home, env.GUIEDITOR=subl, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.LC_TERMINAL_VERSION=3.3.9, java.runtime.version=13.0.2+8, env.LSCOLORS=gxxxdxdxdxexexdxdxgxgx, env.PATH=/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/sbin:/usr/local/lib/ruby/gems/2.7.0/bin:/usr/local/lib/ruby/gems/2.6.0/bin:/usr/local/opt/ruby/bin:/Users/janke/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin:/Users/janke/local/go-work/bin:/Users/janke/.rvm/bin, env.LS_COLORS=di=36:so=33:pi=33:ex=33:bd=34:cd=34:su=33:sg=33:tw=36:ow=36:ln=00;04, file.encoding=UTF-8, env.HOMEBREW_EDITOR=subl, env.HISTCONTROL=ignoredups, env.SHLVL=2, java.io.tmpdir=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, java.version=13.0.2, java.vm.specification.name=Java Virtual Machine Specification, netbeans.version=RELEASE112, java.library.path=/Users/janke/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=N/A, classworlds.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/bin/m2.conf, sun.io.unicode.encoding=UnicodeBig, env.LANG=en_US.UTF-8, env.HOMEBREW_SANDBOX=1, java.vm.specification.version=13, os.name=Mac OS X, env.DISPLAY=/private/tmp/com.apple.launchd.O2942FNRqP/org.macosforge.xquartz:0, release.username=apjanke, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, maven.compiler.source=1.8, user.home=/Users/janke, env.XML_CATALOG_FILES=/usr/local/etc/xml/catalog, env.EDITOR=vi, brandingToken=antlrworks2jank, env.COLORTERM=truecolor, env.Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.YiSqoN3EU9/Render, env.ITERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.ITERM_PROFILE=Solarized - Dark - apj, path.separator=:, os.version=10.14.6, java.vm.name=OpenJDK 64-Bit Server VM, env.SHELL=/bin/zsh, gpg.executable=gpg2, env.HISTSIZE=32768, os.arch=x86_64, env.HISTFILESIZE=32768, maven.multiModuleProjectDirectory=/Users/janke/local/repos/antlrworks-jank, env.MAVEN_PROJECTBASEDIR=/Users/janke/local/repos/antlrworks-jank, java.vm.info=mixed mode, sharing, env.USER=janke, java.class.version=57.0, env.HOMEBREW_NO_AUTO_UPDATE=1, sun.jnu.encoding=UTF-8, env.HISTIGNORE=ls:ls *:cd:cd -:pwd:exit:date:* --help, env.VISUAL=subl -w, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=/usr/local/Cellar/maven/3.6.3_1/libexec, env.JAVA_HOME=/usr/local/opt/openjdk, env.LC_TERMINAL=iTerm2, file.separator=/, env.LESS=-R, java.vm.compressedOopsMode=Non-zero disjoint base, line.separator=
, env.JAVA_MAIN_CLASS_12069=org.codehaus.plexus.classworlds.launcher.Launcher, env.TERM_PROGRAM_VERSION=3.3.9, user.name=janke, env.XPC_FLAGS=0x0, env.LOGNAME=janke, env.__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0, env.TERM_SESSION_ID=w0t0p0:71DF3FA8-5482-4070-8BD4-354B2D5AA3BB, env.SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.9RGvwmJ5GD/Listeners, env.TERMINFO_DIRS=/Users/janke/.terminfo:/usr/local/share/terminfo:, maven.compiler.target=1.8, env.TMPDIR=/var/folders/_4/9mx5ryp52bb_z6drbcbrhwl40000gn/T/, library.jansi.path=/usr/local/Cellar/maven/3.6.3_1/libexec/lib/jansi-native, env.TERM_PROGRAM=iTerm.app, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, env.OLDPWD=/Users/janke/local/repos/antlrworks-jank, env.PWD=/Users/janke/local/repos/antlrworks-jank, env.PAGER=less, java.class.path=/usr/local/Cellar/maven/3.6.3_1/libexec/boot/plexus-classworlds-2.6.0.jar, env.HOME=/Users/janke, java.vm.vendor=Oracle Corporation, gpg.keyname=24AF1EA5, maven.conf=/usr/local/Cellar/maven/3.6.3_1/libexec/conf, env.HOMEBREW_DEVELOPER=1, sun.java.launcher=SUN_STANDARD, user.country=US, sun.cpu.endian=little, user.language=en, env.XPC_SERVICE_NAME=0, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.name=OpenJDK Runtime Environment, project.build.sourceEncoding=UTF-8, env.MAVEN_CMD_LINE_ARGS= -X -e compile, java.vendor.url.bug=https://bugreport.java.com/bugreport/, user.dir=/Users/janke/local/repos/antlrworks-jank, antlr.version=4.8-1, java.vm.version=13.0.2+8}
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/resources
excludes []
includes []
[INFO] skip non existing resourceDirectory /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/resources
[DEBUG] no use filter components
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ works-editor-antlr4 ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.8.1, parent: jdk.internal.loader.ClassLoaders$AppClassLoader at 55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile' with basic configurator -->
[DEBUG] (f) basedir = /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4
[DEBUG] (f) buildDirectory = /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target
[DEBUG] (f) compilePath = [/Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/classes, /Users/janke/local/repos/antlrworks-jank/editor-completionext/target/classes, /Users/janke/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-annotations-common/RELEASE112/org-netbeans-api-annotations-common-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-palette/RELEASE112/org-netbeans-spi-palette-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-awt/RELEASE112/org-openide-awt-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-dialogs/RELEASE112/org-openide-dialogs-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-explorer/RELEASE112/org-openide-explorer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-tabcontrol/RELEASE112/org-netbeans-swing-tabcontrol-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems/RELEASE112/org-openide-filesystems-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-loaders/RELEASE112/org-openide-loaders-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-scripting/RELEASE112/org-netbeans-api-scripting-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-templates/RELEASE112/org-netbeans-api-templates-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-modules/RELEASE112/org-openide-modules-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-nodes/RELEASE112/org-openide-nodes-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-text/RELEASE112/org-openide-text-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util/RELEASE112/org-openide-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-lookup/RELEASE112/org-openide-util-lookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-windows/RELEASE112/org-openide-windows-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-util/RELEASE112/org-netbeans-modules-editor-util-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor/RELEASE112/org-netbeans-modules-editor-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress/RELEASE112/org-netbeans-api-progress-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress-nb/RELEASE112/org-netbeans-api-progress-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-document/RELEASE112/org-netbeans-modules-editor-document-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-guards/RELEASE112/org-netbeans-modules-editor-guards-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-indent/RELEASE112/org-netbeans-modules-editor-indent-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib2/RELEASE112/org-netbeans-modules-editor-lib2-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-lexer/RELEASE112/org-netbeans-modules-lexer-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-actions/RELEASE112/org-openide-actions-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems-nb/RELEASE112/org-openide-filesystems-nb-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-fold/RELEASE112/org-netbeans-modules-editor-fold-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings-lib/RELEASE112/org-netbeans-modules-editor-settings-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-ui/RELEASE112/org-openide-util-ui-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib/RELEASE112/org-netbeans-modules-editor-lib-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-mimelookup/RELEASE112/org-netbeans-modules-editor-mimelookup-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings/RELEASE112/org-netbeans-modules-editor-settings-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-editor-settings-storage/RELEASE112/org-netbeans-modules-editor-settings-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-keymap/RELEASE112/org-netbeans-modules-options-keymap-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-options-api/RELEASE112/org-netbeans-modules-options-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-quicksearch/RELEASE112/org-netbeans-spi-quicksearch-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-outline/RELEASE112/org-netbeans-swing-outline-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints-projects/RELEASE112/org-netbeans-spi-editor-hints-projects-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-tools-storage/RELEASE112/org-netbeans-modules-editor-tools-storage-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectapi/RELEASE112/org-netbeans-modules-projectapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi/RELEASE112/org-netbeans-modules-projectuiapi-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints/RELEASE112/org-netbeans-spi-editor-hints-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-navigator/RELEASE112/org-netbeans-spi-navigator-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-indexing/RELEASE112/org-netbeans-modules-parsing-indexing-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-java-classpath/RELEASE112/org-netbeans-api-java-classpath-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-libs-lucene/RELEASE112/org-netbeans-libs-lucene-RELEASE112.jar, /Users/janke/.m2/repository/org/apache/lucene/lucene-core/3.5.0/lucene-core-3.5.0.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-api/RELEASE112/org-netbeans-modules-parsing-api-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi-base/RELEASE112/org-netbeans-modules-projectuiapi-base-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-queries/RELEASE112/org-netbeans-modules-queries-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-tasklist/RELEASE112/org-netbeans-spi-tasklist-RELEASE112.jar, /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-sampler/RELEASE112/org-netbeans-modules-sampler-RELEASE112.jar, /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/classes, /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/classes, /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-editor/RELEASE112/org-netbeans-modules-options-editor-RELEASE112.jar, /Users/janke/.m2/repository/org/antlr/antlr4-runtime/4.8-1/antlr4-runtime-4.8-1.jar, /Users/janke/.m2/repository/org/antlr/stringtemplate/4.0.2/stringtemplate-4.0.2.jar, /Users/janke/.m2/repository/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar, /Users/janke/.m2/repository/org/antlr/antlr4/4.8-1/antlr4-4.8-1.jar, /Users/janke/.m2/repository/org/antlr/ST4/4.3/ST4-4.3.jar, /Users/janke/.m2/repository/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.jar, /Users/janke/.m2/repository/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar, /Users/janke/.m2/repository/com/ibm/icu/icu4j/61.1/icu4j-61.1.jar]
[DEBUG] (f) compileSourceRoots = [/Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/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 = /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/generated-sources/annotations
[DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile {execution: default-compile}
[DEBUG] (f) optimize = false
[DEBUG] (f) outputDirectory = /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/classes
[DEBUG] (f) parameters = false
[DEBUG] (f) project = MavenProject: net.apjanke.antlrworks-jank:works-editor-antlr4:2.6.0-SNAPSHOT @ /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/pom.xml
[DEBUG] (f) projectArtifact = net.apjanke.antlrworks-jank:works-editor-antlr4:jar:2.6.0-SNAPSHOT
[DEBUG] (s) release = 13
[DEBUG] (f) session = org.apache.maven.execution.MavenSession at 58472096
[DEBUG] (f) showDeprecation = false
[DEBUG] (f) showWarnings = false
[DEBUG] (f) skipMultiThreadWarning = false
[DEBUG] (f) source = 1.8
[DEBUG] (f) staleMillis = 0
[DEBUG] (s) target = 1.8
[DEBUG] (f) useIncrementalCompilation = true
[DEBUG] (f) verbose = false
[DEBUG] -- end configuration --
[DEBUG] Using compiler 'javac'.
[DEBUG] Adding /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/generated-sources/annotations to compile source roots:
/Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java
[DEBUG] New compile source roots:
/Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java
/Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/generated-sources/annotations
[DEBUG] CompilerReuseStrategy: reuseCreated
[DEBUG] useIncrementalCompilation enabled
[INFO] Changes detected - recompiling the module!
[DEBUG] Classpath:
[DEBUG] /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/classes
[DEBUG] /Users/janke/local/repos/antlrworks-jank/editor-completionext/target/classes
[DEBUG] /Users/janke/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-annotations-common/RELEASE112/org-netbeans-api-annotations-common-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-palette/RELEASE112/org-netbeans-spi-palette-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-awt/RELEASE112/org-openide-awt-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-dialogs/RELEASE112/org-openide-dialogs-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-explorer/RELEASE112/org-openide-explorer-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-tabcontrol/RELEASE112/org-netbeans-swing-tabcontrol-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems/RELEASE112/org-openide-filesystems-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-loaders/RELEASE112/org-openide-loaders-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-scripting/RELEASE112/org-netbeans-api-scripting-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-templates/RELEASE112/org-netbeans-api-templates-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-modules/RELEASE112/org-openide-modules-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-nodes/RELEASE112/org-openide-nodes-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-text/RELEASE112/org-openide-text-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-util/RELEASE112/org-openide-util-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-lookup/RELEASE112/org-openide-util-lookup-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-windows/RELEASE112/org-openide-windows-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-util/RELEASE112/org-netbeans-modules-editor-util-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor/RELEASE112/org-netbeans-modules-editor-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress/RELEASE112/org-netbeans-api-progress-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress-nb/RELEASE112/org-netbeans-api-progress-nb-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-document/RELEASE112/org-netbeans-modules-editor-document-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-guards/RELEASE112/org-netbeans-modules-editor-guards-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-indent/RELEASE112/org-netbeans-modules-editor-indent-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib2/RELEASE112/org-netbeans-modules-editor-lib2-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-lexer/RELEASE112/org-netbeans-modules-lexer-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-actions/RELEASE112/org-openide-actions-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems-nb/RELEASE112/org-openide-filesystems-nb-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-fold/RELEASE112/org-netbeans-modules-editor-fold-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings-lib/RELEASE112/org-netbeans-modules-editor-settings-lib-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-openide-util-ui/RELEASE112/org-openide-util-ui-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib/RELEASE112/org-netbeans-modules-editor-lib-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-mimelookup/RELEASE112/org-netbeans-modules-editor-mimelookup-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings/RELEASE112/org-netbeans-modules-editor-settings-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-editor-settings-storage/RELEASE112/org-netbeans-modules-editor-settings-storage-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-keymap/RELEASE112/org-netbeans-modules-options-keymap-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-options-api/RELEASE112/org-netbeans-modules-options-api-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-quicksearch/RELEASE112/org-netbeans-spi-quicksearch-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-outline/RELEASE112/org-netbeans-swing-outline-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints-projects/RELEASE112/org-netbeans-spi-editor-hints-projects-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-tools-storage/RELEASE112/org-netbeans-modules-editor-tools-storage-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectapi/RELEASE112/org-netbeans-modules-projectapi-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi/RELEASE112/org-netbeans-modules-projectuiapi-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints/RELEASE112/org-netbeans-spi-editor-hints-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-navigator/RELEASE112/org-netbeans-spi-navigator-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-indexing/RELEASE112/org-netbeans-modules-parsing-indexing-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-java-classpath/RELEASE112/org-netbeans-api-java-classpath-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-libs-lucene/RELEASE112/org-netbeans-libs-lucene-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/apache/lucene/lucene-core/3.5.0/lucene-core-3.5.0.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-api/RELEASE112/org-netbeans-modules-parsing-api-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi-base/RELEASE112/org-netbeans-modules-projectuiapi-base-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-queries/RELEASE112/org-netbeans-modules-queries-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-tasklist/RELEASE112/org-netbeans-spi-tasklist-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-sampler/RELEASE112/org-netbeans-modules-sampler-RELEASE112.jar
[DEBUG] /Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/classes
[DEBUG] /Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/classes
[DEBUG] /Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-editor/RELEASE112/org-netbeans-modules-options-editor-RELEASE112.jar
[DEBUG] /Users/janke/.m2/repository/org/antlr/antlr4-runtime/4.8-1/antlr4-runtime-4.8-1.jar
[DEBUG] /Users/janke/.m2/repository/org/antlr/stringtemplate/4.0.2/stringtemplate-4.0.2.jar
[DEBUG] /Users/janke/.m2/repository/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar
[DEBUG] /Users/janke/.m2/repository/org/antlr/antlr4/4.8-1/antlr4-4.8-1.jar
[DEBUG] /Users/janke/.m2/repository/org/antlr/ST4/4.3/ST4-4.3.jar
[DEBUG] /Users/janke/.m2/repository/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.jar
[DEBUG] /Users/janke/.m2/repository/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar
[DEBUG] /Users/janke/.m2/repository/com/ibm/icu/icu4j/61.1/icu4j-61.1.jar
[DEBUG] Source roots:
[DEBUG] /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java
[DEBUG] /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/generated-sources/annotations
[DEBUG] Command line options:
[DEBUG] -d /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/classes -classpath /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/classes:/Users/janke/local/repos/antlrworks-jank/editor-completionext/target/classes:/Users/janke/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-annotations-common/RELEASE112/org-netbeans-api-annotations-common-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-palette/RELEASE112/org-netbeans-spi-palette-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-awt/RELEASE112/org-openide-awt-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-dialogs/RELEASE112/org-openide-dialogs-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-explorer/RELEASE112/org-openide-explorer-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-tabcontrol/RELEASE112/org-netbeans-swing-tabcontrol-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems/RELEASE112/org-openide-filesystems-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-loaders/RELEASE112/org-openide-loaders-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-scripting/RELEASE112/org-netbeans-api-scripting-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-templates/RELEASE112/org-netbeans-api-templates-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-modules/RELEASE112/org-openide-modules-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-nodes/RELEASE112/org-openide-nodes-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-text/RELEASE112/org-openide-text-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-util/RELEASE112/org-openide-util-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-util-lookup/RELEASE112/org-openide-util-lookup-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-windows/RELEASE112/org-openide-windows-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-util/RELEASE112/org-netbeans-modules-editor-util-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor/RELEASE112/org-netbeans-modules-editor-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress/RELEASE112/org-netbeans-api-progress-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-progress-nb/RELEASE112/org-netbeans-api-progress-nb-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-document/RELEASE112/org-netbeans-modules-editor-document-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-guards/RELEASE112/org-netbeans-modules-editor-guards-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-indent/RELEASE112/org-netbeans-modules-editor-indent-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib2/RELEASE112/org-netbeans-modules-editor-lib2-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-lexer/RELEASE112/org-netbeans-modules-lexer-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-actions/RELEASE112/org-openide-actions-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-filesystems-nb/RELEASE112/org-openide-filesystems-nb-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-fold/RELEASE112/org-netbeans-modules-editor-fold-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings-lib/RELEASE112/org-netbeans-modules-editor-settings-lib-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-openide-util-ui/RELEASE112/org-openide-util-ui-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-lib/RELEASE112/org-netbeans-modules-editor-lib-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-mimelookup/RELEASE112/org-netbeans-modules-editor-mimelookup-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-settings/RELEASE112/org-netbeans-modules-editor-settings-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-editor-settings-storage/RELEASE112/org-netbeans-modules-editor-settings-storage-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-keymap/RELEASE112/org-netbeans-modules-options-keymap-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-options-api/RELEASE112/org-netbeans-modules-options-api-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-quicksearch/RELEASE112/org-netbeans-spi-quicksearch-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-swing-outline/RELEASE112/org-netbeans-swing-outline-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints-projects/RELEASE112/org-netbeans-spi-editor-hints-projects-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-editor-tools-storage/RELEASE112/org-netbeans-modules-editor-tools-storage-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectapi/RELEASE112/org-netbeans-modules-projectapi-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi/RELEASE112/org-netbeans-modules-projectuiapi-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-editor-hints/RELEASE112/org-netbeans-spi-editor-hints-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-navigator/RELEASE112/org-netbeans-spi-navigator-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-indexing/RELEASE112/org-netbeans-modules-parsing-indexing-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-api-java-classpath/RELEASE112/org-netbeans-api-java-classpath-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-libs-lucene/RELEASE112/org-netbeans-libs-lucene-RELEASE112.jar:/Users/janke/.m2/repository/org/apache/lucene/lucene-core/3.5.0/lucene-core-3.5.0.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-parsing-api/RELEASE112/org-netbeans-modules-parsing-api-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-projectuiapi-base/RELEASE112/org-netbeans-modules-projectuiapi-base-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-queries/RELEASE112/org-netbeans-modules-queries-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-spi-tasklist/RELEASE112/org-netbeans-spi-tasklist-RELEASE112.jar:/Users/janke/.m2/repository/org/netbeans/api/org-netbeans-modules-sampler/RELEASE112/org-netbeans-modules-sampler-RELEASE112.jar:/Users/janke/local/repos/antlrworks-jank/tvl-editor-actions/target/classes:/Users/janke/local/repos/antlrworks-jank/antlr-works-netbeans/target/classes:/Users/janke/.m2/repository/org/netbeans/modules/org-netbeans-modules-options-editor/RELEASE112/org-netbeans-modules-options-editor-RELEASE112.jar:/Users/janke/.m2/repository/org/antlr/antlr4-runtime/4.8-1/antlr4-runtime-4.8-1.jar:/Users/janke/.m2/repository/org/antlr/stringtemplate/4.0.2/stringtemplate-4.0.2.jar:/Users/janke/.m2/repository/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar:/Users/janke/.m2/repository/org/antlr/antlr4/4.8-1/antlr4-4.8-1.jar:/Users/janke/.m2/repository/org/antlr/ST4/4.3/ST4-4.3.jar:/Users/janke/.m2/repository/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.jar:/Users/janke/.m2/repository/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar:/Users/janke/.m2/repository/com/ibm/icu/icu4j/61.1/icu4j-61.1.jar: -sourcepath /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/src/main/java:/Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/generated-sources/annotations: -s /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/generated-sources/annotations -g -nowarn --release 13 -encoding UTF-8
[DEBUG] incrementalBuildHelper#beforeRebuildExecution
[INFO] Compiling 39 source files to /Users/janke/local/repos/antlrworks-jank/works-editor-antlr4/target/classes
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for ANTLRWorks2-Jank 2.6.0-SNAPSHOT:
[INFO]
[INFO] ANTLRWorks2-Jank ................................... SUCCESS [ 0.011 s]
[INFO] editor-completionext ............................... SUCCESS [ 0.541 s]
[INFO] editor-containingfolder ............................ SUCCESS [ 0.082 s]
[INFO] antlr-works-netbeans ............................... SUCCESS [ 0.342 s]
[INFO] tvl-editor-actions ................................. SUCCESS [ 0.124 s]
[INFO] works-editor-antlr4 ................................ FAILURE [ 1.385 s]
[INFO] antlr-works-editor ................................. SKIPPED
[INFO] tvl-editor-whitespace .............................. SKIPPED
[INFO] works-editor-antlr3 ................................ SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.090 s
[INFO] Finished at: 2020-05-08T13:05:46-04:00
[INFO] ------------------------------------------------------------------------
---------------------------------------------------
constituent[0]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/conf/logging/
constituent[1]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-plugin-api-3.6.3.jar
constituent[2]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-compat-3.6.3.jar
constituent[3]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-resolver-util-1.4.1.jar
constituent[4]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/plexus-component-annotations-2.1.0.jar
constituent[5]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-settings-builder-3.6.3.jar
constituent[6]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/plexus-cipher-1.7.jar
constituent[7]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/plexus-interpolation-1.25.jar
constituent[8]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-resolver-spi-1.4.1.jar
constituent[9]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/guice-4.2.1-no_aop.jar
constituent[10]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-artifact-3.6.3.jar
constituent[11]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-resolver-provider-3.6.3.jar
constituent[12]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/cdi-api-1.0.jar
constituent[13]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-slf4j-provider-3.6.3.jar
constituent[14]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/plexus-utils-3.2.1.jar
constituent[15]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/plexus-sec-dispatcher-1.4.jar
constituent[16]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-repository-metadata-3.6.3.jar
constituent[17]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/commons-cli-1.4.jar
constituent[18]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-resolver-transport-wagon-1.4.1.jar
constituent[19]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/commons-io-2.5.jar
constituent[20]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/jansi-1.17.1.jar
constituent[21]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-model-builder-3.6.3.jar
constituent[22]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-embedder-3.6.3.jar
constituent[23]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/wagon-file-3.3.4.jar
constituent[24]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/org.eclipse.sisu.inject-0.3.4.jar
constituent[25]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-resolver-connector-basic-1.4.1.jar
constituent[26]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-settings-3.6.3.jar
constituent[27]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-model-3.6.3.jar
constituent[28]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-resolver-api-1.4.1.jar
constituent[29]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/jcl-over-slf4j-1.7.29.jar
constituent[30]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/wagon-http-3.3.4-shaded.jar
constituent[31]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/org.eclipse.sisu.plexus-0.3.4.jar
constituent[32]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/slf4j-api-1.7.29.jar
constituent[33]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-builder-support-3.6.3.jar
constituent[34]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/jsoup-1.12.1.jar
constituent[35]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/wagon-provider-api-3.3.4.jar
constituent[36]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-shared-utils-3.2.1.jar
constituent[37]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-resolver-impl-1.4.1.jar
constituent[38]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/maven-core-3.6.3.jar
constituent[39]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/javax.inject-1.jar
constituent[40]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/commons-lang3-3.8.1.jar
constituent[41]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/guava-25.1-android.jar
constituent[42]: file:/usr/local/Cellar/maven/3.6.3_1/libexec/lib/jsr250-api-1.0.jar
---------------------------------------------------
Exception in thread "main" java.lang.AssertionError
at jdk.compiler/com.sun.tools.javac.util.Assert.error(Assert.java:155)
at jdk.compiler/com.sun.tools.javac.util.Assert.check(Assert.java:46)
at jdk.compiler/com.sun.tools.javac.comp.Modules.enter(Modules.java:247)
at jdk.compiler/com.sun.tools.javac.main.JavaCompiler.readSourceFile(JavaCompiler.java:836)
at jdk.compiler/com.sun.tools.javac.processing.JavacProcessingEnvironment$ImplicitCompleter.complete(JavacProcessingEnvironment.java:1576)
at jdk.compiler/com.sun.tools.javac.code.Symbol.complete(Symbol.java:657)
at jdk.compiler/com.sun.tools.javac.code.Symbol$ClassSymbol.complete(Symbol.java:1356)
at jdk.compiler/com.sun.tools.javac.code.Type$ClassType.complete(Type.java:1157)
at jdk.compiler/com.sun.tools.javac.code.Type$ClassType.getTypeArguments(Type.java:1083)
at jdk.compiler/com.sun.tools.javac.code.Printer.visitClassType(Printer.java:237)
at jdk.compiler/com.sun.tools.javac.code.Printer.visitClassType(Printer.java:52)
at jdk.compiler/com.sun.tools.javac.code.Type$ClassType.accept(Type.java:1010)
at jdk.compiler/com.sun.tools.javac.code.Printer.visit(Printer.java:136)
at jdk.compiler/com.sun.tools.javac.util.AbstractDiagnosticFormatter.formatArgument(AbstractDiagnosticFormatter.java:199)
at jdk.compiler/com.sun.tools.javac.util.AbstractDiagnosticFormatter.formatArguments(AbstractDiagnosticFormatter.java:167)
at jdk.compiler/com.sun.tools.javac.util.BasicDiagnosticFormatter.formatMessage(BasicDiagnosticFormatter.java:111)
at jdk.compiler/com.sun.tools.javac.util.BasicDiagnosticFormatter.formatMessage(BasicDiagnosticFormatter.java:67)
at jdk.compiler/com.sun.tools.javac.util.AbstractDiagnosticFormatter.formatArgument(AbstractDiagnosticFormatter.java:185)
at jdk.compiler/com.sun.tools.javac.util.AbstractDiagnosticFormatter.formatArguments(AbstractDiagnosticFormatter.java:167)
at jdk.compiler/com.sun.tools.javac.util.BasicDiagnosticFormatter.formatMessage(BasicDiagnosticFormatter.java:111)
at jdk.compiler/com.sun.tools.javac.util.BasicDiagnosticFormatter.formatMessage(BasicDiagnosticFormatter.java:67)
at jdk.compiler/com.sun.tools.javac.util.JCDiagnostic.getMessage(JCDiagnostic.java:788)
at jdk.compiler/com.sun.tools.javac.api.ClientCodeWrapper$DiagnosticSourceUnwrapper.getMessage(ClientCodeWrapper.java:835)
at org.codehaus.plexus.compiler.javac.JavaxToolsCompiler.compileInProcess(JavaxToolsCompiler.java:131)
at org.codehaus.plexus.compiler.javac.JavacCompiler.performCompile(JavacCompiler.java:174)
at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute(AbstractCompilerMojo.java:1134)
at org.apache.maven.plugin.compiler.CompilerMojo.execute(CompilerMojo.java:187)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:210)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:156)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:148)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:81)
at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:56)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:305)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:192)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:105)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:957)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:289)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:193)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:567)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:282)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:225)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:406)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:347)
More information about the compiler-dev
mailing list