Pinpoint: mvn install Error(pinpoint-collector)

Created on 10 Oct 2016  路  12Comments  路  Source: pinpoint-apm/pinpoint

.....
[INFO] pinpoint-collector ................................. FAILURE [ 1.408 s]
[INFO] pinpoint-profiler-optional-jdk8 .................... SKIPPED
[INFO] pinpoint-web ....................................... SKIPPED
[INFO] pinpoint-hbase-distribution ........................ SKIPPED
[INFO] pinpoint-thirdparty ................................ SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 37.263 s
[INFO] Finished at: 2016-10-10T09:42:00+09:00
[INFO] Final Memory: 170M/2058M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.codehaus.mojo:animal-sniffer-maven-plugin:1.15:check (ensure-java-1.7-class-library) on project pinpoint-collector: Signature errors found. Verify them and ignore them with the proper annotation if needed. -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:animal-sniffer-maven-plugin:1.15:check (ensure-java-1.7-class-library) on project pinpoint-collector: Signature errors found. Verify them and ignore them with the proper annotation if needed.
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:199)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.MojoFailureException: Signature errors found. Verify them and ignore them with the proper annotation if needed.
at org.codehaus.mojo.animal_sniffer.maven.CheckSignatureMojo.execute(CheckSignatureMojo.java:265)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207)
... 20 more
[ERROR]
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn -rf :pinpoint-collector

.....

3 JDK installed
export JAVA_HOME=/usr/java/default
export JAVA_6_HOME=/usr/java/jdk1.6.0_45
export JAVA_7_HOME=/usr/java/jdk1.7.0_80
export JAVA_8_HOME=/usr/java/jdk1.8.0_71

help wanted

Most helpful comment

I solved it.

1) Oracle JDK Download for Linux(RPM is not.)

jdk-6u45-linux-x64.bin, jdk-7u79-linux-x64.tar.gz, jdk-8u101-linux-x64.tar.gz

2)

./jdk-6u45-linux-x64.bin
tar xvfz jdk-7u79-linux-x64.tar.gz jdk-8u101-linux-x64.tar.gz

3)

mv jdk1.6.0_45 jdk1.7.0_79 jdk1.8.0_101 /usr/java

4) edit and save

vi /etc/profile
export JAVA_HOME=/usr/java/jdk1.7.0_79
export JAVA_6_HOME=/usr/java/jdk1.6.0_45
export JAVA_7_HOME=/usr/java/jdk1.7.0_79
export JAVA_8_HOME=/usr/java/jdk1.8.0_101
export PATH=$PATH:$JAVA_HOME/bin
export CLASSPATH=.:$JAVA_HOME/jre/lib:$JAVA_HOME/lib:$JAVA_HOME/lib/tools.jar
export PATH=$PATH:$JAVA_6_HOME/bin
export CLASSPATH=.:$JAVA_6_HOME/jre/lib:$JAVA_6_HOME/lib:$JAVA_6_HOME/lib/tools.jar
export PATH=$PATH:$JAVA_7_HOME/bin
export CLASSPATH=.:$JAVA_7_HOME/jre/lib:$JAVA_7_HOME/lib:$JAVA_7_HOME/lib/tools.jar
export PATH=$PATH:$JAVA_8_HOME/bin
export CLASSPATH=.:$JAVA_8_HOME/jre/lib:$JAVA_8_HOME/lib:$JAVA_8_HOME/lib/tools.jar
export PATH=/root/work/apache-maven-3.3.9/bin:$PATH

5) apply it.

source /etc/profile

6)

cd pinpoint

7)

mvn install -Dmaven.test.skip=true
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 03:55 min
[INFO] Finished at: 2016-10-12T11:05:20+09:00
[INFO] Final Memory: 197M/1804M
[INFO] ------------------------------------------------------------------------

Thank you.

All 12 comments

Hi sohwaje,
Could you run with -X (debug flag) and post the relevant animal-sniffer-plugin error please?

Yes. Here it is.

[INFO] pinpoint-collector ................................. FAILURE [ 1.534 s]
[INFO] pinpoint-profiler-optional-jdk8 .................... SKIPPED
[INFO] pinpoint-web ....................................... SKIPPED
[INFO] pinpoint-hbase-distribution ........................ SKIPPED
[INFO] pinpoint-thirdparty ................................ SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 44.553 s
[INFO] Finished at: 2016-10-10T11:13:18+09:00
[INFO] Final Memory: 188M/3102M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.codehaus.mojo:animal-sniffer-maven-plugin:1.15:check (ensure-java-1.7-class-library) on project pinpoint-collector: Signature errors found. Verify them and ignore them with the proper annotation if needed. -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:animal-sniffer-maven-plugin:1.15:check (ensure-java-1.7-class-library) on project pinpoint-collector: Signature errors found. Verify them and ignore them with the proper annotation if needed.
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:199)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.MojoFailureException: Signature errors found. Verify them and ignore them with the proper annotation if needed.
at org.codehaus.mojo.animal_sniffer.maven.CheckSignatureMojo.execute(CheckSignatureMojo.java:265)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207)
... 20 more
[ERROR]
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn -rf :pinpoint-collector

Hmm, still not seeing the error log.

The line should be just above

[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:

and should look like this if it's an animal-sniffer verification error:
[ERROR] $PATH_TO_JAVA_CLASS:$LINE_NUMBER: Undefined reference: $CLASS_OR_METHOD_SIGNATURE

EDIT: err sorry about that, shouldn't need -X flag + changed the lines where the error log should appear

Or you could simply do mvn animal-sniffer:check :)

Debug log is so long. But I discovered this :

[ERROR] /root/work/pinpoint/collector/src/main/java/com/navercorp/pinpoint/collector/cluster/connection/CollectorClusterConnectionRepository.java:52: Undefined reference: java.util.concurrent.ConcurrentHashMap.KeySetView java.util.concurrent.ConcurrentHashMap.keySet()

Ah, I see. You're building from master right?
Could you update it to the latest source and try again?

I tried to reinstall. It may be summarized as follows.

1) # rm -rf pinpoint
2) # git clone https://github.com/naver/pinpoint.git
3) # cd pinpoint
4) # mvn install -Dmaven.test.skip=true

[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] pinpoint
[INFO] pinpoint-thrift
[INFO] pinpoint-commons
[INFO] pinpoint-commons-hbase
[INFO] pinpoint-commons-server
[INFO] pinpoint-bootstrap-core
[INFO] pinpoint-bootstrap
[INFO] pinpoint-rpc
[INFO] pinpoint-google-guava
[INFO] pinpoint-profiler
[INFO] pinpoint-profiler-optional-parent
[INFO] pinpoint-profiler-optional-jdk6
[INFO] pinpoint-profiler-optional-jdk7
[INFO] pinpoint-profiler-optional
[INFO] pinpoint-httpclient3-plugin
[INFO] pinpoint-httpclient4-plugin
[INFO] pinpoint-ning-asynchttpclient-plugin
[INFO] pinpoint-gson-plugin
[INFO] pinpoint-cubrid-jdbc-driver-plugin
[INFO] pinpoint-mysql-jdbc-driver-plugin
[INFO] pinpoint-mariadb-jdbc-driver-plugin
[INFO] pinpoint-postgresql-jdbc-driver-plugin
[INFO] pinpoint-jtds-plugin
[INFO] pinpoint-oracle-jdbc-driver-plugin
[INFO] pinpoint-commons-dbcp-plugin
[INFO] pinpoint-test
[INFO] pinpoint-cassandra-driver-plugin
[INFO] pinpoint-jdk-http-plugin
[INFO] pinpoint-redis-plugin
[INFO] pinpoint-tomcat-plugin
[INFO] pinpoint-json-lib-plugin
[INFO] pinpoint-jackson-plugin
[INFO] pinpoint-thrift-plugin
[INFO] pinpoint-user-plugin
[INFO] pinpoint-arcus-plugin
[INFO] pinpoint-google-httpclient-plugin
[INFO] pinpoint-jetty-plugin
[INFO] pinpoint-spring-plugin
[INFO] pinpoint-spring-boot-plugin
[INFO] pinpoint-ibatis-plugin
[INFO] pinpoint-mybatis-plugin
[INFO] pinpoint-okhttp-plugin
[INFO] pinpoint-log4j-plugin
[INFO] pinpoint-logback-plugin
[INFO] pinpoint-dubbo-plugin
[INFO] pinpoint-activemq-client-plugin
[INFO] pinpoint-cxf-plugin
[INFO] pinpoint-hystrix-plugin
[INFO] pinpoint-plugins
[INFO] pinpoint-bootstrap-core-optional
[INFO] pinpoint-tools
[INFO] pinpoint-agent-distribution
[INFO] pinpoint-collector
[INFO] pinpoint-profiler-optional-jdk8
[INFO] pinpoint-web
[INFO] pinpoint-hbase-distribution
[INFO] pinpoint-thirdparty
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building pinpoint 1.6.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-pinpoint-build-requirements) @ pinpoint ---
[INFO]
[INFO] --- animal-sniffer-maven-plugin:1.15:check (ensure-java-1.6-class-library) @ pinpoint ---
[INFO] Checking unresolved references to org.codehaus.mojo.signature:java16:1.0
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ pinpoint ---
[INFO] Installing /root/work/pinpoint/pom.xml to /root/.m2/repository/com/navercorp/pinpoint/pinpoint/1.6.0-SNAPSHOT/pinpoint-1.6.0-SNAPSHOT.pom
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building pinpoint-thrift 1.6.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-pinpoint-build-requirements) @ pinpoint-thrift ---
[INFO]
[INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ pinpoint-thrift ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 0 resource
[INFO] skip non existing resourceDirectory /root/work/pinpoint/thrift/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:compile (default-compile) @ pinpoint-thrift ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 81 source files to /root/work/pinpoint/thrift/target/classes
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] pinpoint ........................................... SUCCESS [ 1.347 s]
[INFO] pinpoint-thrift .................................... FAILURE [ 0.501 s]
[INFO] pinpoint-commons ................................... SKIPPED
[INFO] pinpoint-commons-hbase ............................. SKIPPED
[INFO] pinpoint-commons-server ............................ SKIPPED
[INFO] pinpoint-bootstrap-core ............................ SKIPPED
[INFO] pinpoint-bootstrap ................................. SKIPPED
[INFO] pinpoint-rpc ....................................... SKIPPED
[INFO] pinpoint-google-guava .............................. SKIPPED
[INFO] pinpoint-profiler .................................. SKIPPED
[INFO] pinpoint-profiler-optional-parent .................. SKIPPED
[INFO] pinpoint-profiler-optional-jdk6 .................... SKIPPED
[INFO] pinpoint-profiler-optional-jdk7 .................... SKIPPED
[INFO] pinpoint-profiler-optional ......................... SKIPPED
[INFO] pinpoint-httpclient3-plugin ........................ SKIPPED
[INFO] pinpoint-httpclient4-plugin ........................ SKIPPED
[INFO] pinpoint-ning-asynchttpclient-plugin ............... SKIPPED
[INFO] pinpoint-gson-plugin ............................... SKIPPED
[INFO] pinpoint-cubrid-jdbc-driver-plugin ................. SKIPPED
[INFO] pinpoint-mysql-jdbc-driver-plugin .................. SKIPPED
[INFO] pinpoint-mariadb-jdbc-driver-plugin ................ SKIPPED
[INFO] pinpoint-postgresql-jdbc-driver-plugin ............. SKIPPED
[INFO] pinpoint-jtds-plugin ............................... SKIPPED
[INFO] pinpoint-oracle-jdbc-driver-plugin ................. SKIPPED
[INFO] pinpoint-commons-dbcp-plugin ....................... SKIPPED
[INFO] pinpoint-test ...................................... SKIPPED
[INFO] pinpoint-cassandra-driver-plugin ................... SKIPPED
[INFO] pinpoint-jdk-http-plugin ........................... SKIPPED
[INFO] pinpoint-redis-plugin .............................. SKIPPED
[INFO] pinpoint-tomcat-plugin ............................. SKIPPED
[INFO] pinpoint-json-lib-plugin ........................... SKIPPED
[INFO] pinpoint-jackson-plugin ............................ SKIPPED
[INFO] pinpoint-thrift-plugin ............................. SKIPPED
[INFO] pinpoint-user-plugin ............................... SKIPPED
[INFO] pinpoint-arcus-plugin .............................. SKIPPED
[INFO] pinpoint-google-httpclient-plugin .................. SKIPPED
[INFO] pinpoint-jetty-plugin .............................. SKIPPED
[INFO] pinpoint-spring-plugin ............................. SKIPPED
[INFO] pinpoint-spring-boot-plugin ........................ SKIPPED
[INFO] pinpoint-ibatis-plugin ............................. SKIPPED
[INFO] pinpoint-mybatis-plugin ............................ SKIPPED
[INFO] pinpoint-okhttp-plugin ............................. SKIPPED
[INFO] pinpoint-log4j-plugin .............................. SKIPPED
[INFO] pinpoint-logback-plugin ............................ SKIPPED
[INFO] pinpoint-dubbo-plugin .............................. SKIPPED
[INFO] pinpoint-activemq-client-plugin .................... SKIPPED
[INFO] pinpoint-cxf-plugin ................................ SKIPPED
[INFO] pinpoint-hystrix-plugin ............................ SKIPPED
[INFO] pinpoint-plugins ................................... SKIPPED
[INFO] pinpoint-bootstrap-core-optional ................... SKIPPED
[INFO] pinpoint-tools ..................................... SKIPPED
[INFO] pinpoint-agent-distribution ........................ SKIPPED
[INFO] pinpoint-collector ................................. SKIPPED
[INFO] pinpoint-profiler-optional-jdk8 .................... SKIPPED
[INFO] pinpoint-web ....................................... SKIPPED
[INFO] pinpoint-hbase-distribution ........................ SKIPPED
[INFO] pinpoint-thirdparty ................................ SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.121 s
[INFO] Finished at: 2016-10-10T14:32:01+09:00
[INFO] Final Memory: 32M/606M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.5.1:compile (default-compile) on project pinpoint-thrift: Compilation failure -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[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/MojoFailureException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn -rf :pinpoint-thrift

Just tried a full build in a clean machine, and it seems to be okay.
Could you go into the thrift module directory and run mvn install with the debug flag and post the error?

cd thrift
mvn -X clean install -Dmaven.test.skip=true

[root/work/pinpoint/thrift]mvn -X clean install -Dmaven.test.skip=true

Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-11T01:41:47+09:00)
Maven home: /root/work/apache-maven-3.3.9
Java version: 1.7.0_80, vendor: Oracle Corporation
Java home: /usr/java/jdk1.7.0_80/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "2.6.32-504.30.3.el6.x86_64", arch: "amd64", family: "unix"
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG] Imported: javax.enterprise.inject.* < plexus.core
[DEBUG] Imported: javax.enterprise.util.* < plexus.core
[DEBUG] Imported: javax.inject.* < plexus.core
[DEBUG] Imported: org.apache.maven.* < plexus.core
[DEBUG] Imported: org.apache.maven.artifact < plexus.core
[DEBUG] Imported: org.apache.maven.classrealm < plexus.core
[DEBUG] Imported: org.apache.maven.cli < plexus.core
[DEBUG] Imported: org.apache.maven.configuration < plexus.core
[DEBUG] Imported: org.apache.maven.exception < plexus.core
[DEBUG] Imported: org.apache.maven.execution < plexus.core
[DEBUG] Imported: org.apache.maven.execution.scope < plexus.core
[DEBUG] Imported: org.apache.maven.lifecycle < plexus.core
[DEBUG] Imported: org.apache.maven.model < plexus.core
[DEBUG] Imported: org.apache.maven.monitor < plexus.core
[DEBUG] Imported: org.apache.maven.plugin < plexus.core
[DEBUG] Imported: org.apache.maven.profiles < plexus.core
[DEBUG] Imported: org.apache.maven.project < plexus.core
[DEBUG] Imported: org.apache.maven.reporting < plexus.core
[DEBUG] Imported: org.apache.maven.repository < plexus.core
[DEBUG] Imported: org.apache.maven.rtinfo < plexus.core
[DEBUG] Imported: org.apache.maven.settings < plexus.core
[DEBUG] Imported: org.apache.maven.toolchain < plexus.core
[DEBUG] Imported: org.apache.maven.usability < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.* < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.events < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core
[DEBUG] Imported: org.codehaus.classworlds < plexus.core
[DEBUG] Imported: org.codehaus.plexus.* < plexus.core
[DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core
[DEBUG] Imported: org.codehaus.plexus.component < plexus.core
[DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core
[DEBUG] Imported: org.codehaus.plexus.container < plexus.core
[DEBUG] Imported: org.codehaus.plexus.context < plexus.core
[DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core
[DEBUG] Imported: org.codehaus.plexus.logging < plexus.core
[DEBUG] Imported: org.codehaus.plexus.personality < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
[DEBUG] Imported: org.eclipse.aether.* < plexus.core
[DEBUG] Imported: org.eclipse.aether.artifact < plexus.core
[DEBUG] Imported: org.eclipse.aether.collection < plexus.core
[DEBUG] Imported: org.eclipse.aether.deployment < plexus.core
[DEBUG] Imported: org.eclipse.aether.graph < plexus.core
[DEBUG] Imported: org.eclipse.aether.impl < plexus.core
[DEBUG] Imported: org.eclipse.aether.installation < plexus.core
[DEBUG] Imported: org.eclipse.aether.internal.impl < plexus.core
[DEBUG] Imported: org.eclipse.aether.metadata < plexus.core
[DEBUG] Imported: org.eclipse.aether.repository < plexus.core
[DEBUG] Imported: org.eclipse.aether.resolution < plexus.core
[DEBUG] Imported: org.eclipse.aether.spi < plexus.core
[DEBUG] Imported: org.eclipse.aether.transfer < plexus.core
[DEBUG] Imported: org.eclipse.aether.version < plexus.core
[DEBUG] Imported: org.slf4j.* < plexus.core
[DEBUG] Imported: org.slf4j.helpers.* < plexus.core
[DEBUG] Imported: org.slf4j.spi.* < plexus.core
[DEBUG] Populating class realm maven.api
[INFO] Error stacktraces are turned on.
[DEBUG] Reading global settings from /root/work/apache-maven-3.3.9/conf/settings.xml
[DEBUG] Reading user settings from /root/.m2/settings.xml
[DEBUG] Reading global toolchains from /root/work/apache-maven-3.3.9/conf/toolchains.xml
[DEBUG] Reading user toolchains from /root/.m2/toolchains.xml
[DEBUG] Using local repository at /root/.m2/repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /root/.m2/repository
[INFO] Scanning for projects...
[DEBUG] Extension realms for project com.navercorp.pinpoint:pinpoint-thrift:jar:1.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project com.navercorp.pinpoint:pinpoint:pom:1.6.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecyle mappings for packaging pom from ClassRealm[plexus.core, parent: null]
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: com.navercorp.pinpoint:pinpoint-thrift:jar:1.6.0-SNAPSHOT
[DEBUG] Tasks: [clean, install]
[DEBUG] Style: Regular
[DEBUG] =======================================================================
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building pinpoint-thrift 1.6.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom
Downloaded: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom (4 KB at 5.8 KB/sec)
[DEBUG] Writing tracking file /root/.m2/repository/org/apache/maven/plugins/maven-clean-plugin/2.5/_remote.repositories
[DEBUG] Writing tracking file /root/.m2/repository/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom
Downloaded: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom (13 KB at 36.3 KB/sec)
[DEBUG] Writing tracking file /root/.m2/repository/org/apache/maven/plugins/maven-plugins/22/_remote.repositories
[DEBUG] Writing tracking file /root/.m2/repository/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for http://repo1.maven.org/maven2/
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for http://repo1.maven.org/maven2/
Downloading: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar
Downloaded: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar (25 KB at 59.5 KB/sec)
[DEBUG] Writing tracking file /root/.m2/repository/org/apache/maven/plugins/maven-clean-plugin/2.5/_remote.repositories
[DEBUG] Writing tracking file /root/.m2/repository/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar.lastUpdated
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: com.navercorp.pinpoint:pinpoint-thrift:1.6.0-SNAPSHOT
[DEBUG] Dependencies (collect): [test]
[DEBUG] Dependencies (resolve): [compile, runtime, test]
[DEBUG] Repositories (dependencies): [cloudera (https://repository.cloudera.com/artifactory/cloudera-repos/, default, releases+snapshots), spring-maven-repository (http://maven.springframework.org/release/, default, releases+snapshots), spring-maven-release-remote (http://repo.spring.io/libs-release-remote/, default, releases+snapshots), bintray (http://jcenter.bintray.com, default, releases+snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins) : [central (http://repo1.maven.org/maven2/, default, releases+snapshots)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
[DEBUG] Style: Regular
[DEBUG] Configuration:


${clean.excludeDefaultDirectories}
${maven.clean.failOnError}
${clean.followSymLinks}


${maven.clean.retryOnError}
${clean.skip}

${clean.verbose}

[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce (enforce-pinpoint-build-requirements)
[DEBUG] Style: Regular
[DEBUG] Configuration:

true
${enforcer.failFast}
${enforcer.ignoreCache}




3.2


1.7


JAVA_6_HOME


JAVA_7_HOME


JAVA_8_HOME



${enforcer.skip}

[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.7:resources (default-resources)
[DEBUG] Style: Regular
[DEBUG] Configuration:


UTF-8
${maven.resources.escapeString}
${maven.resources.escapeWindowsPaths}
${maven.resources.includeEmptyDirs}

${maven.resources.overwrite}



${maven.resources.supportMultiLineFiltering}



[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.5.1:compile (default-compile)
[DEBUG] Style: Regular
[DEBUG] Configuration:





${maven.compiler.compilerId}
${maven.compiler.compilerReuseStrategy}
1.6
true
${maven.compiler.debuglevel}
UTF-8
/usr/java/jdk1.6.0_45/bin/javac
${maven.compiler.failOnError}
${maven.compiler.forceJavacCompilerUse}
true

${maven.compiler.maxmem}
${maven.compiler.meminitial}

true




true
${maven.compiler.showWarnings}
${maven.main.skip}
${maven.compiler.skipMultiThreadWarning}
1.6
${lastModGranularityMs}
1.6
${maven.compiler.useIncrementalCompilation}
${maven.compiler.verbose}

[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.7:testResources (default-testResources)
[DEBUG] Style: Regular
[DEBUG] Configuration:


UTF-8
${maven.resources.escapeString}
${maven.resources.escapeWindowsPaths}
${maven.resources.includeEmptyDirs}

${maven.resources.overwrite}



${maven.test.skip}
${maven.resources.supportMultiLineFiltering}



[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.5.1:testCompile (default-testCompile)
[DEBUG] Style: Regular
[DEBUG] Configuration:





${maven.compiler.compilerId}
${maven.compiler.compilerReuseStrategy}
1.6
true
${maven.compiler.debuglevel}
UTF-8
/usr/java/jdk1.6.0_45/bin/javac
${maven.compiler.failOnError}
${maven.compiler.forceJavacCompilerUse}
true

${maven.compiler.maxmem}
${maven.compiler.meminitial}

true



true
${maven.compiler.showWarnings}
${maven.test.skip}
${maven.compiler.skipMultiThreadWarning}
1.6
${lastModGranularityMs}
1.6
${maven.compiler.testSource}
${maven.compiler.testTarget}
${maven.compiler.useIncrementalCompilation}
${maven.compiler.verbose}

[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test)
[DEBUG] Style: Regular
[DEBUG] Configuration:

${maven.test.additionalClasspath}
-Dfile.encoding=UTF-8

${childDelegation}

${maven.test.dependency.excludes}
${maven.surefire.debug}
${dependenciesToScan}
${disableXmlReport}
${enableAssertions}
${excludedGroups}

/Mock
/Abstract_
__/_Helper
/_$_

${surefire.excludesFile}
${surefire.failIfNoSpecifiedTests}
${failIfNoTests}
${forkCount}
once
${surefire.timeout}
${groups}
${surefire.includesFile}
${junitArtifactName}
/usr/java/jdk1.6.0_45/bin/java

${objectFactory}
${parallel}

${parallelOptimized}
${surefire.parallel.forcedTimeout}
${surefire.parallel.timeout}
${perCoreThreadCount}
${plugin.artifactMap}

${surefire.printSummary}
${project.artifactMap}
${maven.test.redirectTestOutputToFile}

${surefire.reportFormat}
${surefire.reportNameSuffix}

${surefire.rerunFailingTestsCount}
${reuseForks}
${surefire.runOrder}
${surefire.shutdown}
${maven.test.skip}
${surefire.skipAfterFailureCount}
${maven.test.skip.exec}
${skipTests}
${surefire.suiteXmlFiles}
${test}

${maven.test.failure.ignore}
${testNGArtifactName}

${threadCount}
${threadCountClasses}
${threadCountMethods}
${threadCountSuites}
${trimStackTrace}
${surefire.useFile}
${surefire.useManifestOnlyJar}
${surefire.useSystemClassLoader}
${useUnlimitedThreads}
${basedir}



[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.codehaus.mojo:animal-sniffer-maven-plugin:1.15:check (ensure-java-1.6-class-library)
[DEBUG] Style: Regular
[DEBUG] Configuration:



sun.






org.codehaus.mojo.signature
java16
1.0${animal.sniffer.signature}

${animal.sniffer.skip}

[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-jar-plugin:2.6:jar (default-jar)
[DEBUG] Style: Regular
[DEBUG] Configuration:


${maven.jar.classifier}

${jar.finalName}
${jar.forceCreation}



${jar.skipIfEmpty}
${jar.useDefaultManifestFile}

[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-install-plugin:2.4:install (default-install)
[DEBUG] Style: Regular
[DEBUG] Configuration:



${createChecksum}
${localRepository}


${maven.install.skip}
${updateReleaseInfo}

[DEBUG] =======================================================================
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=15, ConflictIdSorter.graphTime=1, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=5, ConflictResolver.conflictItemCount=14, DefaultDependencyCollector.collectTime=114, DefaultDependencyCollector.transformTime=10}
[DEBUG] com.navercorp.pinpoint:pinpoint-thrift:jar:1.6.0-SNAPSHOT
[DEBUG] org.apache.thrift:libthrift:jar:0.9.2:compile
[DEBUG] org.slf4j:slf4j-api:jar:1.7.21:compile
[DEBUG] org.slf4j:jcl-over-slf4j:jar:1.7.21:test
[DEBUG] org.slf4j:slf4j-log4j12:jar:1.7.21:test
[DEBUG] log4j:log4j:jar:1.2.16:test
[DEBUG] org.apache.commons:commons-lang3:jar:3.4:test
[DEBUG] junit:junit:jar:4.12:test
[DEBUG] org.hamcrest:hamcrest-core:jar:1.3:test
[DEBUG] org.hamcrest:hamcrest-library:jar:1.3:test
[DEBUG] org.mockito:mockito-all:jar:1.10.19:test
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ pinpoint-thrift ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=3, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=3, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=0, ConflictResolver.conflictItemCount=3, DefaultDependencyCollector.collectTime=19, DefaultDependencyCollector.transformTime=0}
[DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:2.5:
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
[DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0:compile
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5
[DEBUG] Included: org.apache.maven.plugins:maven-clean-plugin:jar:2.5
[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: sun.misc.Launcher$AppClassLoader@6a4d37e5]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
DEBUG directory = /root/work/pinpoint/thrift/target
DEBUG excludeDefaultDirectories = false
DEBUG failOnError = true
DEBUG followSymLinks = false
DEBUG outputDirectory = /root/work/pinpoint/thrift/target/classes
DEBUG reportDirectory = /root/work/pinpoint/thrift/target/site
DEBUG retryOnError = true
DEBUG skip = false
DEBUG testOutputDirectory = /root/work/pinpoint/thrift/target/test-classes
[DEBUG] -- end configuration --
[INFO] Deleting /root/work/pinpoint/thrift/target
[INFO] Deleting directory /root/work/pinpoint/thrift/target/generated-sources/annotations
[INFO] Deleting directory /root/work/pinpoint/thrift/target/generated-sources
[INFO] Deleting directory /root/work/pinpoint/thrift/target/classes
[INFO] Deleting file /root/work/pinpoint/thrift/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
[INFO] Deleting file /root/work/pinpoint/thrift/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
[INFO] Deleting directory /root/work/pinpoint/thrift/target/maven-status/maven-compiler-plugin/compile/default-compile
[INFO] Deleting directory /root/work/pinpoint/thrift/target/maven-status/maven-compiler-plugin/compile
[INFO] Deleting directory /root/work/pinpoint/thrift/target/maven-status/maven-compiler-plugin
[INFO] Deleting directory /root/work/pinpoint/thrift/target/maven-status
[INFO] Deleting directory /root/work/pinpoint/thrift/target
[DEBUG] Skipping non-existing directory /root/work/pinpoint/thrift/target/classes
[DEBUG] Skipping non-existing directory /root/work/pinpoint/thrift/target/test-classes
[DEBUG] Skipping non-existing directory /root/work/pinpoint/thrift/target/site
[INFO]
[INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-pinpoint-build-requirements) @ pinpoint-thrift ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=1, ConflictMarker.nodeCount=137, ConflictIdSorter.graphTime=1, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=49, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=13, ConflictResolver.conflictItemCount=112, DefaultDependencyCollector.collectTime=285, DefaultDependencyCollector.transformTime=16}
[DEBUG] org.apache.maven.plugins:maven-enforcer-plugin:jar:1.4.1:
[DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile
[DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile
[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile
[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.11:compile
[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[DEBUG] org.apache.maven:maven-core:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1: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.1: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-repository-metadata:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile
[DEBUG] commons-cli:commons-cli:jar:1.2:compile
[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile
[DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
[DEBUG] org.apache.maven:maven-monitor:jar:2.2.1:compile
[DEBUG] classworlds:classworlds:jar:1.1:compile
[DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.22:compile
[DEBUG] commons-lang:commons-lang:jar:2.3:compile
[DEBUG] org.apache.maven.enforcer:enforcer-api:jar:1.4.1:compile
[DEBUG] org.apache.maven.enforcer:enforcer-rules:jar:1.4.1:compile
[DEBUG] org.apache.maven.shared:maven-common-artifact-filters:jar:1.4:compile
[DEBUG] org.beanshell:bsh:jar:2.0b4:compile
[DEBUG] org.apache.maven.shared:maven-dependency-tree:jar:2.2: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.codehaus.plexus:plexus-i18n:jar:1.0-beta-6:compile
[DEBUG] org.apache.maven.plugin-testing:maven-plugin-testing-harness:jar:1.3:compile
[DEBUG] org.codehaus.plexus:plexus-archiver:jar:2.2:compile
[DEBUG] org.codehaus.plexus:plexus-io:jar:2.0.4:compile
[DEBUG] junit:junit:jar:4.11:compile
[DEBUG] org.hamcrest:hamcrest-core:jar:1.3:compile
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1
[DEBUG] Included: org.apache.maven.plugins:maven-enforcer-plugin:jar:1.4.1
[DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1
[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.11
[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.1
[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: org.codehaus.plexus:plexus-utils:jar:3.0.22
[DEBUG] Included: commons-lang:commons-lang:jar:2.3
[DEBUG] Included: org.apache.maven.enforcer:enforcer-api:jar:1.4.1
[DEBUG] Included: org.apache.maven.enforcer:enforcer-rules:jar:1.4.1
[DEBUG] Included: org.apache.maven.shared:maven-common-artifact-filters:jar:1.4
[DEBUG] Included: org.beanshell:bsh:jar:2.0b4
[DEBUG] Included: org.apache.maven.shared:maven-dependency-tree:jar:2.2
[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.codehaus.plexus:plexus-i18n:jar:1.0-beta-6
[DEBUG] Included: org.apache.maven.plugin-testing:maven-plugin-testing-harness:jar:1.3
[DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:2.2
[DEBUG] Included: org.codehaus.plexus:plexus-io:jar:2.0.4
[DEBUG] Included: junit:junit:jar:4.11
[DEBUG] Included: org.hamcrest:hamcrest-core:jar:1.3
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1, parent: sun.misc.Launcher$AppClassLoader@6a4d37e5]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce' with basic configurator -->
DEBUG fail = true
DEBUG failFast = false
DEBUG ignoreCache = false
DEBUG mojoExecution = org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce {execution: enforce-pinpoint-build-requirements}
DEBUG project = MavenProject: com.navercorp.pinpoint:pinpoint-thrift:1.6.0-SNAPSHOT @ /root/work/pinpoint/thrift/pom.xml
DEBUG version = 3.2
DEBUG version = 1.7
DEBUG variableName = JAVA_6_HOME
DEBUG variableName = JAVA_7_HOME
DEBUG variableName = JAVA_8_HOME
DEBUG rules = [org.apache.maven.plugins.enforcer.RequireMavenVersion@7c221721, org.apache.maven.plugins.enforcer.RequireJavaVersion@221cb732, org.apache.maven.plugins.enforcer.RequireEnvironmentVariable@b3f451d, org.apache.maven.plugins.enforcer.RequireEnvironmentVariable@66d278af, org.apache.maven.plugins.enforcer.RequireEnvironmentVariable@3f15de6]
[DEBUG](s) session = org.apache.maven.execution.MavenSession@5b4ba90f
DEBUG skip = false
[DEBUG] -- end configuration --
[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireMavenVersion
[DEBUG] Rule org.apache.maven.plugins.enforcer.RequireMavenVersion is cacheable.
[DEBUG] Detected Maven Version: 3.3.9
[DEBUG] Detected Maven Version: 3.3.9 is allowed in the range 3.2.
[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireJavaVersion
[DEBUG] Rule org.apache.maven.plugins.enforcer.RequireJavaVersion is cacheable.
[DEBUG] Detected Java String: 1.7.0_80
[DEBUG] Normalized Java String: 1.7.0-80
[DEBUG] Parsed Version: Major: 1 Minor: 7 Incremental: 0 Build: 80 Qualifier: null
[DEBUG] Detected JDK Version: 1.7.0-80 is allowed in the range 1.7.
[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireEnvironmentVariable
[DEBUG] Rule org.apache.maven.plugins.enforcer.RequireEnvironmentVariable is cacheable.
[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireEnvironmentVariable
[DEBUG] Rule org.apache.maven.plugins.enforcer.RequireEnvironmentVariable is cacheable.
[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireEnvironmentVariable
[DEBUG] Rule org.apache.maven.plugins.enforcer.RequireEnvironmentVariable is cacheable.
[INFO]
[INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ pinpoint-thrift ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=143, ConflictIdSorter.graphTime=1, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=36, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=7, ConflictResolver.conflictItemCount=88, DefaultDependencyCollector.collectTime=101, DefaultDependencyCollector.transformTime=9}
[DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:2.7:
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile
[DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile
[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile
[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[DEBUG] junit:junit:jar:3.8.1:compile
[DEBUG] org.apache.maven:maven-core:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1: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.1: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-repository-metadata:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile
[DEBUG] commons-cli:commons-cli:jar:1.2:compile
[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile
[DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
[DEBUG] classworlds:classworlds:jar:1.1:compile
[DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-monitor:jar:2.2.1:compile
[DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.15:compile
[DEBUG] org.apache.maven.shared:maven-filtering:jar:1.2:compile
[DEBUG] org.apache.maven.shared:maven-shared-utils:jar:0.3:compile
[DEBUG] com.google.code.findbugs:jsr305:jar:2.0.1:compile
[DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.19:compile
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.7
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.7
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.7
[DEBUG] Included: org.apache.maven.plugins:maven-resources-plugin:jar:2.7
[DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1
[DEBUG] Included: junit:junit:jar:3.8.1
[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.1
[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: org.codehaus.plexus:plexus-utils:jar:3.0.15
[DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.2
[DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:0.3
[DEBUG] Included: com.google.code.findbugs:jsr305:jar:2.0.1
[DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.19
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.7:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.7, parent: sun.misc.Launcher$AppClassLoader@6a4d37e5]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.7:resources' with basic configurator -->
DEBUG buildFilters = []
[DEBUG](f) encoding = UTF-8
DEBUG escapeWindowsPaths = true
DEBUG includeEmptyDirs = false
DEBUG outputDirectory = /root/work/pinpoint/thrift/target/classes
DEBUG overwrite = false
DEBUG project = MavenProject: com.navercorp.pinpoint:pinpoint-thrift:1.6.0-SNAPSHOT @ /root/work/pinpoint/thrift/pom.xml
DEBUG resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /root/work/pinpoint/thrift/src/main/java, PatternSet [includes: {}, excludes: {
/_.java}]}}, Resource {targetPath: null, filtering: true, FileSet {directory: /root/work/pinpoint/thrift/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG](f) session = org.apache.maven.execution.MavenSession@5b4ba90f
DEBUG supportMultiLineFiltering = false
DEBUG useBuildFilters = true
DEBUG useDefaultDelimiters = true
[DEBUG] -- end configuration --
[DEBUG] properties used {java.vendor=Oracle Corporation, env.LESSOPEN=||/usr/bin/lesspipe.sh %s, sun.java.launcher=SUN_STANDARD, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.name=Linux, sun.boot.class.path=/usr/java/jdk1.7.0_80/jre/lib/resources.jar:/usr/java/jdk1.7.0_80/jre/lib/rt.jar:/usr/java/jdk1.7.0_80/jre/lib/sunrsasign.jar:/usr/java/jdk1.7.0_80/jre/lib/jsse.jar:/usr/java/jdk1.7.0_80/jre/lib/jce.jar:/usr/java/jdk1.7.0_80/jre/lib/charsets.jar:/usr/java/jdk1.7.0_80/jre/lib/jfr.jar:/usr/java/jdk1.7.0_80/jre/classes, env.PWD=/root/work/pinpoint/thrift, env.LANG=en_US.UTF-8, java.vm.specification.vendor=Oracle Corporation, test.jdk.home=/usr/java/jdk1.6.0_45, httpcomponents.version=4.3, java.runtime.version=1.7.0_80-b15, env.HISTSIZE=1000, user.name=root, maven.build.version=Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-11T01:41:47+09:00), env.USER=root, env.HISTCONTROL=ignoredups, env.SHELL=/bin/bash, docker.maven.plugin.version=0.4.3, env.SSH_TTY=/dev/pts/2, env.NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, env.PATH=/root/work/apache-maven-3.3.9/bin:/root/work/apache-maven-3.3.9/bin:/root/work/apache-maven-3.3.9/bin:/root/work/apache-maven-3.3.9/bin:/root/work/apache-maven-3.3.9/bin:/root/work/apache-maven-3.3.9/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin, user.language=en, cassandra.driver.version=2.1.7.1, sun.boot.library.path=/usr/java/jdk1.7.0_80/jre/lib/amd64, env.JAVA_6_HOME=/usr/java/jdk1.6.0_45, classworlds.conf=/root/work/apache-maven-3.3.9/bin/m2.conf, env.SSH_CONNECTION=112.223.14.90 56024 222.231.26.189 22, sniffer.artifactid=java16, java.version=1.7.0_80, env.SSH_CLIENT=112.223.14.90 56024 22, user.timezone=ROK, sun.arch.data.model=64, java.endorsed.dirs=/usr/java/jdk1.7.0_80/jre/lib/endorsed, sun.cpu.isalist=, sun.jnu.encoding=UTF-8, file.encoding.pkg=sun.io, env.SHLVL=1, file.separator=/, env.HOSTNAME=is3was05, java.specification.name=Java Platform API Specification, env=local, java.class.version=51.0, org.slf4j.simpleLogger.defaultLogLevel=debug, user.country=US, java.home=/usr/java/jdk1.7.0_80/jre, java.vm.info=mixed mode, cloverLicenseLocation=/root/work/pinpoint/thrift/clover.license, env.LOGNAME=root, os.version=2.6.32-504.30.3.el6.x86_64, env.JAVA_7_HOME=/usr/java/jdk1.7.0_80, env.G_BROKEN_FILENAMES=1, path.separator=:, java.vm.version=24.80-b11, env.JAVA_HOME=/usr/java/jdk1.7.0_80, java.awt.printerjob=sun.print.PSPrinterJob, env.TERM=linux, sun.io.unicode.encoding=UnicodeLittle, awt.toolkit=sun.awt.X11.XToolkit, metrics.version=3.1.2, env.JAVA_8_HOME=/usr/java/jdk1.8.0_71, user.home=/root, env.OLDPWD=/root/work/pinpoint/thrift, java.specification.vendor=Oracle Corporation, java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib, java.vendor.url=http://java.oracle.com/, env.MAVEN_CMD_LINE_ARGS= -X clean install -Dmaven.test.skip=true, java.vm.vendor=Oracle Corporation, spring.batch.version=2.2.7.RELEASE, maven.home=/root/work/apache-maven-3.3.9, java.runtime.name=Java(TM) SE Runtime Environment, jedis.version=2.4.2, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X clean install -Dmaven.test.skip=true, java.class.path=/root/work/apache-maven-3.3.9/boot/plexus-classworlds-2.5.2.jar, jetty.version=8.1.12.v20130726, codehaus.jackson.version=1.9.13, maven.test.skip=true, maven.version=3.3.9, env.CVS_RSH=ssh, jdk.version=1.6, env.XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, jdk.home=/usr/java/jdk1.6.0_45, slf4j.version=1.7.21, spring.security.version=4.0.4.RELEASE, java.vm.specification.name=Java Virtual Machine Specification, java.vm.specification.version=1.7, sun.cpu.endian=little, sun.os.patch.level=unknown, env.HOME=/root, env.LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:_.tar=01;31:_.tgz=01;31:_.arj=01;31:_.taz=01;31:_.lzh=01;31:_.lzma=01;31:_.tlz=01;31:_.txz=01;31:_.zip=01;31:_.z=01;31:_.Z=01;31:_.dz=01;31:_.gz=01;31:_.lz=01;31:_.xz=01;31:_.bz2=01;31:_.tbz=01;31:_.tbz2=01;31:_.bz=01;31:_.tz=01;31:_.deb=01;31:_.rpm=01;31:_.jar=01;31:_.rar=01;31:_.ace=01;31:_.zoo=01;31:_.cpio=01;31:_.7z=01;31:_.rz=01;31:_.jpg=01;35:_.jpeg=01;35:_.gif=01;35:_.bmp=01;35:_.pbm=01;35:_.pgm=01;35:_.ppm=01;35:_.tga=01;35:_.xbm=01;35:_.xpm=01;35:_.tif=01;35:_.tiff=01;35:_.png=01;35:_.svg=01;35:_.svgz=01;35:_.mng=01;35:_.pcx=01;35:_.mov=01;35:_.mpg=01;35:_.mpeg=01;35:_.m2v=01;35:_.mkv=01;35:_.ogm=01;35:_.mp4=01;35:_.m4v=01;35:_.mp4v=01;35:_.vob=01;35:_.qt=01;35:_.nuv=01;35:_.wmv=01;35:_.asf=01;35:_.rm=01;35:_.rmvb=01;35:_.flc=01;35:_.avi=01;35:_.fli=01;35:_.flv=01;35:_.gl=01;35:_.dl=01;35:_.xcf=01;35:_.xwd=01;35:_.yuv=01;35:_.cgm=01;35:_.emf=01;35:_.axv=01;35:_.anx=01;35:_.ogv=01;35:_.ogx=01;35:_.aac=01;36:_.au=01;36:_.flac=01;36:_.mid=01;36:_.midi=01;36:_.mka=01;36:_.mp3=01;36:_.mpc=01;36:_.ogg=01;36:_.ra=01;36:_.wav=01;36:_.axa=01;36:_.oga=01;36:_.spx=01;36:_.xspf=01;36:, java.io.tmpdir=/tmp, fastxml.jackson.version=2.6.6, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, maven.multiModuleProjectDirectory=/root/work/pinpoint/thrift, os.arch=amd64, java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment, java.ext.dirs=/usr/java/jdk1.7.0_80/jre/lib/ext:/usr/java/packages/lib/ext, user.dir=/root/work/pinpoint/thrift, line.separator=
, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, spring.version=4.1.9.RELEASE, env.MAIL=/var/spool/mail/root, file.encoding=UTF-8, java.specification.version=1.7, encoding=UTF-8, env.MAVEN_PROJECTBASEDIR=/root/work/pinpoint/thrift}
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory /root/work/pinpoint/thrift/src/main/java
excludes [__/_.java]
includes []
[DEBUG] ignoreDelta true
[INFO] Copying 0 resource
[DEBUG] resource with targetPath null
directory /root/work/pinpoint/thrift/src/main/resources
excludes []
includes []
[INFO] skip non existing resourceDirectory /root/work/pinpoint/thrift/src/main/resources
[DEBUG] no use filter components
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:compile (default-compile) @ pinpoint-thrift ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=2, ConflictMarker.markTime=1, ConflictMarker.nodeCount=188, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=1, ConflictIdSorter.conflictIdCount=51, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=15, ConflictResolver.conflictItemCount=73, DefaultDependencyCollector.collectTime=147, DefaultDependencyCollector.transformTime=19}
[DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:3.5.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.5.5:compile
[DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG] org.apache.maven:maven-toolchain:jar:2.2.1:compile
[DEBUG] org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile
[DEBUG] commons-io:commons-io:jar:2.4:compile
[DEBUG] com.google.code.findbugs:jsr305:jar:2.0.1:compile
[DEBUG] org.apache.maven.shared:maven-shared-incremental:jar:1.1:compile
[DEBUG] org.codehaus.plexus:plexus-compiler-api:jar:2.7:compile
[DEBUG] org.codehaus.plexus:plexus-compiler-manager:jar:2.7:compile
[DEBUG] org.codehaus.plexus:plexus-compiler-javac:jar:2.7:runtime
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.5.1
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.5.1
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.5.1
[DEBUG] Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.5.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.5.5
[DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
[DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4
[DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0
[DEBUG] Included: commons-io:commons-io:jar:2.4
[DEBUG] Included: com.google.code.findbugs:jsr305:jar:2.0.1
[DEBUG] Included: org.apache.maven.shared:maven-shared-incremental:jar:1.1
[DEBUG] Included: org.codehaus.plexus:plexus-compiler-api:jar:2.7
[DEBUG] Included: org.codehaus.plexus:plexus-compiler-manager:jar:2.7
[DEBUG] Included: org.codehaus.plexus:plexus-compiler-javac:jar:2.7
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.5.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.5.1, parent: sun.misc.Launcher$AppClassLoader@6a4d37e5]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.5.1:compile' with basic configurator -->
DEBUG basedir = /root/work/pinpoint/thrift
DEBUG buildDirectory = /root/work/pinpoint/thrift/target
DEBUG classpathElements = [/root/work/pinpoint/thrift/target/classes, /root/.m2/repository/org/apache/thrift/libthrift/0.9.2/libthrift-0.9.2.jar, /root/.m2/repository/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.jar]
[DEBUG](f) compileSourceRoots = [/root/work/pinpoint/thrift/src/main/java]
[DEBUG](f) compilerId = javac
DEBUG compilerVersion = 1.6
DEBUG debug = true
DEBUG encoding = UTF-8
DEBUG executable = /usr/java/jdk1.6.0_45/bin/javac
DEBUG failOnError = true
DEBUG forceJavacCompilerUse = false
DEBUG fork = true
DEBUG generatedSourcesDirectory = /root/work/pinpoint/thrift/target/generated-sources/annotations
DEBUG mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.5.1:compile {execution: default-compile}
DEBUG optimize = true
DEBUG outputDirectory = /root/work/pinpoint/thrift/target/classes
DEBUG project = MavenProject: com.navercorp.pinpoint:pinpoint-thrift:1.6.0-SNAPSHOT @ /root/work/pinpoint/thrift/pom.xml
DEBUG projectArtifact = com.navercorp.pinpoint:pinpoint-thrift:jar:1.6.0-SNAPSHOT
DEBUG session = org.apache.maven.execution.MavenSession@5b4ba90f
DEBUG showDeprecation = true
DEBUG showWarnings = false
DEBUG skipMultiThreadWarning = false
DEBUG source = 1.6
DEBUG staleMillis = 0
DEBUG target = 1.6
DEBUG useIncrementalCompilation = true
DEBUG verbose = false
[DEBUG] -- end configuration --
[DEBUG] Using compiler 'javac'.
[DEBUG] Source directories: [/root/work/pinpoint/thrift/src/main/java]
[DEBUG] Classpath: [/root/work/pinpoint/thrift/target/classes
/root/.m2/repository/org/apache/thrift/libthrift/0.9.2/libthrift-0.9.2.jar
/root/.m2/repository/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.jar]
[DEBUG] Output directory: /root/work/pinpoint/thrift/target/classes
[DEBUG] Adding /root/work/pinpoint/thrift/target/generated-sources/annotations to compile source roots:
/root/work/pinpoint/thrift/src/main/java
[DEBUG] New compile source roots:
/root/work/pinpoint/thrift/src/main/java
/root/work/pinpoint/thrift/target/generated-sources/annotations
[DEBUG] CompilerReuseStrategy: reuseCreated
[DEBUG] useIncrementalCompilation enabled
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCommandThreadDump.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/BufferOverflowException.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TJvmGcType.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCommandTransferResponse.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ByteArrayOutputStreamTransport.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TIntStringStringValue.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TSpanEvent.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/SpanStreamConstants.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TActiveThreadDump.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TStringMetaData.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TBaseStreamNode.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ResettableOutputStream.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TBaseLocator.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ChunkHeaderBufferedTBaseSerializer.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/HeaderUtils.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ThreadLocalHeaderTBaseDeserializerFactory.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TJvmGc.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TAgentStat.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TJvmInfo.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/HeaderTBaseSerializerFactory2.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCmdActiveThreadCount.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/NetworkAvailabilityCheckPacket.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TCommandTypeVersion.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TReplaceListProtocol.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TThreadDumpType.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ByteBufferOutputStream.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TBaseStream.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TResult.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TOutputStreamTransport.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ChunkHeaderTBaseDeserializer.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TThreadState.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TCpuLoad.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TServerMetaData.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ResettableByteArrayOutputStream.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/CommandHeaderTBaseDeserializerFactory.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TRouteResult.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TAnnotationValue.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/HeaderTBaseDeserializer.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TIntStringValue.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCmdActiveThreadCountRes.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TActiveTrace.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TApiMetaData.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ChunkHeaderBufferedTBaseSerializerFactory.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/DeserializerFactory.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TAgentInfo.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TCommandRegistry.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/PinpointByteArrayOutputStream.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TExceptionValue.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCmdActiveThreadDumpRes.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TTransaction.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/DefaultTBaseLocator.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ByteArrayOutput.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ThreadLocalHeaderTBaseSerializerFactory.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/Header.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/UnsafeByteArrayOutputStream.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TAnnotation.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/HeaderTBaseSerializer2.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ChunkHeaderTBaseDeserializerFactory.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TMonitorInfo.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/HeaderTBaseSerializerFactory.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TAgentStatBatch.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCommandEcho.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TJvmGcDetailed.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TServiceInfo.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TSpanChunk.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TThreadDump.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TCommandType.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/CommandHeaderTBaseSerializerFactory.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/BytesUtils.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ChunkHeaderBufferedTBaseSerializerFlushHandler.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCommandThreadDumpResponse.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/HeaderTBaseSerializer.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TSqlMetaData.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/SerializerFactory.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCommandTransfer.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/PacketUtils.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/HeaderTBaseDeserializerFactory.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/util/SerializationUtils.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TActiveTraceHistogram.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCmdActiveThreadDump.java
[DEBUG] Stale source detected: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TSpan.java
[INFO] Changes detected - recompiling the module!
[DEBUG] Classpath:
[DEBUG] /root/work/pinpoint/thrift/target/classes
[DEBUG] /root/.m2/repository/org/apache/thrift/libthrift/0.9.2/libthrift-0.9.2.jar
[DEBUG] /root/.m2/repository/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.jar
[DEBUG] Source roots:
[DEBUG] /root/work/pinpoint/thrift/src/main/java
[DEBUG] /root/work/pinpoint/thrift/target/generated-sources/annotations
[DEBUG] Excutable:
[DEBUG] /usr/java/jdk1.6.0_45/bin/javac
[DEBUG] Command line options:
[DEBUG] -d /root/work/pinpoint/thrift/target/classes -classpath /root/work/pinpoint/thrift/target/classes:/root/.m2/repository/org/apache/thrift/libthrift/0.9.2/libthrift-0.9.2.jar:/root/.m2/repository/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.jar: -sourcepath /root/work/pinpoint/thrift/src/main/java:/root/work/pinpoint/thrift/target/generated-sources/annotations: /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TSpanChunk.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TServiceInfo.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TJvmGcDetailed.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCommandEcho.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TAgentStatBatch.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TMonitorInfo.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ChunkHeaderTBaseDeserializerFactory.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/HeaderTBaseSerializerFactory.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/HeaderTBaseSerializer2.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TAnnotation.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/UnsafeByteArrayOutputStream.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/Header.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ThreadLocalHeaderTBaseSerializerFactory.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ByteArrayOutput.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/DefaultTBaseLocator.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TTransaction.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCmdActiveThreadDumpRes.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TExceptionValue.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/PinpointByteArrayOutputStream.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TCommandRegistry.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TAgentInfo.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/DeserializerFactory.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TSpan.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCmdActiveThreadDump.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TActiveTraceHistogram.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/util/SerializationUtils.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/PacketUtils.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/HeaderTBaseDeserializerFactory.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCommandTransfer.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/SerializerFactory.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TSqlMetaData.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/HeaderTBaseSerializer.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCommandThreadDumpResponse.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ChunkHeaderBufferedTBaseSerializerFlushHandler.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/BytesUtils.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/CommandHeaderTBaseSerializerFactory.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TThreadDump.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TCommandType.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TReplaceListProtocol.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCmdActiveThreadCount.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/NetworkAvailabilityCheckPacket.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TCommandTypeVersion.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/HeaderTBaseSerializerFactory2.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TJvmInfo.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TAgentStat.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TJvmGc.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ThreadLocalHeaderTBaseDeserializerFactory.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ChunkHeaderBufferedTBaseSerializer.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/HeaderUtils.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TBaseLocator.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ResettableOutputStream.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TBaseStreamNode.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TStringMetaData.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TActiveThreadDump.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/SpanStreamConstants.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TSpanEvent.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TIntStringStringValue.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ByteArrayOutputStreamTransport.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCommandTransferResponse.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TJvmGcType.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/BufferOverflowException.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCommandThreadDump.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ChunkHeaderBufferedTBaseSerializerFactory.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TApiMetaData.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TActiveTrace.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TCmdActiveThreadCountRes.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TIntStringValue.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TAnnotationValue.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/HeaderTBaseDeserializer.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TRouteResult.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/CommandHeaderTBaseDeserializerFactory.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TServerMetaData.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ResettableByteArrayOutputStream.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TCpuLoad.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TThreadState.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ChunkHeaderTBaseDeserializer.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TOutputStreamTransport.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/TResult.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/TBaseStream.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/io/ByteBufferOutputStream.java /root/work/pinpoint/thrift/src/main/java/com/navercorp/pinpoint/thrift/dto/command/TThreadDumpType.java -s /root/work/pinpoint/thrift/target/generated-sources/annotations -O -g -deprecation -target 1.6 -source 1.6 -encoding UTF-8
[DEBUG] incrementalBuildHelper#beforeRebuildExecution
[INFO] Compiling 81 source files to /root/work/pinpoint/thrift/target/classes
[DEBUG] incrementalBuildHelper#afterRebuildExecution
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.665 s
[INFO] Finished at: 2016-10-10T15:19:09+09:00
[INFO] Final Memory: 14M/480M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.5.1:compile (default-compile) on project pinpoint-thrift: Compilation failure -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.5.1:compile (default-compile) on project pinpoint-thrift: Compilation failure
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:199)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.compiler.CompilationFailureException: Compilation failure
at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute(AbstractCompilerMojo.java:976)
at org.apache.maven.plugin.compiler.CompilerMojo.execute(CompilerMojo.java:129)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207)
... 20 more
[ERROR]
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

The error looks exactly like the one in #1781.
Could you check your jdk 7 installation again?

I solved it.

1) Oracle JDK Download for Linux(RPM is not.)

jdk-6u45-linux-x64.bin, jdk-7u79-linux-x64.tar.gz, jdk-8u101-linux-x64.tar.gz

2)

./jdk-6u45-linux-x64.bin
tar xvfz jdk-7u79-linux-x64.tar.gz jdk-8u101-linux-x64.tar.gz

3)

mv jdk1.6.0_45 jdk1.7.0_79 jdk1.8.0_101 /usr/java

4) edit and save

vi /etc/profile
export JAVA_HOME=/usr/java/jdk1.7.0_79
export JAVA_6_HOME=/usr/java/jdk1.6.0_45
export JAVA_7_HOME=/usr/java/jdk1.7.0_79
export JAVA_8_HOME=/usr/java/jdk1.8.0_101
export PATH=$PATH:$JAVA_HOME/bin
export CLASSPATH=.:$JAVA_HOME/jre/lib:$JAVA_HOME/lib:$JAVA_HOME/lib/tools.jar
export PATH=$PATH:$JAVA_6_HOME/bin
export CLASSPATH=.:$JAVA_6_HOME/jre/lib:$JAVA_6_HOME/lib:$JAVA_6_HOME/lib/tools.jar
export PATH=$PATH:$JAVA_7_HOME/bin
export CLASSPATH=.:$JAVA_7_HOME/jre/lib:$JAVA_7_HOME/lib:$JAVA_7_HOME/lib/tools.jar
export PATH=$PATH:$JAVA_8_HOME/bin
export CLASSPATH=.:$JAVA_8_HOME/jre/lib:$JAVA_8_HOME/lib:$JAVA_8_HOME/lib/tools.jar
export PATH=/root/work/apache-maven-3.3.9/bin:$PATH

5) apply it.

source /etc/profile

6)

cd pinpoint

7)

mvn install -Dmaven.test.skip=true
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 03:55 min
[INFO] Finished at: 2016-10-12T11:05:20+09:00
[INFO] Final Memory: 197M/1804M
[INFO] ------------------------------------------------------------------------

Thank you.

Awesome, glad it worked out.
Let us know if you've more questions.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

ing-arriola picture ing-arriola  路  3Comments

duwupeng picture duwupeng  路  4Comments

Allive1 picture Allive1  路  5Comments

zilingliyu picture zilingliyu  路  4Comments

geniuszhe picture geniuszhe  路  3Comments