1.需要安装:
jdk1.7
scala2.10.4
maven 3.3..9
idea 15.04
2.下载spark1.5.2源码
https://github.com/apache/spark
进release
3.编译安装:
mvn clean package -DskipTests
查看详细错误:
mvn clean package -DskipTests -X
Failed to execute goal org.apache.maven.plugins:maven-enforcer-plugin:1.4:enforce (enforce-versions)
按照参考【1】并没有解决
查看具体的报错信息发现:是由于IDEA默认的maven为3.0.5
而spark-1.5.2的pom文件制定的maven是3.3.3
我本地的是3.3.9
[DEBUG] Adding failure due to exception
org.apache.maven.enforcer.rule.api.EnforcerRuleException: Detected Maven Version: 3.0.5 is not in the allowed range 3.3.3.
at org.apache.maven.plugins.enforcer.AbstractVersionEnforcer.enforceVersion(AbstractVersionEnforcer.java:106)
解决办法:
将IDEA的setting中的maven修改为3.3.9
(2)运行内存问题
[ERROR] PermGen space -> [Help 1]
java.lang.OutOfMemoryError: PermGen space
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.security.SecureClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.access$100(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at scala.collection.AbstractSeq.(Seq.scala:40)
at scala.collection.mutable.AbstractSeq.(Seq.scala:47)
at scala.collection.mutable.StringBuilder.(StringBuilder.scala:28)
at scala.collection.mutable.StringBuilder.(StringBuilder.scala:46)
at scala.collection.mutable.StringBuilder.(StringBuilder.scala:51)
at scala.tools.nsc.settings.MutableSettings.PathSetting(MutableSettings.scala:226)
at scala.tools.nsc.settings.MutableSettings.PathSetting(MutableSettings.scala:19)
at scala.tools.nsc.settings.StandardScalaSettings$class.$init$(StandardScalaSettings.scala:21)
at scala.tools.nsc.settings.MutableSettings.(MutableSettings.scala:19)
at scala.tools.nsc.Settings.(Settings.scala:12)
at xsbt.CachedCompiler0.(CompilerInterface.scala:71)
at xsbt.CompilerInterface.newCompiler(CompilerInterface.scala:24)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at sbt.compiler.AnalyzingCompiler.call(AnalyzingCompiler.scala:102)
at sbt.compiler.AnalyzingCompiler.newCachedCompiler(AnalyzingCompiler.scala:57)
at sbt.compiler.AnalyzingCompiler.newCachedCompiler(AnalyzingCompiler.scala:52)
at sbt.compiler.CompilerCache$$anon$2.apply(CompilerCache.scala:50)
at sbt.compiler.AnalyzingCompiler.compile(AnalyzingCompiler.scala:39)
[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/OutOfMemoryError
问题分析:
之前有参考【3】的解决方法,但基本都是cmd或者ubuntu的terminal下
参考【4】有解决方案,但没有找到mvn.bat,找到了一个mvn,里面有一行:
MAVEN_PROJECTBASEDIR="${MAVEN_BASEDIR:-$(find_maven_basedir)}"
MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
准备加上:
#MAVEN_OPTS=-Xmx2g -XX:MaxPermSize=1024M -XX:Reserve dCodeCacheSize=512m
但理解是之后每个project都是这个配置。所以注释掉了。
在IDEA中的maven设置里面增加对JVM的配置:
-Xmx2g -XX:MaxPermSize=1024M -XX:Reserve dCodeCacheSize=512m
PermSize512也会内存溢出
解决办法:
所以:
在idea的maven的setting里面的importer和runner加上vm设置:
-Xmx2g -XX:MaxPermSize=2024M
5.编译成功:
[INFO] Reactor Summary:
[INFO]
[INFO] Spark Project Parent POM ........................... SUCCESS [ 16.952 s]
[INFO] Spark Project Launcher ............................. SUCCESS [ 32.077 s]
[INFO] Spark Project Networking ........................... SUCCESS [ 21.473 s]
[INFO] Spark Project Shuffle Streaming Service ............ SUCCESS [ 12.385 s]
[INFO] Spark Project Unsafe ............................... SUCCESS [ 27.438 s]
[INFO] Spark Project Core ................................. SUCCESS [10:00 min]
[INFO] Spark Project Bagel ................................ SUCCESS [ 48.101 s]
[INFO] Spark Project GraphX ............................... SUCCESS [05:42 min]
[INFO] Spark Project Streaming ............................ SUCCESS [14:03 min]
[INFO] Spark Project Catalyst ............................. SUCCESS [19:28 min]
[INFO] Spark Project SQL .................................. SUCCESS [06:14 min]
[INFO] Spark Project ML Library ........................... SUCCESS [37:14 min]
[INFO] Spark Project Tools ................................ SUCCESS [01:51 min]
[INFO] Spark Project Hive ................................. SUCCESS [16:43 min]
[INFO] Spark Project REPL ................................. SUCCESS [02:53 min]
[INFO] Spark Project Assembly ............................. SUCCESS [05:14 min]
[INFO] Spark Project External Twitter ..................... SUCCESS [ 51.479 s]
[INFO] Spark Project External Flume Sink .................. SUCCESS [ 44.560 s]
[INFO] Spark Project External Flume ....................... SUCCESS [01:24 min]
[INFO] Spark Project External Flume Assembly .............. SUCCESS [ 11.509 s]
[INFO] Spark Project External MQTT ........................ SUCCESS [01:44 min]
[INFO] Spark Project External MQTT Assembly ............... SUCCESS [ 26.644 s]
[INFO] Spark Project External ZeroMQ ...................... SUCCESS [ 44.365 s]
[INFO] Spark Project External Kafka ....................... SUCCESS [02:23 min]
[INFO] Spark Project Examples ............................. SUCCESS [10:10 min]
[INFO] Spark Project External Kafka Assembly .............. SUCCESS [ 33.812 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 02:21 h
[INFO] Finished at: 2016-05-24T18:12:34+08:00
[INFO] Final Memory: 401M/1517M
[INFO] ------------------------------------------------------------------------
Process finished with exit code 0
参考:
【1】 http://my.oschina.net/Rayn/blog/504542
【2】http://blog.csdn.net/lsshlsw/article/details/48371651
【3】http://blog.csdn.net/xubo245/article/details/51485323
【4】http://www.it610.com/article/393512.htm
附录:
(1)报错详细信息:
D:\1win7\java\jdk\bin\java "-Dmaven.home=D:\1win7\idea\IntelliJ IDEA Community Edition 15.0.4\plugins\maven\lib\maven3" "-Dclassworlds.conf=D:\1win7\idea\IntelliJ IDEA Community Edition 15.0.4\plugins\maven\lib\maven3\bin\m2.conf" -Didea.launcher.port=7534 "-Didea.launcher.bin.path=D:\1win7\idea\IntelliJ IDEA Community Edition 15.0.4\bin" -Dfile.encoding=UTF-8 -classpath "D:\1win7\idea\IntelliJ IDEA Community Edition 15.0.4\plugins\maven\lib\maven3\boot\plexus-classworlds-2.4.jar;D:\1win7\idea\IntelliJ IDEA Community Edition 15.0.4\lib\idea_rt.jar" com.intellij.rt.execution.application.AppMain org.codehaus.classworlds.Launcher -Didea.version=15.0.4 clean package -DskipTests -X
Apache Maven 3.0.5 (r01de14724cdef164cd33c7c8c2fe155faf9602da; 2013-02-19 21:51:28+0800)
Maven home: D:\1win7\idea\IntelliJ IDEA Community Edition 15.0.4\plugins\maven\lib\maven3
Java version: 1.7.0_25, vendor: Oracle Corporation
Java home: D:\1win7\java\jdk\jre
Default locale: zh_CN, platform encoding: UTF-8
OS name: "windows 7", version: "6.1", arch: "amd64", family: "windows"
[INFO] Error stacktraces are turned on.
[DEBUG] Reading global settings from D:\1win7\idea\IntelliJ IDEA Community Edition 15.0.4\plugins\maven\lib\maven3\conf\settings.xml
[DEBUG] Reading user settings from C:\Users\xubo\.m2\settings.xml
[DEBUG] Using local repository at C:\Users\xubo\.m2\repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10 for C:\Users\xubo\.m2\repository
[INFO] Scanning for projects...
[DEBUG] Extension realms for project org.apache.spark:spark-parent_2.10:pom:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging pom from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-core_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-bagel_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-graphx_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-mllib_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-tools_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-network-common_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-network-shuffle_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-streaming_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-catalyst_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-sql_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-hive_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-unsafe_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-assembly_2.10:pom:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging pom from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-streaming-twitter_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-streaming-flume_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-streaming-flume-sink_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-streaming-flume-assembly_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-streaming-mqtt_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-streaming-mqtt-assembly_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-streaming-zeromq_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-examples_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-repl_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-launcher_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-streaming-kafka_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project org.apache.spark:spark-streaming-kafka-assembly_2.10:jar:1.5.2: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] Spark Project Parent POM
[INFO] Spark Project Launcher
[INFO] Spark Project Networking
[INFO] Spark Project Shuffle Streaming Service
[INFO] Spark Project Unsafe
[INFO] Spark Project Core
[INFO] Spark Project Bagel
[INFO] Spark Project GraphX
[INFO] Spark Project Streaming
[INFO] Spark Project Catalyst
[INFO] Spark Project SQL
[INFO] Spark Project ML Library
[INFO] Spark Project Tools
[INFO] Spark Project Hive
[INFO] Spark Project REPL
[INFO] Spark Project Assembly
[INFO] Spark Project External Twitter
[INFO] Spark Project External Flume Sink
[INFO] Spark Project External Flume
[INFO] Spark Project External Flume Assembly
[INFO] Spark Project External MQTT
[INFO] Spark Project External MQTT Assembly
[INFO] Spark Project External ZeroMQ
[INFO] Spark Project External Kafka
[INFO] Spark Project Examples
[INFO] Spark Project External Kafka Assembly
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: org.apache.spark:spark-parent_2.10:pom:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-launcher_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-network-common_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-network-shuffle_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-unsafe_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-core_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-bagel_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-graphx_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-streaming_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-catalyst_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-sql_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-mllib_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-tools_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-hive_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-repl_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-assembly_2.10:pom:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-streaming-twitter_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-streaming-flume-sink_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-streaming-flume_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-streaming-flume-assembly_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-streaming-mqtt_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-streaming-mqtt-assembly_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-streaming-zeromq_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-streaming-kafka_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-examples_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.apache.spark:spark-streaming-kafka-assembly_2.10:jar:1.5.2
[DEBUG] Tasks: [clean, package]
[DEBUG] Style: Regular
[DEBUG] =======================================================================
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project Parent POM 1.5.2
[INFO] ------------------------------------------------------------------------
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] 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: org.apache.spark:spark-parent_2.10:1.5.2
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile, runtime, test]
[DEBUG] Repositories (dependencies): [central (https://repo1.maven.org/maven2, releases), apache-repo (https://repository.apache.org/content/repositories/releases, releases), jboss-repo (https://repository.jboss.org/nexus/content/repositories/releases, releases), mqtt-repo (https://repo.eclipse.org/content/repositories/paho-releases, releases), cloudera-repo (https://repository.cloudera.com/artifactory/cloudera-repos, releases), spark-hive-staging (https://oss.sonatype.org/content/repositories/orgspark-project-1113, releases+snapshots), mapr-repo (http://repository.mapr.com/maven/, releases), spring-releases (https://repo.spring.io/libs-release, disabled), twttr-repo (http://maven.twttr.com, releases), apache.snapshots (http://repository.apache.org/snapshots, snapshots)]
[DEBUG] Repositories (plugins) : [central (https://repo1.maven.org/maven2, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-clean-plugin:2.6.1:clean (default-clean)
[DEBUG] Style: Regular
[DEBUG] Configuration:
<configuration>
<directory default-value="${project.build.directory}"/>
<excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}excludeDefaultDirectories>
<failOnError default-value="true">${maven.clean.failOnError}failOnError>
<filesets>
<fileset>
<directory>workdirectory>
fileset>
<fileset>
<directory>checkpointdirectory>
fileset>
<fileset>
<directory>lib_manageddirectory>
fileset>
filesets>
<followSymLinks default-value="false">${clean.followSymLinks}followSymLinks>
<outputDirectory default-value="${project.build.outputDirectory}"/>
<reportDirectory default-value="${project.build.outputDirectory}"/>
<retryOnError default-value="true">${maven.clean.retryOnError}retryOnError>
<skip default-value="false">${clean.skip}skip>
<testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
<verbose>${clean.verbose}verbose>
configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-enforcer-plugin:1.4:enforce (enforce-versions)
[DEBUG] Style: Regular
[DEBUG] Configuration:
<configuration>
<fail default-value="true">${enforcer.fail}fail>
<failFast default-value="false">${enforcer.failFast}failFast>
<ignoreCache default-value="false">${enforcer.ignoreCache}ignoreCache>
<mojoExecution default-value="${mojoExecution}"/>
<project default-value="${project}"/>
<rules>
<requireMavenVersion>
<version>3.3.3version>
requireMavenVersion>
<requireJavaVersion>
<version>1.7version>
requireJavaVersion>
rules>
<session default-value="${session}"/>
<skip default-value="false">${enforcer.skip}skip>
configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: net.alchim31.maven:scala-maven-plugin:3.2.2:add-source (eclipse-add-source)
[DEBUG] Style: Regular
[DEBUG] Configuration:
<configuration>
<project>${project}project>
<sourceDir default-value="${project.build.sourceDirectory}/../scala"/>
<testSourceDir default-value="${project.build.testSourceDirectory}/../scala"/>
<useCanonicalPath default-value="true">${maven.scala.useCanonicalPath}useCanonicalPath>
configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-remote-resources-plugin:1.5:process (default)
[DEBUG] Style: Regular
[DEBUG] Configuration:
<configuration>
<appendedResourcesDirectory default-value="${basedir}/src/main/appended-resources"/>
<attachToMain default-value="true">${attachToMain}attachToMain>
<attachToTest default-value="true">${attachToTest}attachToTest>
<attached default-value="true"/>
<basedir default-value="${basedir}"/>
<encoding default-value="${project.build.sourceEncoding}">${encoding}encoding>
<excludeArtifactIds default-value="">${excludeArtifactIds}excludeArtifactIds>
<excludeGroupIds default-value="">${excludeGroupIds}excludeGroupIds>
<excludeScope default-value="">${excludeScope}excludeScope>
<excludeTransitive default-value="false">${excludeTransitive}excludeTransitive>
<includeArtifactIds default-value="">${includeArtifactIds}includeArtifactIds>
<includeGroupIds default-value="">${includeGroupIds}includeGroupIds>
<includeProjectProperties default-value="false"/>
<includeScope default-value="runtime">${includeScope}includeScope>
<localRepository default-value="${localRepository}"/>
<outputDirectory default-value="${project.build.directory}/maven-shared-archive-resources"/>
<remoteArtifactRepositories default-value="${project.remoteArtifactRepositories}"/>
<resourceBundles>
<resourceBundle>org.apache:apache-jar-resource-bundle:1.4resourceBundle>
resourceBundles>
<resources default-value="${project.resources}"/>
<runOnlyAtExecutionRoot default-value="false"/>
<skip default-value="false">${remoteresources.skip}skip>
<useDefaultFilterDelimiters default-value="true"/>
<mavenSession default-value="${session}"/>
<project default-value="${project}"/>
configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: net.alchim31.maven:scala-maven-plugin:3.2.2:compile (scala-compile-first)
[DEBUG] Style: Regular
[DEBUG] Configuration:
<configuration>
<addJavacArgs>${addJavacArgs}addJavacArgs>
<addScalacArgs>${addScalacArgs}addScalacArgs>
<addZincArgs>${addZincArgs}addZincArgs>
<analysisCacheFile default-value="${project.build.directory}/analysis/compile">${analysisCacheFile}analysisCacheFile>
<args>
<arg>-uncheckedarg>
<arg>-deprecationarg>
<arg>-featurearg>
args>
<checkMultipleScalaVersions default-value="true">${maven.scala.checkConsistency}checkMultipleScalaVersions>
<compileOrder default-value="mixed">${compileOrder}compileOrder>
<displayCmd default-value="false">${displayCmd}displayCmd>
<encoding default-value="UTF-8">${project.build.sourceEncoding}encoding>
<failOnMultipleScalaVersions default-value="false"/>
<forceUseArgFile default-value="false"/>
<fork default-value="true"/>
<javacArgs>
<javacArg>-sourcejavacArg>
<javacArg>1.7javacArg>
<javacArg>-targetjavacArg>
<javacArg>1.7javacArg>
<javacArg>-Xlint:all,-serial,-pathjavacArg>${javacArgs}javacArgs>
<javacGenerateDebugSymbols default-value="true">${javacGenerateDebugSymbols}javacGenerateDebugSymbols>
<jvmArgs>
<jvmArg>-Xms1024mjvmArg>
<jvmArg>-Xmx1024mjvmArg>
<jvmArg>-XX:PermSize=64mjvmArg>
<jvmArg>-XX:MaxPermSize=512mjvmArg>
<jvmArg>-XX:ReservedCodeCacheSize=512mjvmArg>
jvmArgs>
<localRepo>${localRepository}localRepo>
<localRepository>${localRepository}localRepository>
<notifyCompilation default-value="true">${notifyCompilation}notifyCompilation>
<outputDir>${project.build.outputDirectory}outputDir>
<pluginArtifacts default-value="${plugin.artifacts}"/>
<project>${project}project>
<reactorProjects default-value="${reactorProjects}"/>
<recompileMode default-value="all">incrementalrecompileMode>
<remoteRepos>${project.remoteArtifactRepositories}remoteRepos>
<scalaClassName default-value="scala.tools.nsc.Main">${maven.scala.className}scalaClassName>
<scalaCompatVersion>${scala.compat.version}scalaCompatVersion>
<scalaHome>${scala.home}scalaHome>
<scalaOrganization default-value="org.scala-lang">${scala.organization}scalaOrganization>
<scalaVersion>2.10.4scalaVersion>
<sendJavaToScalac default-value="true"/>
<session>${session}session>
<source>${maven.compiler.source}source>
<sourceDir default-value="${project.build.sourceDirectory}/../scala"/>
<target>${maven.compiler.target}target>
<useCanonicalPath default-value="true">${maven.scala.useCanonicalPath}useCanonicalPath>
<useZincServer default-value="false">trueuseZincServer>
<zincPort default-value="3030">${zincPort}zincPort>
configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-antrun-plugin:1.8:run (create-tmp-dir)
[DEBUG] Style: Regular
[DEBUG] Configuration:
<configuration>
<exportAntProperties default-value="false"/>
<failOnError default-value="true"/>
<localRepository>${localRepository}localRepository>
<pluginArtifacts>${plugin.artifacts}pluginArtifacts>
<project default-value="${project}"/>
<skip default-value="false">${maven.antrun.skip}skip>
<sourceRoot>${sourceRoot}sourceRoot>
<target>
<mkdir dir="D:\all\idea\spark-1.5.2FromGithub\target/tmp"/>
target>
<testSourceRoot>${testSourceRoot}testSourceRoot>
<versionsPropertyName default-value="maven.project.dependencies.versions"/>
configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: net.alchim31.maven:scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first)
[DEBUG] Style: Regular
[DEBUG] Configuration:
<configuration>
<addJavacArgs>${addJavacArgs}addJavacArgs>
<addScalacArgs>${addScalacArgs}addScalacArgs>
<addZincArgs>${addZincArgs}addZincArgs>
<args>
<arg>-uncheckedarg>
<arg>-deprecationarg>
<arg>-featurearg>
args>
<checkMultipleScalaVersions default-value="true">${maven.scala.checkConsistency}checkMultipleScalaVersions>
<compileOrder default-value="mixed">${compileOrder}compileOrder>
<displayCmd default-value="false">${displayCmd}displayCmd>
<encoding default-value="UTF-8">${project.build.sourceEncoding}encoding>
<failOnMultipleScalaVersions default-value="false"/>
<forceUseArgFile default-value="false"/>
<fork default-value="true"/>
<javacArgs>
<javacArg>-sourcejavacArg>
<javacArg>1.7javacArg>
<javacArg>-targetjavacArg>
<javacArg>1.7javacArg>
<javacArg>-Xlint:all,-serial,-pathjavacArg>${javacArgs}javacArgs>
<javacGenerateDebugSymbols default-value="true">${javacGenerateDebugSymbols}javacGenerateDebugSymbols>
<jvmArgs>
<jvmArg>-Xms1024mjvmArg>
<jvmArg>-Xmx1024mjvmArg>
<jvmArg>-XX:PermSize=64mjvmArg>
<jvmArg>-XX:MaxPermSize=512mjvmArg>
<jvmArg>-XX:ReservedCodeCacheSize=512mjvmArg>
jvmArgs>
<localRepo>${localRepository}localRepo>
<localRepository>${localRepository}localRepository>
<notifyCompilation default-value="true">${notifyCompilation}notifyCompilation>
<pluginArtifacts default-value="${plugin.artifacts}"/>
<project>${project}project>
<reactorProjects default-value="${reactorProjects}"/>
<recompileMode default-value="all">incrementalrecompileMode>
<remoteRepos>${project.remoteArtifactRepositories}remoteRepos>
<scalaClassName default-value="scala.tools.nsc.Main">${maven.scala.className}scalaClassName>
<scalaCompatVersion>${scala.compat.version}scalaCompatVersion>
<scalaHome>${scala.home}scalaHome>
<scalaOrganization default-value="org.scala-lang">${scala.organization}scalaOrganization>
<scalaVersion>2.10.4scalaVersion>
<sendJavaToScalac default-value="true"/>
<session>${session}session>
<skip>${maven.test.skip}skip>
<source>${maven.compiler.source}source>
<target>${maven.compiler.target}target>
<testAnalysisCacheFile default-value="${project.build.directory}/analysis/test-compile">${testAnalysisCacheFile}testAnalysisCacheFile>
<testOutputDir default-value="${project.build.testOutputDirectory}"/>
<testSourceDir default-value="${project.build.testSourceDirectory}/../scala"/>
<useCanonicalPath default-value="true">${maven.scala.useCanonicalPath}useCanonicalPath>
<useZincServer default-value="false">trueuseZincServer>
<zincPort default-value="3030">${zincPort}zincPort>
configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-dependency-plugin:2.10:build-classpath (default)
[DEBUG] Style: Regular
[DEBUG] Configuration:
<configuration>
<attach default-value="false"/>
<classifier default-value="">${classifier}classifier>
<cpFile>${mdep.cpFile}cpFile>
<excludeArtifactIds default-value="">${excludeArtifactIds}excludeArtifactIds>
<excludeClassifiers default-value="">${excludeClassifiers}excludeClassifiers>
<excludeGroupIds default-value="">${excludeGroupIds}excludeGroupIds>
<excludeScope default-value="">${excludeScope}excludeScope>
<excludeTransitive default-value="false">${excludeTransitive}excludeTransitive>
<excludeTypes default-value="">${excludeTypes}excludeTypes>
<fileSeparator default-value="">${mdep.fileSeparator}fileSeparator>
<includeArtifactIds default-value="">${includeArtifactIds}includeArtifactIds>
<includeClassifiers default-value="">${includeClassifiers}includeClassifiers>
<includeGroupIds default-value="">${includeGroupIds}includeGroupIds>
<includeScope default-value="">testincludeScope>
<includeTypes default-value="">${includeTypes}includeTypes>
<local default-value="${localRepository}"/>
<localRepoProperty default-value="">${mdep.localRepoProperty}localRepoProperty>
<markersDirectory default-value="${project.build.directory}/dependency-maven-plugin-markers">${markersDirectory}markersDirectory>
<outputAbsoluteArtifactFilename default-value="false">${outputAbsoluteArtifactFilename}outputAbsoluteArtifactFilename>
<outputFile>${mdep.outputFile}outputFile>
<outputFilterFile default-value="false">${mdep.outputFilterFile}outputFilterFile>
<outputProperty>test_classpathoutputProperty>
<overWriteIfNewer default-value="true">${overWriteIfNewer}overWriteIfNewer>
<overWriteReleases default-value="false">${overWriteReleases}overWriteReleases>
<overWriteSnapshots default-value="false">${overWriteSnapshots}overWriteSnapshots>
<pathSeparator default-value="">${mdep.pathSeparator}pathSeparator>
<prefix>${mdep.prefix}prefix>
<prependGroupId default-value="false">${mdep.prependGroupId}prependGroupId>
<project default-value="${project}"/>
<reactorProjects default-value="${reactorProjects}"/>
<regenerateFile default-value="false">${mdep.regenerateFile}regenerateFile>
<remoteRepos default-value="${project.remoteArtifactRepositories}"/>
<silent default-value="false">${silent}silent>
<skip default-value="false">${mdep.skip}skip>
<stripClassifier default-value="false">${mdep.stripClassifier}stripClassifier>
<stripVersion default-value="false">${mdep.stripVersion}stripVersion>
<type default-value="">${type}type>
<useBaseVersion default-value="true">${mdep.useBaseVersion}useBaseVersion>
configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.scalatest:scalatest-maven-plugin:1.0:test (test)
[DEBUG] Style: Regular
[DEBUG] Configuration:
<configuration>
<argLine>-ea -Xmx3g -XX:MaxPermSize=512m -XX:ReservedCodeCacheSize=512margLine>
<config>${config}config>
<debugArgLine>${debugArgLine}debugArgLine>
<debugForkedProcess default-value="false">${debugForkedProcess}debugForkedProcess>
<debuggerPort default-value="5005">${debuggerPort}debuggerPort>
<environmentVariables>
<SPARK_DIST_CLASSPATH>${test_classpath}SPARK_DIST_CLASSPATH>
<JAVA_HOME>D:\1win7\java\jdkJAVA_HOME>
environmentVariables>
<filereports>SparkTestSuite.txtfilereports>
<forkMode default-value="once">${forkMode}forkMode>
<forkedProcessTimeoutInSeconds default-value="0">${timeout}forkedProcessTimeoutInSeconds>
<htmlreporters>${htmlreporters}htmlreporters>
<jUnitClasses>${junitClasses}jUnitClasses>
<junitxml>.junitxml>
<logForkedProcessCommand default-value="false">${logForkedProcessCommand}logForkedProcessCommand>
<membersOnlySuites>${membersOnlySuites}membersOnlySuites>
<memoryFiles>${memoryFiles}memoryFiles>
<outputDirectory>${project.build.outputDirectory}outputDirectory>
<parallel>${parallel}parallel>
<project default-value="${project}"/>
<reporters>${reporters}reporters>
<reportsDirectory>D:\all\idea\spark-1.5.2FromGithub\target/surefire-reportsreportsDirectory>
<runpath>${runpath}runpath>
<skipTests>${skipTests}skipTests>
<stderr>${stderr}stderr>
<stdout>${stdout}stdout>
<suffixes>${suffixes}suffixes>
<suites>${suites}suites>
<systemProperties>
<derby.system.durability>testderby.system.durability>
<java.awt.headless>truejava.awt.headless>
<java.io.tmpdir>D:\all\idea\spark-1.5.2FromGithub\target/tmpjava.io.tmpdir>
<spark.test.home>${session.executionRootDirectory}spark.test.home>
<spark.testing>1spark.testing>
<spark.ui.enabled>falsespark.ui.enabled>
<spark.ui.showConsoleProgress>falsespark.ui.showConsoleProgress>
<spark.driver.allowMultipleContexts>truespark.driver.allowMultipleContexts>
<spark.unsafe.exceptionOnMemoryLeak>truespark.unsafe.exceptionOnMemoryLeak>
<test.src.tables>__not_used__test.src.tables>
systemProperties>
<tagsToExclude>${tagsToExclude}tagsToExclude>
<tagsToInclude>${tagsToInclude}tagsToInclude>
<testFailureIgnore>${maven.test.failure.ignore}testFailureIgnore>
<testNGConfigFiles>${testNGXMLFiles}testNGConfigFiles>
<testOutputDirectory>${project.build.testOutputDirectory}testOutputDirectory>
<tests>${tests}tests>
<testsFiles>${testsFiles}testsFiles>
<wildcardSuites>${wildcardSuites}wildcardSuites>
configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-jar-plugin:2.6:test-jar (prepare-test-jar)
[DEBUG] Style: Regular
[DEBUG] Configuration:
<configuration>
<archive>
<manifest>
<addDefaultSpecificationEntries>trueaddDefaultSpecificationEntries>
<addDefaultImplementationEntries>trueaddDefaultImplementationEntries>
manifest>
archive>
<defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
<excludes>
<exclude>log4j.propertiesexclude>
excludes>
<finalName default-value="${project.build.finalName}">${jar.finalName}finalName>
<forceCreation default-value="false">${jar.forceCreation}forceCreation>
<outputDirectory default-value="${project.build.directory}"/>
<project default-value="${project}"/>
<session default-value="${session}"/>
<skip>${maven.test.skip}skip>
<skipIfEmpty default-value="false">${jar.skipIfEmpty}skipIfEmpty>
<testClassesDirectory default-value="${project.build.testOutputDirectory}"/>
<useDefaultManifestFile default-value="false">${jar.useDefaultManifestFile}useDefaultManifestFile>
configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-site-plugin:3.3:attach-descriptor (attach-descriptor)
[DEBUG] Style: Regular
[DEBUG] Configuration:
<configuration>
<basedir>${basedir}basedir>
<inputEncoding default-value="${project.build.sourceEncoding}">${encoding}inputEncoding>
<localRepository default-value="${localRepository}"/>
<locales>${locales}locales>
<outputEncoding default-value="${project.reporting.outputEncoding}">${outputEncoding}outputEncoding>
<pomPackagingOnly default-value="true"/>
<reactorProjects default-value="${reactorProjects}"/>
<siteDirectory default-value="${basedir}/src/site"/>
<project default-value="${project}"/>
configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-shade-plugin:2.4.1:shade (default)
[DEBUG] Style: Regular
[DEBUG] Configuration:
<configuration>
<artifactSet>
<includes>
<include>org.spark-project.spark:unusedinclude>
<include>org.eclipse.jetty:jetty-ioinclude>
<include>org.eclipse.jetty:jetty-httpinclude>
<include>org.eclipse.jetty:jetty-continuationinclude>
<include>org.eclipse.jetty:jetty-servletinclude>
<include>org.eclipse.jetty:jetty-plusinclude>
<include>org.eclipse.jetty:jetty-securityinclude>
<include>org.eclipse.jetty:jetty-utilinclude>
<include>org.eclipse.jetty:jetty-serverinclude>
<include>com.google.guava:guavainclude>
includes>
artifactSet>
<createDependencyReducedPom default-value="true"/>
<dependencyReducedPomLocation default-value="${basedir}/dependency-reduced-pom.xml"/>
<generateUniqueDependencyReducedPom default-value="false"/>
<localRepository default-value="${localRepository}"/>
<outputDirectory default-value="${project.build.directory}"/>
<project default-value="${project}"/>
<relocations>
<relocation>
<pattern>org.eclipse.jettypattern>
<shadedPattern>org.spark-project.jettyshadedPattern>
<includes>
<include>org.eclipse.jetty.**include>
includes>
relocation>
<relocation>
<pattern>com.google.commonpattern>
<shadedPattern>org.spark-project.guavashadedPattern>
<excludes>
<exclude>com/google/common/base/Absent*exclude>
<exclude>com/google/common/base/Functionexclude>
<exclude>com/google/common/base/Optional*exclude>
<exclude>com/google/common/base/Present*exclude>
<exclude>com/google/common/base/Supplierexclude>
excludes>
relocation>
relocations>
<remoteArtifactRepositories default-value="${project.remoteArtifactRepositories}"/>
<session default-value="${session}"/>
<shadeSourcesContent default-value="false">${shadeSourcesContent}shadeSourcesContent>
<shadeTestJar default-value="false"/>
<shadedArtifactAttached>falseshadedArtifactAttached>
<shadedArtifactId default-value="${project.artifactId}"/>
<shadedClassifierName default-value="shaded"/>
<useBaseVersion default-value="false"/>
configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-source-plugin:2.4:jar-no-fork (create-source-jar)
[DEBUG] Style: Regular
[DEBUG] Configuration:
<configuration>
<attach default-value="true">trueattach>
<classifier default-value="sources">${maven.source.classifier}classifier>
<defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
<excludeResources default-value="false">${source.excludeResources}excludeResources>
<finalName default-value="${project.build.finalName}"/>
<forceCreation default-value="false">${source.forceCreation}forceCreation>
<includePom default-value="false">${source.includePom}includePom>
<outputDirectory default-value="${project.build.directory}"/>
<project default-value="${project}"/>
<reactorProjects default-value="${reactorProjects}"/>
<session default-value="${session}"/>
<skipSource default-value="false">${source.skip}skipSource>
<useDefaultExcludes default-value="true"/>
<useDefaultManifestFile default-value="false"/>
configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-source-plugin:2.4:test-jar-no-fork (create-source-jar)
[DEBUG] Style: Regular
[DEBUG] Configuration:
<configuration>
<attach default-value="true">trueattach>
<classifier default-value="test-sources">${maven.source.test.classifier}classifier>
<defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
<excludeResources default-value="false">${source.excludeResources}excludeResources>
<finalName default-value="${project.build.finalName}"/>
<forceCreation default-value="false">${source.forceCreation}forceCreation>
<includePom default-value="false">${source.includePom}includePom>
<outputDirectory default-value="${project.build.directory}"/>
<project default-value="${project}"/>
<reactorProjects default-value="${reactorProjects}"/>
<session default-value="${session}"/>
<skipSource default-value="false">${source.skip}skipSource>
<useDefaultExcludes default-value="true"/>
<useDefaultManifestFile default-value="false"/>
configuration>
[DEBUG] =======================================================================
[DEBUG] org.apache.spark:spark-parent_2.10:pom:1.5.2
[DEBUG] org.spark-project.spark:unused:jar:1.0.0:compile
[DEBUG] org.scalatest:scalatest_2.10:jar:2.2.1:test
[DEBUG] org.scala-lang:scala-library:jar:2.10.4:test
[DEBUG] org.scala-lang:scala-reflect:jar:2.10.4:test
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-parent_2.10 ---
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG] Imported: org.apache.maven.wagon.events < plexus.core
[DEBUG] Imported: org.sonatype.aether.transfer < plexus.core
[DEBUG] Imported: org.apache.maven.exception < plexus.core
[DEBUG] Imported: org.sonatype.aether.metadata < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[DEBUG] Imported: org.sonatype.aether.collection < plexus.core
[DEBUG] Imported: org.sonatype.aether.version < plexus.core
[DEBUG] Imported: org.apache.maven.monitor < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core
[DEBUG] Imported: org.apache.maven.repository < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core
[DEBUG] Imported: org.codehaus.plexus.logging < plexus.core
[DEBUG] Imported: org.apache.maven.profiles < plexus.core
[DEBUG] Imported: org.sonatype.aether.repository < plexus.core
[DEBUG] Imported: org.apache.maven.classrealm < plexus.core
[DEBUG] Imported: org.apache.maven.execution < plexus.core
[DEBUG] Imported: org.sonatype.aether.artifact < plexus.core
[DEBUG] Imported: org.sonatype.aether.spi < plexus.core
[DEBUG] Imported: org.apache.maven.reporting < plexus.core
[DEBUG] Imported: org.apache.maven.usability < plexus.core
[DEBUG] Imported: org.codehaus.plexus.container < plexus.core
[DEBUG] Imported: org.codehaus.plexus.component < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core
[DEBUG] Imported: org.apache.maven.lifecycle < plexus.core
[DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core
[DEBUG] Imported: org.sonatype.aether.graph < plexus.core
[DEBUG] Imported: org.sonatype.aether.* < plexus.core
[DEBUG] Imported: org.apache.maven.settings < plexus.core
[DEBUG] Imported: org.codehaus.classworlds < plexus.core
[DEBUG] Imported: org.sonatype.aether.impl < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.* < plexus.core
[DEBUG] Imported: org.apache.maven.toolchain < plexus.core
[DEBUG] Imported: org.sonatype.aether.deployment < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
[DEBUG] Imported: org.apache.maven.configuration < plexus.core
[DEBUG] Imported: org.apache.maven.cli < plexus.core
[DEBUG] Imported: org.sonatype.aether.installation < plexus.core
[DEBUG] Imported: org.codehaus.plexus.context < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core
[DEBUG] Imported: org.apache.maven.project < plexus.core
[DEBUG] Imported: org.apache.maven.rtinfo < plexus.core
[DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core
[DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core
[DEBUG] Imported: org.apache.maven.artifact < plexus.core
[DEBUG] Imported: org.apache.maven.model < plexus.core
[DEBUG] Imported: org.apache.maven.* < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core
[DEBUG] Imported: org.sonatype.aether.resolution < plexus.core
[DEBUG] Imported: org.apache.maven.plugin < plexus.core
[DEBUG] Imported: org.codehaus.plexus.* < plexus.core
[DEBUG] Imported: org.codehaus.plexus.personality < plexus.core
[DEBUG] Populating class realm maven.api
[DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:2.6.1:
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile
[DEBUG] org.apache.maven.shared:maven-shared-utils:jar:0.7:compile
[DEBUG] com.google.code.findbugs:jsr305:jar:2.0.1:compile
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.1:runtime
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.6.1
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.6.1
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.6.1
[DEBUG] Included: org.apache.maven.plugins:maven-clean-plugin:jar:2.6.1
[DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:0.7
[DEBUG] Included: com.google.code.findbugs:jsr305:jar:2.0.1
[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.2.1
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.6.1:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.6.1, parent: sun.misc.Launcher$AppClassLoader@3bba1894]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.6.1:clean' with basic configurator -->
[DEBUG] (f) directory = D:\all\idea\spark-1.5.2FromGithub\target
[DEBUG] (f) excludeDefaultDirectories = false
[DEBUG] (f) failOnError = true
[DEBUG] (f) directory = D:\all\idea\spark-1.5.2FromGithub\work
[DEBUG] (f) directory = D:\all\idea\spark-1.5.2FromGithub\checkpoint
[DEBUG] (f) directory = D:\all\idea\spark-1.5.2FromGithub\lib_managed
[DEBUG] (f) filesets = [file set: D:\all\idea\spark-1.5.2FromGithub\work (included: [], excluded: []), file set: D:\all\idea\spark-1.5.2FromGithub\checkpoint (included: [], excluded: []), file set: D:\all\idea\spark-1.5.2FromGithub\lib_managed (included: [], excluded: [])]
[DEBUG] (f) followSymLinks = false
[DEBUG] (f) outputDirectory = D:\all\idea\spark-1.5.2FromGithub\target\classes
[DEBUG] (f) reportDirectory = D:\all\idea\spark-1.5.2FromGithub\target\classes
[DEBUG] (f) retryOnError = true
[DEBUG] (f) skip = false
[DEBUG] (f) testOutputDirectory = D:\all\idea\spark-1.5.2FromGithub\target\test-classes
[DEBUG] -- end configuration --
[DEBUG] Skipping non-existing directory D:\all\idea\spark-1.5.2FromGithub\target
[DEBUG] Skipping non-existing directory D:\all\idea\spark-1.5.2FromGithub\target\classes
[DEBUG] Skipping non-existing directory D:\all\idea\spark-1.5.2FromGithub\target\test-classes
[DEBUG] Skipping non-existing directory D:\all\idea\spark-1.5.2FromGithub\target\classes
[DEBUG] Skipping non-existing directory D:\all\idea\spark-1.5.2FromGithub\work
[DEBUG] Skipping non-existing directory D:\all\idea\spark-1.5.2FromGithub\checkpoint
[DEBUG] Skipping non-existing directory D:\all\idea\spark-1.5.2FromGithub\lib_managed
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-parent_2.10 ---
[DEBUG] org.apache.maven.plugins:maven-enforcer-plugin:jar:1.4:
[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.20:compile
[DEBUG] commons-lang:commons-lang:jar:2.3:compile
[DEBUG] org.apache.maven.enforcer:enforcer-api:jar:1.4:compile
[DEBUG] org.apache.maven.enforcer:enforcer-rules:jar:1.4: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 (version managed from 3.8.2)
[DEBUG] org.hamcrest:hamcrest-core:jar:1.3:compile
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4
[DEBUG] Included: org.apache.maven.plugins:maven-enforcer-plugin:jar:1.4
[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:slf4j-api: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.20
[DEBUG] Included: commons-lang:commons-lang:jar:2.3
[DEBUG] Included: org.apache.maven.enforcer:enforcer-api:jar:1.4
[DEBUG] Included: org.apache.maven.enforcer:enforcer-rules:jar:1.4
[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] Excluded: org.apache.maven:maven-artifact:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.2.1
[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
[DEBUG] Excluded: org.apache.maven:maven-core:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.2.1
[DEBUG] Excluded: classworlds:classworlds:jar:1.1
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-enforcer-plugin:1.4:enforce from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4, parent: sun.misc.Launcher$AppClassLoader@3bba1894]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:1.4:enforce' with basic configurator -->
[DEBUG] (s) fail = true
[DEBUG] (s) failFast = false
[DEBUG] (f) ignoreCache = false
[DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-enforcer-plugin:1.4:enforce {execution: enforce-versions}
[DEBUG] (s) project = MavenProject: org.apache.spark:spark-parent_2.10:1.5.2 @ D:\all\idea\spark-1.5.2FromGithub\pom.xml
[DEBUG] (s) version = 3.3.3
[DEBUG] (s) version = 1.7
[DEBUG] (s) rules = [org.apache.maven.plugins.enforcer.RequireMavenVersion@61f6eca2, org.apache.maven.plugins.enforcer.RequireJavaVersion@1a29b1ed]
[DEBUG] (s) session = org.apache.maven.execution.MavenSession@231f321c
[DEBUG] (s) 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.0.5
[DEBUG] Adding failure due to exception
org.apache.maven.enforcer.rule.api.EnforcerRuleException: Detected Maven Version: 3.0.5 is not in the allowed range 3.3.3.
at org.apache.maven.plugins.enforcer.AbstractVersionEnforcer.enforceVersion(AbstractVersionEnforcer.java:106)
at org.apache.maven.plugins.enforcer.RequireMavenVersion.execute(RequireMavenVersion.java:51)
at org.apache.maven.plugins.enforcer.EnforceMojo.execute(EnforceMojo.java:150)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
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:84)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
at org.codehaus.classworlds.Launcher.main(Launcher.java:47)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:144)
[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_25
[DEBUG] Normalized Java String: 1.7.0-25
[DEBUG] Parsed Version: Major: 1 Minor: 7 Incremental: 0 Build: 25 Qualifier: null
[DEBUG] Detected JDK Version: 1.7.0-25 is allowed in the range 1.7.
[WARNING] Rule 0: org.apache.maven.plugins.enforcer.RequireMavenVersion failed with message:
Detected Maven Version: 3.0.5 is not in the allowed range 3.3.3.
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] Spark Project Parent POM .......................... FAILURE [1.838s]
[INFO] Spark Project Launcher ............................ SKIPPED
[INFO] Spark Project Networking .......................... SKIPPED
[INFO] Spark Project Shuffle Streaming Service ........... SKIPPED
[INFO] Spark Project Unsafe .............................. SKIPPED
[INFO] Spark Project Core ................................ SKIPPED
[INFO] Spark Project Bagel ............................... SKIPPED
[INFO] Spark Project GraphX .............................. SKIPPED
[INFO] Spark Project Streaming ........................... SKIPPED
[INFO] Spark Project Catalyst ............................ SKIPPED
[INFO] Spark Project SQL ................................. SKIPPED
[INFO] Spark Project ML Library .......................... SKIPPED
[INFO] Spark Project Tools ............................... SKIPPED
[INFO] Spark Project Hive ................................ SKIPPED
[INFO] Spark Project REPL ................................ SKIPPED
[INFO] Spark Project Assembly ............................ SKIPPED
[INFO] Spark Project External Twitter .................... SKIPPED
[INFO] Spark Project External Flume Sink ................. SKIPPED
[INFO] Spark Project External Flume ...................... SKIPPED
[INFO] Spark Project External Flume Assembly ............. SKIPPED
[INFO] Spark Project External MQTT ....................... SKIPPED
[INFO] Spark Project External MQTT Assembly .............. SKIPPED
[INFO] Spark Project External ZeroMQ ..................... SKIPPED
[INFO] Spark Project External Kafka ...................... SKIPPED
[INFO] Spark Project Examples ............................ SKIPPED
[INFO] Spark Project External Kafka Assembly ............. SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.100s
[INFO] Finished at: Tue May 24 11:00:17 CST 2016
[INFO] Final Memory: 19M/166M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-enforcer-plugin:1.4:enforce (enforce-versions) on project spark-parent_2.10: Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed. -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-enforcer-plugin:1.4:enforce (enforce-versions) on project spark-parent_2.10: Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:217)
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:84)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
at org.codehaus.classworlds.Launcher.main(Launcher.java:47)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:144)
Caused by: org.apache.maven.plugin.MojoExecutionException: Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.
at org.apache.maven.plugins.enforcer.EnforceMojo.execute(EnforceMojo.java:194)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
... 25 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/MojoExecutionException
Process finished with exit code 1
(2)编译成功记录:
D:\1win7\java\jdk\bin\java -Dmaven.multiModuleProjectDirectory=D:\all\idea\spark-1.5.2FromGithub -Xmx2g -XX:MaxPermSize=2024M -Dmaven.home=D:\1win7\java\apache-maven-3.3.9-bin\apache-maven-3.3.9 -Dclassworlds.conf=D:\1win7\java\apache-maven-3.3.9-bin\apache-maven-3.3.9\bin\m2.conf -Didea.launcher.port=7532 "-Didea.launcher.bin.path=D:\1win7\idea\IntelliJ IDEA Community Edition 15.0.4\bin" -Dfile.encoding=UTF-8 -classpath "D:\1win7\java\apache-maven-3.3.9-bin\apache-maven-3.3.9\boot\plexus-classworlds-2.5.2.jar;D:\1win7\idea\IntelliJ IDEA Community Edition 15.0.4\lib\idea_rt.jar" com.intellij.rt.execution.application.AppMain org.codehaus.classworlds.Launcher -Didea.version=15.0.4 clean package -DskipTests
[WARNING]
[WARNING] Some problems were encountered while building the effective settings
[WARNING] Unrecognised tag: 'profile' (position: START_TAG seen ... variables for plugins in the POM.\n |\n |-->\n \t\t\t... @184:16) @ D:\1win7\java\apache-maven-3.3.9-bin\apache-maven-3.3.9\conf\settings.xml, line 184, column 16
[WARNING]
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] Spark Project Parent POM
[INFO] Spark Project Launcher
[INFO] Spark Project Networking
[INFO] Spark Project Shuffle Streaming Service
[INFO] Spark Project Unsafe
[INFO] Spark Project Core
[INFO] Spark Project Bagel
[INFO] Spark Project GraphX
[INFO] Spark Project Streaming
[INFO] Spark Project Catalyst
[INFO] Spark Project SQL
[INFO] Spark Project ML Library
[INFO] Spark Project Tools
[INFO] Spark Project Hive
[INFO] Spark Project REPL
[INFO] Spark Project Assembly
[INFO] Spark Project External Twitter
[INFO] Spark Project External Flume Sink
[INFO] Spark Project External Flume
[INFO] Spark Project External Flume Assembly
[INFO] Spark Project External MQTT
[INFO] Spark Project External MQTT Assembly
[INFO] Spark Project External ZeroMQ
[INFO] Spark Project External Kafka
[INFO] Spark Project Examples
[INFO] Spark Project External Kafka Assembly
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project Parent POM 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-parent_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\target
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\lib_managed (includes = [], excludes = [])
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-parent_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-parent_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-parent_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-parent_2.10 ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-parent_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-parent_2.10 ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-parent_2.10 ---
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-parent_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-parent_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\target\spark-parent_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-parent_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-parent_2.10 ---
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-parent_2.10 ---
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-parent_2.10 ---
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project Launcher 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-launcher_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\launcher\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-launcher_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-launcher_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\launcher\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\launcher\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-launcher_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-launcher_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\launcher\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-launcher_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 8 Java sources to D:\all\idea\spark-1.5.2FromGithub\launcher\target\scala-2.10\classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-launcher_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 8 source files to D:\all\idea\spark-1.5.2FromGithub\launcher\target\scala-2.10\classes
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-launcher_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\launcher\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-launcher_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-launcher_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 4 Java sources to D:\all\idea\spark-1.5.2FromGithub\launcher\target\scala-2.10\test-classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-launcher_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 4 source files to D:\all\idea\spark-1.5.2FromGithub\launcher\target\scala-2.10\test-classes
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-launcher_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-launcher_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-launcher_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-launcher_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\launcher\target\spark-launcher_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-launcher_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\launcher\target\spark-launcher_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-launcher_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-launcher_2.10 ---
[INFO] Excluding commons-io:commons-io:jar:2.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.3 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:2.5.0 from the shaded jar.
[INFO] Excluding org.apache.zookeeper:zookeeper:jar:3.4.5 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org.glassfish.external:management-api:jar:3.0.0-b012 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish:javax.servlet:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-server:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-core:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-json:jar:1.9 from the shaded jar.
[INFO] Excluding org.codehaus.jettison:jettison:jar:1.1 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 from the shaded jar.
[INFO] Excluding javax.xml.bind:jaxb-api:jar:2.2.2 from the shaded jar.
[INFO] Excluding javax.activation:activation:jar:1.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-xc:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.sun.jersey.contribs:jersey-guice:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\launcher\target\spark-launcher_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\launcher\target\spark-launcher_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\launcher\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\launcher\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\launcher\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-launcher_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\launcher\target\spark-launcher_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-launcher_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\launcher\target\spark-launcher_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project Networking 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-network-common_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\network\common\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-network-common_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-network-common_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\network\common\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\network\common\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-network-common_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-network-common_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\network\common\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-network-common_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 56 Java sources to D:\all\idea\spark-1.5.2FromGithub\network\common\target\scala-2.10\classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-network-common_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 56 source files to D:\all\idea\spark-1.5.2FromGithub\network\common\target\scala-2.10\classes
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-network-common_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\network\common\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-network-common_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-network-common_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 10 Java sources to D:\all\idea\spark-1.5.2FromGithub\network\common\target\scala-2.10\test-classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-network-common_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 10 source files to D:\all\idea\spark-1.5.2FromGithub\network\common\target\scala-2.10\test-classes
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-network-common_2.10 ---
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (test-jar-on-test-compile) @ spark-network-common_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\network\common\target\spark-network-common_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-network-common_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-network-common_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-network-common_2.10 ---
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-network-common_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\network\common\target\spark-network-common_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-network-common_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-network-common_2.10 ---
[INFO] Excluding io.netty:netty-all:jar:4.0.29.Final from the shaded jar.
[INFO] Including com.google.guava:guava:jar:14.0.1 in the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\network\common\target\spark-network-common_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\network\common\target\spark-network-common_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\network\common\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\network\common\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\network\common\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-network-common_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\network\common\target\spark-network-common_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-network-common_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\network\common\target\spark-network-common_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project Shuffle Streaming Service 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-network-shuffle_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\network\shuffle\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-network-shuffle_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-network-shuffle_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\network\shuffle\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\network\shuffle\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-network-shuffle_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-network-shuffle_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\network\shuffle\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-network-shuffle_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 16 Java sources to D:\all\idea\spark-1.5.2FromGithub\network\shuffle\target\scala-2.10\classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-network-shuffle_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 16 source files to D:\all\idea\spark-1.5.2FromGithub\network\shuffle\target\scala-2.10\classes
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-network-shuffle_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\network\shuffle\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-network-shuffle_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\network\shuffle\src\test\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-network-shuffle_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 10 Java sources to D:\all\idea\spark-1.5.2FromGithub\network\shuffle\target\scala-2.10\test-classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-network-shuffle_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 10 source files to D:\all\idea\spark-1.5.2FromGithub\network\shuffle\target\scala-2.10\test-classes
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-network-shuffle_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-network-shuffle_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-network-shuffle_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-network-shuffle_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\network\shuffle\target\spark-network-shuffle_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-network-shuffle_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\network\shuffle\target\spark-network-shuffle_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-network-shuffle_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-network-shuffle_2.10 ---
[INFO] Excluding org.apache.spark:spark-network-common_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding io.netty:netty-all:jar:4.0.29.Final from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\network\shuffle\target\spark-network-shuffle_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\network\shuffle\target\spark-network-shuffle_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\network\shuffle\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\network\shuffle\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\network\shuffle\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-network-shuffle_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\network\shuffle\target\spark-network-shuffle_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-network-shuffle_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\network\shuffle\target\spark-network-shuffle_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project Unsafe 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-unsafe_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\unsafe\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-unsafe_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-unsafe_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\unsafe\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\unsafe\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-unsafe_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-unsafe_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\unsafe\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-unsafe_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 17 Java sources to D:\all\idea\spark-1.5.2FromGithub\unsafe\target\scala-2.10\classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-unsafe_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 17 source files to D:\all\idea\spark-1.5.2FromGithub\unsafe\target\scala-2.10\classes
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-unsafe_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\unsafe\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-unsafe_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\unsafe\src\test\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-unsafe_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 1 Scala source and 6 Java sources to D:\all\idea\spark-1.5.2FromGithub\unsafe\target\scala-2.10\test-classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-unsafe_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 6 source files to D:\all\idea\spark-1.5.2FromGithub\unsafe\target\scala-2.10\test-classes
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-unsafe_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-unsafe_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-unsafe_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-unsafe_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\unsafe\target\spark-unsafe_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-unsafe_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\unsafe\target\spark-unsafe_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-unsafe_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-unsafe_2.10 ---
[INFO] Excluding com.google.code.findbugs:jsr305:jar:1.3.9 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\unsafe\target\spark-unsafe_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\unsafe\target\spark-unsafe_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\unsafe\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\unsafe\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\unsafe\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-unsafe_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\unsafe\target\spark-unsafe_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-unsafe_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\unsafe\target\spark-unsafe_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project Core 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-core_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\core\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-core_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-core_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\core\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-core_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-core_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 21 resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-core_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 481 Scala sources and 63 Java sources to D:\all\idea\spark-1.5.2FromGithub\core\target\scala-2.10\classes...
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\SparkContext.scala:866: constructor Job in class Job is deprecated: see corresponding Javadoc for more information.
[WARNING] val job = new NewHadoopJob(hadoopConfiguration)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\SparkContext.scala:918: constructor Job in class Job is deprecated: see corresponding Javadoc for more information.
[WARNING] val job = new NewHadoopJob(hadoopConfiguration)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\SparkContext.scala:1100: constructor Job in class Job is deprecated: see corresponding Javadoc for more information.
[WARNING] val job = new NewHadoopJob(conf)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\SparkContext.scala:1367: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] val isDir = fs.getFileStatus(hadoopPath).isDir
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\SparkHadoopWriter.scala:153: constructor TaskID in class TaskID is deprecated: see corresponding Javadoc for more information.
[WARNING] new TaskAttemptID(new TaskID(jID.value, true, splitID), attemptID))
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\SparkHadoopWriter.scala:174: method makeQualified in class Path is deprecated: see corresponding Javadoc for more information.
[WARNING] outputPath.makeQualified(fs)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\deploy\SparkHadoopUtil.scala:227: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] val (directories, leaves) = fs.listStatus(status.getPath).partition(_.isDir)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\deploy\SparkHadoopUtil.scala:231: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] if (baseStatus.isDir) recurse(baseStatus) else Seq(baseStatus)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\deploy\SparkHadoopUtil.scala:240: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] val (directories, files) = fs.listStatus(status.getPath).partition(_.isDir)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\deploy\SparkHadoopUtil.scala:245: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] assert(baseStatus.isDir)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\deploy\history\FsHistoryProvider.scala:121: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] if (!fs.getFileStatus(path).isDir) {
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\deploy\history\FsHistoryProvider.scala:524: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] private def isLegacyLogDirectory(entry: FileStatus): Boolean = entry.isDir()
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\input\PortableDataStream.scala:49: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] if (file.isDir) 0L else file.getLen
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\input\WholeTextFileInputFormat.scala:57: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] if (file.isDir) 0L else file.getLen
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\mapred\SparkHadoopMapRedUtil.scala:64: constructor TaskAttemptID in class TaskAttemptID is deprecated: see corresponding Javadoc for more information.
[WARNING] new TaskAttemptID(jtIdentifier, jobId, isMap, taskId, attemptId)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\rdd\HadoopRDD.scala:361: constructor TaskID in class TaskID is deprecated: see corresponding Javadoc for more information.
[WARNING] val taId = new TaskAttemptID(new TaskID(jobID, true, splitId), attemptId)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\rdd\PairRDDFunctions.scala:933: constructor Job in class Job is deprecated: see corresponding Javadoc for more information.
[WARNING] val job = new NewAPIHadoopJob(hadoopConf)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\rdd\PairRDDFunctions.scala:1001: constructor Job in class Job is deprecated: see corresponding Javadoc for more information.
[WARNING] val job = new NewAPIHadoopJob(hadoopConf)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\rdd\ReliableCheckpointRDD.scala:128: method getDefaultReplication in class FileSystem is deprecated: see corresponding Javadoc for more information.
[WARNING] fs.create(tempOutputPath, false, bufferSize, fs.getDefaultReplication, blockSize)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\rdd\SqlNewHadoopRDD.scala:79: constructor Job in class Job is deprecated: see corresponding Javadoc for more information.
[WARNING] val newJob = new Job(conf)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\scheduler\EventLoggingListener.scala:100: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] if (!fileSystem.getFileStatus(new Path(logBaseDir)).isDir) {
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\scala\org\apache\spark\scheduler\InputFormatInfo.scala:106: constructor Job in class Job is deprecated: see corresponding Javadoc for more information.
[WARNING] val job = new Job(conf)
[WARNING] ^
[WARNING] 22 warnings found
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\java\org\apache\spark\util\collection\unsafe\sort\UnsafeExternalSorter.java:147: ����: [deprecation] TaskContext�е�addOnCompleteCallback(Function0)�ѹ�ʱ
[WARNING] taskContext.addOnCompleteCallback(new AbstractFunction0() {
[WARNING] ^
[WARNING] 1 ������
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-core_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 63 source files to D:\all\idea\spark-1.5.2FromGithub\core\target\scala-2.10\classes
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\main\java\org\apache\spark\util\collection\unsafe\sort\UnsafeExternalSorter.java:[147,15] ����: [deprecation] TaskContext�е�addOnCompleteCallback(Function0)�ѹ�ʱ
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-core_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\core\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-core_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 59 resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-core_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 184 Scala sources and 14 Java sources to D:\all\idea\spark-1.5.2FromGithub\core\target\scala-2.10\test-classes...
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\scala\org\apache\spark\FileSuite.scala:505: constructor Job in class Job is deprecated: see corresponding Javadoc for more information.
[WARNING] val job = new Job(sc.hadoopConfiguration)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\scala\org\apache\spark\scheduler\EventLoggingListenerSuite.scala:70: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] assert(!logStatus.isDir)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\scala\org\apache\spark\scheduler\EventLoggingListenerSuite.scala:74: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] assert(!fileSystem.getFileStatus(new Path(eventLogger.logPath)).isDir)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\scala\org\apache\spark\scheduler\ReplayListenerSuite.scala:118: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] assert(!eventLog.isDir)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\scala\org\apache\spark\scheduler\SparkListenerSuite.scala:278: value actorSystem in class SparkEnv is deprecated: Actor system is no longer supported as of 1.4.0
[WARNING] sc.env.actorSystem.settings.config.getBytes("akka.remote.netty.tcp.maximum-frame-size").toInt
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\scala\org\apache\spark\scheduler\TaskContextSuite.scala:105: method attemptId in class TaskContext is deprecated: use attemptNumber
[WARNING] Seq(TaskContext.get().attemptId).iterator
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\scala\org\apache\spark\scheduler\TaskResultGetterSuite.scala:89: value actorSystem in class SparkEnv is deprecated: Actor system is no longer supported as of 1.4.0
[WARNING] sc.env.actorSystem.settings.config.getBytes("akka.remote.netty.tcp.maximum-frame-size").toInt
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\scala\org\apache\spark\scheduler\TaskResultGetterSuite.scala:114: value actorSystem in class SparkEnv is deprecated: Actor system is no longer supported as of 1.4.0
[WARNING] sc.env.actorSystem.settings.config.getBytes("akka.remote.netty.tcp.maximum-frame-size").toInt
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\scala\org\apache\spark\util\ClosureCleanerSuite.scala:273: method flatMapWith in class RDD is deprecated: use mapPartitionsWithIndex and flatMap
[WARNING] rdd.flatMapWith ((index: Int) => new Random(index + 42)){ (_, it) => return; Seq() }.count()
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\scala\org\apache\spark\util\ClosureCleanerSuite.scala:276: method mapWith in class RDD is deprecated: use mapPartitionsWithIndex
[WARNING] rdd.mapWith ((index: Int) => new Random(index + 42)){ (_, it) => return; 0 }.count()
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\scala\org\apache\spark\util\ClosureCleanerSuite.scala:279: method filterWith in class RDD is deprecated: use mapPartitionsWithIndex and filter
[WARNING] rdd.filterWith ((index: Int) => new Random(index + 42)){ (_, it) => return; true }.count()
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\scala\org\apache\spark\util\ClosureCleanerSuite.scala:282: method foreachWith in class RDD is deprecated: use mapPartitionsWithIndex and foreach
[WARNING] rdd.foreachWith ((index: Int) => new Random(index + 42)){ (_, it) => return }
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\scala\org\apache\spark\util\ClosureCleanerSuite.scala:285: method mapPartitionsWithContext in class RDD is deprecated: use TaskContext.get
[WARNING] rdd.mapPartitionsWithContext { (_, it) => return; it }.count()
[WARNING] ^
[WARNING] 13 warnings found
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\java\org\apache\spark\JavaAPISuite.java:684: ����: [deprecation] AbstractJavaRDDLike�е�toArray()�ѹ�ʱ
[WARNING] List list = rdd.toArray();
[WARNING] ^
[WARNING] ����, T�����ͱ���:
[WARNING] T��չ������ AbstractJavaRDDLike��������Object
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\java\org\apache\spark\JavaAPISuite.java:1228: ����: [deprecation] Job�е�Job()�ѹ�ʱ
[WARNING] Text.class, new Job().getConfiguration());
[WARNING] ^
[WARNING] 2 ������
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-core_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 14 source files to D:\all\idea\spark-1.5.2FromGithub\core\target\scala-2.10\test-classes
[WARNING] D:\all\idea\spark-1.5.2FromGithub\core\src\test\java\org\apache\spark\JavaAPISuite.java:[684,28] ����: [deprecation] AbstractJavaRDDLike�е�toArray()�ѹ�ʱ
[WARNING] ����, T�����ͱ���:
T��չ������ AbstractJavaRDDLike��������Object
D:\all\idea\spark-1.5.2FromGithub\core\src\test\java\org\apache\spark\JavaAPISuite.java:[1228,18] ����: [deprecation] Job�е�Job()�ѹ�ʱ
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-core_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-core_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-core_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-core_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\core\target\spark-core_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-core_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\core\target\spark-core_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-core_2.10 ---
[INFO]
[INFO] --- maven-dependency-plugin:2.10:copy-dependencies (copy-dependencies) @ spark-core_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-core_2.10 ---
[INFO] Excluding org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:tests:1.7.7 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.twitter:chill_2.10:jar:0.5.0 from the shaded jar.
[INFO] Excluding com.esotericsoftware.kryo:kryo:jar:2.21 from the shaded jar.
[INFO] Excluding com.esotericsoftware.reflectasm:reflectasm:jar:shaded:1.07 from the shaded jar.
[INFO] Excluding com.esotericsoftware.minlog:minlog:jar:1.2 from the shaded jar.
[INFO] Excluding com.twitter:chill-java:jar:0.5.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding xmlenc:xmlenc:jar:0.52 from the shaded jar.
[INFO] Excluding commons-configuration:commons-configuration:jar:1.6 from the shaded jar.
[INFO] Excluding commons-collections:commons-collections:jar:3.2.1 from the shaded jar.
[INFO] Excluding commons-digester:commons-digester:jar:1.8 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils-core:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-auth:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-hdfs:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org.glassfish.external:management-api:jar:3.0.0-b012 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish:javax.servlet:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-json:jar:1.9 from the shaded jar.
[INFO] Excluding org.codehaus.jettison:jettison:jar:1.1 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 from the shaded jar.
[INFO] Excluding javax.xml.bind:jaxb-api:jar:2.2.2 from the shaded jar.
[INFO] Excluding javax.activation:activation:jar:1.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-xc:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.sun.jersey.contribs:jersey-guice:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-annotations:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-launcher_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-common_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-shuffle_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-unsafe_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding net.java.dev.jets3t:jets3t:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.10 from the shaded jar.
[INFO] Excluding commons-httpclient:commons-httpclient:jar:3.1 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-recipes:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-framework:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.zookeeper:zookeeper:jar:3.4.5 from the shaded jar.
[INFO] Excluding jline:jline:jar:0.9.94 from the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-plus:jar:8.1.14.v20131031 in the shaded jar.
[INFO] Excluding org.eclipse.jetty.orbit:javax.transaction:jar:1.1.1.v201105210645 from the shaded jar.
[INFO] Excluding org.eclipse.jetty:jetty-webapp:jar:8.1.14.v20131031 from the shaded jar.
[INFO] Excluding org.eclipse.jetty:jetty-xml:jar:8.1.14.v20131031 from the shaded jar.
[INFO] Excluding org.eclipse.jetty:jetty-jndi:jar:8.1.14.v20131031 from the shaded jar.
[INFO] Excluding org.eclipse.jetty.orbit:javax.mail.glassfish:jar:1.4.1.v201005082020 from the shaded jar.
[INFO] Excluding org.eclipse.jetty.orbit:javax.activation:jar:1.1.0.v201105071233 from the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-security:jar:8.1.14.v20131031 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-util:jar:8.1.14.v20131031 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-server:jar:8.1.14.v20131031 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-http:jar:8.1.14.v20131031 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-io:jar:8.1.14.v20131031 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-continuation:jar:8.1.14.v20131031 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-servlet:jar:8.1.14.v20131031 in the shaded jar.
[INFO] Excluding org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-lang3:jar:3.3.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math3:jar:3.4.1 from the shaded jar.
[INFO] Excluding com.google.code.findbugs:jsr305:jar:1.3.9 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jul-to-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jcl-over-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding log4j:log4j:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-log4j12:jar:1.7.10 from the shaded jar.
[INFO] Excluding com.ning:compress-lzf:jar:1.0.3 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding net.jpountz.lz4:lz4:jar:1.3.0 from the shaded jar.
[INFO] Excluding org.roaringbitmap:RoaringBitmap:jar:0.4.5 from the shaded jar.
[INFO] Excluding commons-net:commons-net:jar:2.2 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-remote_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-actor_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe:config:jar:1.2.1 from the shaded jar.
[INFO] Excluding io.netty:netty:jar:3.8.0.Final from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:2.5.0 from the shaded jar.
[INFO] Excluding org.uncommons.maths:uncommons-maths:jar:1.2.2a from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-slf4j_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-library:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.json4s:json4s-jackson_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-core_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-ast_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.scala-lang:scalap:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-compiler:jar:2.10.4 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-server:jar:1.9 from the shaded jar.
[INFO] Excluding asm:asm:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-core:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.mesos:mesos:jar:shaded-protobuf:0.21.1 from the shaded jar.
[INFO] Excluding io.netty:netty-all:jar:4.0.29.Final from the shaded jar.
[INFO] Excluding com.clearspring.analytics:stream:jar:2.7.0 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-core:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-jvm:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-json:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-graphite:jar:3.1.2 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-databind:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-core:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.module:jackson-module-scala_2.10:jar:2.4.4 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-reflect:jar:2.10.4 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.6 from the shaded jar.
[INFO] Excluding org.apache.ivy:ivy:jar:2.4.0 from the shaded jar.
[INFO] Excluding oro:oro:jar:2.0.8 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-client:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.4 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-client:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-hdfs:jar:0.7.1 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-local:jar:0.7.1 from the shaded jar.
[INFO] Excluding org.objenesis:objenesis:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math:jar:2.2 from the shaded jar.
[INFO] Excluding net.razorvine:pyrolite:jar:4.4 from the shaded jar.
[INFO] Excluding net.sf.py4j:py4j:jar:0.8.2.1 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\core\target\spark-core_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\core\target\spark-core_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\core\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\core\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-core_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\core\target\spark-core_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-core_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\core\target\spark-core_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project Bagel 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-bagel_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\bagel\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-bagel_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-bagel_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\bagel\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\bagel\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-bagel_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-bagel_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\bagel\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-bagel_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 2 Scala sources and 1 Java source to D:\all\idea\spark-1.5.2FromGithub\bagel\target\scala-2.10\classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-bagel_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to D:\all\idea\spark-1.5.2FromGithub\bagel\target\scala-2.10\classes
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-bagel_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\bagel\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-bagel_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-bagel_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 1 Scala source to D:\all\idea\spark-1.5.2FromGithub\bagel\target\scala-2.10\test-classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-bagel_2.10 ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-bagel_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-bagel_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-bagel_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-bagel_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\bagel\target\spark-bagel_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-bagel_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\bagel\target\spark-bagel_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-bagel_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-bagel_2.10 ---
[INFO] Excluding org.apache.spark:spark-core_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:tests:1.7.7 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.twitter:chill_2.10:jar:0.5.0 from the shaded jar.
[INFO] Excluding com.esotericsoftware.kryo:kryo:jar:2.21 from the shaded jar.
[INFO] Excluding com.esotericsoftware.reflectasm:reflectasm:jar:shaded:1.07 from the shaded jar.
[INFO] Excluding com.esotericsoftware.minlog:minlog:jar:1.2 from the shaded jar.
[INFO] Excluding org.objenesis:objenesis:jar:1.2 from the shaded jar.
[INFO] Excluding com.twitter:chill-java:jar:0.5.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math:jar:2.1 from the shaded jar.
[INFO] Excluding xmlenc:xmlenc:jar:0.52 from the shaded jar.
[INFO] Excluding commons-configuration:commons-configuration:jar:1.6 from the shaded jar.
[INFO] Excluding commons-collections:commons-collections:jar:3.2.1 from the shaded jar.
[INFO] Excluding commons-digester:commons-digester:jar:1.8 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils-core:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-auth:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-hdfs:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org.glassfish.external:management-api:jar:3.0.0-b012 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish:javax.servlet:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-json:jar:1.9 from the shaded jar.
[INFO] Excluding org.codehaus.jettison:jettison:jar:1.1 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 from the shaded jar.
[INFO] Excluding javax.xml.bind:jaxb-api:jar:2.2.2 from the shaded jar.
[INFO] Excluding javax.activation:activation:jar:1.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-xc:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.sun.jersey.contribs:jersey-guice:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-annotations:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-launcher_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-common_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-shuffle_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-unsafe_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding net.java.dev.jets3t:jets3t:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.10 from the shaded jar.
[INFO] Excluding commons-httpclient:commons-httpclient:jar:3.1 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-recipes:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-framework:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.zookeeper:zookeeper:jar:3.4.5 from the shaded jar.
[INFO] Excluding jline:jline:jar:0.9.94 from the shaded jar.
[INFO] Excluding org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-lang3:jar:3.3.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math3:jar:3.4.1 from the shaded jar.
[INFO] Excluding com.google.code.findbugs:jsr305:jar:1.3.9 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jul-to-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jcl-over-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding log4j:log4j:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-log4j12:jar:1.7.10 from the shaded jar.
[INFO] Excluding com.ning:compress-lzf:jar:1.0.3 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding net.jpountz.lz4:lz4:jar:1.3.0 from the shaded jar.
[INFO] Excluding org.roaringbitmap:RoaringBitmap:jar:0.4.5 from the shaded jar.
[INFO] Excluding commons-net:commons-net:jar:2.2 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-remote_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-actor_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe:config:jar:1.2.1 from the shaded jar.
[INFO] Excluding io.netty:netty:jar:3.8.0.Final from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:2.5.0 from the shaded jar.
[INFO] Excluding org.uncommons.maths:uncommons-maths:jar:1.2.2a from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-slf4j_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-library:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.json4s:json4s-jackson_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-core_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-ast_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.scala-lang:scalap:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-compiler:jar:2.10.4 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-server:jar:1.9 from the shaded jar.
[INFO] Excluding asm:asm:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-core:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.mesos:mesos:jar:shaded-protobuf:0.21.1 from the shaded jar.
[INFO] Excluding io.netty:netty-all:jar:4.0.29.Final from the shaded jar.
[INFO] Excluding com.clearspring.analytics:stream:jar:2.7.0 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-core:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-jvm:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-json:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-graphite:jar:3.1.2 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-databind:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-core:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.module:jackson-module-scala_2.10:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.6 from the shaded jar.
[INFO] Excluding org.apache.ivy:ivy:jar:2.4.0 from the shaded jar.
[INFO] Excluding oro:oro:jar:2.0.8 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-client:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.4 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-client:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-hdfs:jar:0.7.1 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-local:jar:0.7.1 from the shaded jar.
[INFO] Excluding net.razorvine:pyrolite:jar:4.4 from the shaded jar.
[INFO] Excluding net.sf.py4j:py4j:jar:0.8.2.1 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Excluding org.scala-lang:scala-reflect:jar:2.10.4 from the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\bagel\target\spark-bagel_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\bagel\target\spark-bagel_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\bagel\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\bagel\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\bagel\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-bagel_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\bagel\target\spark-bagel_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-bagel_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\bagel\target\spark-bagel_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project GraphX 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-graphx_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\graphx\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-graphx_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-graphx_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\graphx\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\graphx\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-graphx_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-graphx_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\graphx\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-graphx_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 38 Scala sources and 5 Java sources to D:\all\idea\spark-1.5.2FromGithub\graphx\target\scala-2.10\classes...
[WARNING] D:\all\idea\spark-1.5.2FromGithub\graphx\src\main\scala\org\apache\spark\graphx\Pregel.scala:124: method mapReduceTriplets in class Graph is deprecated: use aggregateMessages
[WARNING] var messages = g.mapReduceTriplets(sendMsg, mergeMsg)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\graphx\src\main\scala\org\apache\spark\graphx\Pregel.scala:138: method mapReduceTriplets in class Graph is deprecated: use aggregateMessages
[WARNING] messages = g.mapReduceTriplets(
[WARNING] ^
[WARNING] two warnings found
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-graphx_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 5 source files to D:\all\idea\spark-1.5.2FromGithub\graphx\target\scala-2.10\classes
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-graphx_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\graphx\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-graphx_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-graphx_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 18 Scala sources to D:\all\idea\spark-1.5.2FromGithub\graphx\target\scala-2.10\test-classes...
[WARNING] D:\all\idea\spark-1.5.2FromGithub\graphx\src\test\scala\org\apache\spark\graphx\GraphSuite.scala:224: method mapReduceTriplets in class Graph is deprecated: use aggregateMessages
[WARNING] val result = graph.mapReduceTriplets[Int](et => Iterator((et.dstId, et.srcAttr)), _ + _)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\graphx\src\test\scala\org\apache\spark\graphx\GraphSuite.scala:289: method mapReduceTriplets in class Graph is deprecated: use aggregateMessages
[WARNING] val neighborDegreeSums = starDeg.mapReduceTriplets(
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\graphx\src\test\scala\org\apache\spark\graphx\GraphSuite.scala:299: method mapReduceTriplets in class Graph is deprecated: use aggregateMessages
[WARNING] val numEvenNeighbors = vids.mapReduceTriplets(et => {
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\graphx\src\test\scala\org\apache\spark\graphx\GraphSuite.scala:315: method mapReduceTriplets in class Graph is deprecated: use aggregateMessages
[WARNING] val numOddNeighbors = changedGraph.mapReduceTriplets(et => {
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\graphx\src\test\scala\org\apache\spark\graphx\GraphSuite.scala:350: method mapReduceTriplets in class Graph is deprecated: use aggregateMessages
[WARNING] val neighborDegreeSums = reverseStarDegrees.mapReduceTriplets(
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\graphx\src\test\scala\org\apache\spark\graphx\GraphSuite.scala:423: method mapReduceTriplets in class Graph is deprecated: use aggregateMessages
[WARNING] val neighborAttrSums = graph.mapReduceTriplets[Int](
[WARNING] ^
[WARNING] 6 warnings found
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-graphx_2.10 ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-graphx_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-graphx_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-graphx_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-graphx_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\graphx\target\spark-graphx_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-graphx_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\graphx\target\spark-graphx_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-graphx_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-graphx_2.10 ---
[INFO] Excluding org.apache.spark:spark-core_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:tests:1.7.7 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.twitter:chill_2.10:jar:0.5.0 from the shaded jar.
[INFO] Excluding com.esotericsoftware.kryo:kryo:jar:2.21 from the shaded jar.
[INFO] Excluding com.esotericsoftware.reflectasm:reflectasm:jar:shaded:1.07 from the shaded jar.
[INFO] Excluding com.esotericsoftware.minlog:minlog:jar:1.2 from the shaded jar.
[INFO] Excluding org.objenesis:objenesis:jar:1.2 from the shaded jar.
[INFO] Excluding com.twitter:chill-java:jar:0.5.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math:jar:2.1 from the shaded jar.
[INFO] Excluding xmlenc:xmlenc:jar:0.52 from the shaded jar.
[INFO] Excluding commons-configuration:commons-configuration:jar:1.6 from the shaded jar.
[INFO] Excluding commons-collections:commons-collections:jar:3.2.1 from the shaded jar.
[INFO] Excluding commons-digester:commons-digester:jar:1.8 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils-core:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-auth:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-hdfs:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org.glassfish.external:management-api:jar:3.0.0-b012 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish:javax.servlet:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-json:jar:1.9 from the shaded jar.
[INFO] Excluding org.codehaus.jettison:jettison:jar:1.1 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 from the shaded jar.
[INFO] Excluding javax.xml.bind:jaxb-api:jar:2.2.2 from the shaded jar.
[INFO] Excluding javax.activation:activation:jar:1.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-xc:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.sun.jersey.contribs:jersey-guice:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-annotations:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-launcher_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-common_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-shuffle_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-unsafe_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding net.java.dev.jets3t:jets3t:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.10 from the shaded jar.
[INFO] Excluding commons-httpclient:commons-httpclient:jar:3.1 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-recipes:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-framework:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.zookeeper:zookeeper:jar:3.4.5 from the shaded jar.
[INFO] Excluding jline:jline:jar:0.9.94 from the shaded jar.
[INFO] Excluding org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-lang3:jar:3.3.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math3:jar:3.4.1 from the shaded jar.
[INFO] Excluding com.google.code.findbugs:jsr305:jar:1.3.9 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jul-to-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jcl-over-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding log4j:log4j:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-log4j12:jar:1.7.10 from the shaded jar.
[INFO] Excluding com.ning:compress-lzf:jar:1.0.3 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding net.jpountz.lz4:lz4:jar:1.3.0 from the shaded jar.
[INFO] Excluding org.roaringbitmap:RoaringBitmap:jar:0.4.5 from the shaded jar.
[INFO] Excluding commons-net:commons-net:jar:2.2 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-remote_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-actor_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe:config:jar:1.2.1 from the shaded jar.
[INFO] Excluding io.netty:netty:jar:3.8.0.Final from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:2.5.0 from the shaded jar.
[INFO] Excluding org.uncommons.maths:uncommons-maths:jar:1.2.2a from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-slf4j_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-library:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.json4s:json4s-jackson_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-core_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-ast_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.scala-lang:scalap:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-compiler:jar:2.10.4 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-server:jar:1.9 from the shaded jar.
[INFO] Excluding asm:asm:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-core:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.mesos:mesos:jar:shaded-protobuf:0.21.1 from the shaded jar.
[INFO] Excluding io.netty:netty-all:jar:4.0.29.Final from the shaded jar.
[INFO] Excluding com.clearspring.analytics:stream:jar:2.7.0 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-core:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-jvm:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-json:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-graphite:jar:3.1.2 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-databind:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-core:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.module:jackson-module-scala_2.10:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.6 from the shaded jar.
[INFO] Excluding org.apache.ivy:ivy:jar:2.4.0 from the shaded jar.
[INFO] Excluding oro:oro:jar:2.0.8 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-client:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.4 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-client:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-hdfs:jar:0.7.1 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-local:jar:0.7.1 from the shaded jar.
[INFO] Excluding net.razorvine:pyrolite:jar:4.4 from the shaded jar.
[INFO] Excluding net.sf.py4j:py4j:jar:0.8.2.1 from the shaded jar.
[INFO] Excluding com.github.fommil.netlib:core:jar:1.1.2 from the shaded jar.
[INFO] Excluding net.sourceforge.f2j:arpack_combined_all:jar:0.1 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Excluding org.scala-lang:scala-reflect:jar:2.10.4 from the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\graphx\target\spark-graphx_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\graphx\target\spark-graphx_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\graphx\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\graphx\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\graphx\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-graphx_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\graphx\target\spark-graphx_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-graphx_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\graphx\target\spark-graphx_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project Streaming 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-streaming_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\streaming\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-streaming_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-streaming_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\streaming\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\streaming\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-streaming_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-streaming_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-streaming_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 90 Scala sources and 5 Java sources to D:\all\idea\spark-1.5.2FromGithub\streaming\target\scala-2.10\classes...
[WARNING] D:\all\idea\spark-1.5.2FromGithub\streaming\src\main\scala\org\apache\spark\streaming\receiver\ActorReceiver.scala:147: value actorSystem in class SparkEnv is deprecated: Actor system is no longer supported as of 1.4.0
[WARNING] protected lazy val actorSupervisor = SparkEnv.get.actorSystem.actorOf(Props(new Supervisor),
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\streaming\src\main\scala\org\apache\spark\streaming\util\FileBasedWriteAheadLog.scala:205: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] if (fileSystem.exists(logDirectoryPath) && fileSystem.getFileStatus(logDirectoryPath).isDir) {
[WARNING] ^
[WARNING] two warnings found
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-streaming_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 5 source files to D:\all\idea\spark-1.5.2FromGithub\streaming\target\scala-2.10\classes
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-streaming_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\streaming\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-streaming_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-streaming_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 34 Scala sources and 6 Java sources to D:\all\idea\spark-1.5.2FromGithub\streaming\target\scala-2.10\test-classes...
[WARNING] D:\all\idea\spark-1.5.2FromGithub\streaming\src\test\scala\org\apache\spark\streaming\receiver\BlockGeneratorSuite.scala:209: reflective access of structural type member method errorReported should be enabled
by making the implicit value scala.language.reflectiveCalls visible.
This can be achieved by adding the import clause 'import scala.language.reflectiveCalls'
or by setting the compiler option -language:reflectiveCalls.
See the Scala docs for value scala.language.reflectiveCalls for a discussion
why the feature should be explicitly enabled.
[WARNING] assert(listener.errorReported === false)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\streaming\src\test\scala\org\apache\spark\streaming\receiver\BlockGeneratorSuite.scala:212: reflective access of structural type member method errorReported should be enabled
by making the implicit value scala.language.reflectiveCalls visible.
[WARNING] assert(listener.errorReported === true)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\streaming\src\test\scala\org\apache\spark\streaming\DStreamClosureSuite.scala:107: method foreach in class DStream is deprecated: use foreachRDD
[WARNING] expectCorrectException { ds.foreach(foreachF1) }
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\streaming\src\test\scala\org\apache\spark\streaming\DStreamClosureSuite.scala:108: method foreach in class DStream is deprecated: use foreachRDD
[WARNING] expectCorrectException { ds.foreach(foreachF2) }
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\streaming\src\test\scala\org\apache\spark\streaming\util\WriteAheadLogSuite.scala:432: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] if (fileSystem.exists(logDirectoryPath) && fileSystem.getFileStatus(logDirectoryPath).isDir) {
[WARNING] ^
[WARNING] 5 warnings found
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-streaming_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 6 source files to D:\all\idea\spark-1.5.2FromGithub\streaming\target\scala-2.10\test-classes
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-streaming_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-streaming_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-streaming_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-streaming_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\streaming\target\spark-streaming_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-streaming_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\streaming\target\spark-streaming_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-streaming_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-streaming_2.10 ---
[INFO] Excluding org.apache.spark:spark-core_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:tests:1.7.7 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.twitter:chill_2.10:jar:0.5.0 from the shaded jar.
[INFO] Excluding com.esotericsoftware.kryo:kryo:jar:2.21 from the shaded jar.
[INFO] Excluding com.esotericsoftware.reflectasm:reflectasm:jar:shaded:1.07 from the shaded jar.
[INFO] Excluding com.esotericsoftware.minlog:minlog:jar:1.2 from the shaded jar.
[INFO] Excluding org.objenesis:objenesis:jar:1.2 from the shaded jar.
[INFO] Excluding com.twitter:chill-java:jar:0.5.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math:jar:2.1 from the shaded jar.
[INFO] Excluding xmlenc:xmlenc:jar:0.52 from the shaded jar.
[INFO] Excluding commons-configuration:commons-configuration:jar:1.6 from the shaded jar.
[INFO] Excluding commons-digester:commons-digester:jar:1.8 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils-core:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-auth:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-hdfs:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org.glassfish.external:management-api:jar:3.0.0-b012 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish:javax.servlet:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-json:jar:1.9 from the shaded jar.
[INFO] Excluding org.codehaus.jettison:jettison:jar:1.1 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 from the shaded jar.
[INFO] Excluding javax.xml.bind:jaxb-api:jar:2.2.2 from the shaded jar.
[INFO] Excluding javax.activation:activation:jar:1.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-xc:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.sun.jersey.contribs:jersey-guice:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-annotations:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-launcher_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-common_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-shuffle_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-unsafe_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding net.java.dev.jets3t:jets3t:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.10 from the shaded jar.
[INFO] Excluding commons-httpclient:commons-httpclient:jar:3.1 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-recipes:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-framework:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.zookeeper:zookeeper:jar:3.4.5 from the shaded jar.
[INFO] Excluding jline:jline:jar:0.9.94 from the shaded jar.
[INFO] Excluding org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-lang3:jar:3.3.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math3:jar:3.4.1 from the shaded jar.
[INFO] Excluding com.google.code.findbugs:jsr305:jar:1.3.9 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jul-to-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jcl-over-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding log4j:log4j:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-log4j12:jar:1.7.10 from the shaded jar.
[INFO] Excluding com.ning:compress-lzf:jar:1.0.3 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding net.jpountz.lz4:lz4:jar:1.3.0 from the shaded jar.
[INFO] Excluding org.roaringbitmap:RoaringBitmap:jar:0.4.5 from the shaded jar.
[INFO] Excluding commons-net:commons-net:jar:2.2 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-remote_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-actor_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe:config:jar:1.2.1 from the shaded jar.
[INFO] Excluding io.netty:netty:jar:3.8.0.Final from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:2.5.0 from the shaded jar.
[INFO] Excluding org.uncommons.maths:uncommons-maths:jar:1.2.2a from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-slf4j_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding org.json4s:json4s-jackson_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-core_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-ast_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.scala-lang:scalap:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-compiler:jar:2.10.4 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-server:jar:1.9 from the shaded jar.
[INFO] Excluding asm:asm:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-core:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.mesos:mesos:jar:shaded-protobuf:0.21.1 from the shaded jar.
[INFO] Excluding io.netty:netty-all:jar:4.0.29.Final from the shaded jar.
[INFO] Excluding com.clearspring.analytics:stream:jar:2.7.0 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-core:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-jvm:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-json:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-graphite:jar:3.1.2 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-databind:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-core:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.module:jackson-module-scala_2.10:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.6 from the shaded jar.
[INFO] Excluding org.apache.ivy:ivy:jar:2.4.0 from the shaded jar.
[INFO] Excluding oro:oro:jar:2.0.8 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-client:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.4 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-client:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-hdfs:jar:0.7.1 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-local:jar:0.7.1 from the shaded jar.
[INFO] Excluding net.razorvine:pyrolite:jar:4.4 from the shaded jar.
[INFO] Excluding net.sf.py4j:py4j:jar:0.8.2.1 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-library:jar:2.10.4 from the shaded jar.
[INFO] Excluding commons-collections:commons-collections:jar:3.2.1 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Excluding org.scala-lang:scala-reflect:jar:2.10.4 from the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\streaming\target\spark-streaming_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\streaming\target\spark-streaming_2.10-1.5.2-shaded.jar
[INFO] Replacing original test artifact with shaded test artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\streaming\target\spark-streaming_2.10-1.5.2-tests.jar with D:\all\idea\spark-1.5.2FromGithub\streaming\target\spark-streaming_2.10-1.5.2-shaded-tests.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\streaming\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\streaming\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\streaming\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\streaming\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-streaming_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\streaming\target\spark-streaming_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-streaming_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\streaming\target\spark-streaming_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project Catalyst 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-catalyst_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-catalyst_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-catalyst_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-catalyst_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-catalyst_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-catalyst_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 132 Scala sources and 14 Java sources to D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\target\scala-2.10\classes...
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\src\main\scala\org\apache\spark\sql\catalyst\expressions\misc.scala:127: method shaHex in object DigestUtils is deprecated: see corresponding Javadoc for more information.
[WARNING] UTF8String.fromString(DigestUtils.shaHex(input.asInstanceOf[Array[Byte]]))
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\src\main\scala\org\apache\spark\sql\types\DataType.scala:93: method fromCaseClassString in object DataType is deprecated: Use DataType.fromJson instead
[WARNING] Try(DataType.fromJson(raw)).getOrElse(DataType.fromCaseClassString(raw))
[WARNING] ^
[WARNING] two warnings found
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-catalyst_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 14 source files to D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\target\scala-2.10\classes
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-catalyst_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-catalyst_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-catalyst_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 69 Scala sources to D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\target\scala-2.10\test-classes...
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\src\test\scala\org\apache\spark\sql\catalyst\expressions\ExpressionEvalHelper.scala:61: non-variable type argument Double in type pattern org.scalactic.TripleEqualsSupport.Spread[Double] is unchecked since it is eliminated by erasure
[WARNING] case (result: Double, expected: Spread[Double]) =>
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\src\test\scala\org\apache\spark\sql\catalyst\expressions\ExpressionEvalHelper.scala:315: non-variable type argument Double in type pattern org.scalactic.TripleEqualsSupport.Spread[Double] is unchecked since it is eliminated by erasure
[WARNING] case (result: Double, expected: Spread[Double]) =>
[WARNING] ^
[WARNING] two warnings found
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-catalyst_2.10 ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-catalyst_2.10 ---
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (test-jar-on-test-compile) @ spark-catalyst_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\target\spark-catalyst_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-catalyst_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-catalyst_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-catalyst_2.10 ---
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-catalyst_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\target\spark-catalyst_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-catalyst_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-catalyst_2.10 ---
[INFO] Excluding org.scala-lang:scala-reflect:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-library:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-core_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:tests:1.7.7 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.twitter:chill_2.10:jar:0.5.0 from the shaded jar.
[INFO] Excluding com.esotericsoftware.kryo:kryo:jar:2.21 from the shaded jar.
[INFO] Excluding com.esotericsoftware.reflectasm:reflectasm:jar:shaded:1.07 from the shaded jar.
[INFO] Excluding com.esotericsoftware.minlog:minlog:jar:1.2 from the shaded jar.
[INFO] Excluding org.objenesis:objenesis:jar:1.2 from the shaded jar.
[INFO] Excluding com.twitter:chill-java:jar:0.5.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math:jar:2.1 from the shaded jar.
[INFO] Excluding xmlenc:xmlenc:jar:0.52 from the shaded jar.
[INFO] Excluding commons-configuration:commons-configuration:jar:1.6 from the shaded jar.
[INFO] Excluding commons-collections:commons-collections:jar:3.2.1 from the shaded jar.
[INFO] Excluding commons-digester:commons-digester:jar:1.8 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils-core:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-auth:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-hdfs:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org.glassfish.external:management-api:jar:3.0.0-b012 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish:javax.servlet:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-json:jar:1.9 from the shaded jar.
[INFO] Excluding org.codehaus.jettison:jettison:jar:1.1 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 from the shaded jar.
[INFO] Excluding javax.xml.bind:jaxb-api:jar:2.2.2 from the shaded jar.
[INFO] Excluding javax.activation:activation:jar:1.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-xc:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.sun.jersey.contribs:jersey-guice:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-annotations:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-launcher_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-common_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-shuffle_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding net.java.dev.jets3t:jets3t:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.10 from the shaded jar.
[INFO] Excluding commons-httpclient:commons-httpclient:jar:3.1 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-recipes:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-framework:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.zookeeper:zookeeper:jar:3.4.5 from the shaded jar.
[INFO] Excluding jline:jline:jar:0.9.94 from the shaded jar.
[INFO] Excluding org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-lang3:jar:3.3.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math3:jar:3.4.1 from the shaded jar.
[INFO] Excluding com.google.code.findbugs:jsr305:jar:1.3.9 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jul-to-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jcl-over-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding log4j:log4j:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-log4j12:jar:1.7.10 from the shaded jar.
[INFO] Excluding com.ning:compress-lzf:jar:1.0.3 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding net.jpountz.lz4:lz4:jar:1.3.0 from the shaded jar.
[INFO] Excluding org.roaringbitmap:RoaringBitmap:jar:0.4.5 from the shaded jar.
[INFO] Excluding commons-net:commons-net:jar:2.2 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-remote_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-actor_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe:config:jar:1.2.1 from the shaded jar.
[INFO] Excluding io.netty:netty:jar:3.8.0.Final from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:2.5.0 from the shaded jar.
[INFO] Excluding org.uncommons.maths:uncommons-maths:jar:1.2.2a from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-slf4j_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding org.json4s:json4s-jackson_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-core_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-ast_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.scala-lang:scalap:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-compiler:jar:2.10.4 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-server:jar:1.9 from the shaded jar.
[INFO] Excluding asm:asm:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-core:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.mesos:mesos:jar:shaded-protobuf:0.21.1 from the shaded jar.
[INFO] Excluding io.netty:netty-all:jar:4.0.29.Final from the shaded jar.
[INFO] Excluding com.clearspring.analytics:stream:jar:2.7.0 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-core:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-jvm:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-json:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-graphite:jar:3.1.2 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-databind:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-core:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.module:jackson-module-scala_2.10:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.6 from the shaded jar.
[INFO] Excluding org.apache.ivy:ivy:jar:2.4.0 from the shaded jar.
[INFO] Excluding oro:oro:jar:2.0.8 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-client:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.4 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-client:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-hdfs:jar:0.7.1 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-local:jar:0.7.1 from the shaded jar.
[INFO] Excluding net.razorvine:pyrolite:jar:4.4 from the shaded jar.
[INFO] Excluding net.sf.py4j:py4j:jar:0.8.2.1 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-unsafe_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.codehaus.janino:janino:jar:2.7.8 from the shaded jar.
[INFO] Excluding org.codehaus.janino:commons-compiler:jar:2.7.8 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\target\spark-catalyst_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\target\spark-catalyst_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-catalyst_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\target\spark-catalyst_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-catalyst_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\target\spark-catalyst_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (default) @ spark-catalyst_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\sql\catalyst\target\spark-catalyst_2.10-1.5.2-tests.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project SQL 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-sql_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\sql\core\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-sql_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-sql_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-sql_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-sql_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-sql_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 126 Scala sources and 26 Java sources to D:\all\idea\spark-1.5.2FromGithub\sql\core\target\scala-2.10\classes...
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\execution\datasources\InsertIntoHadoopFsRelation.scala:96: constructor Job in class Job is deprecated: see corresponding Javadoc for more information.
[WARNING] val job = new Job(hadoopConf)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\execution\datasources\WriterContainer.scala:184: constructor TaskID in class TaskID is deprecated: see corresponding Javadoc for more information.
[WARNING] this.taskId = new TaskID(this.jobId, true, splitId)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\execution\datasources\json\JSONRelation.scala:83: constructor Job in class Job is deprecated: see corresponding Javadoc for more information.
[WARNING] val job = new Job(sqlContext.sparkContext.hadoopConfiguration)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\execution\datasources\parquet\ParquetRelation.scala:331: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] f.getLen, f.isDir, f.getReplication, f.getBlockSize, f.getModificationTime,
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\execution\datasources\parquet\ParquetRelation.scala:613: method fromCaseClassString in object DataType is deprecated: Use DataType.fromJson instead
[WARNING] DataType.fromCaseClassString(serializedSchema.get)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\execution\datasources\parquet\ParquetRelation.scala:796: method fromCaseClassString in object DataType is deprecated: Use DataType.fromJson instead
[WARNING] DataType.fromCaseClassString(schemaString).asInstanceOf[StructType]
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\execution\datasources\parquet\ParquetTypesConverter.scala:62: method fromCaseClassString in object DataType is deprecated: Use DataType.fromJson instead
[WARNING] Try(DataType.fromJson(string)).getOrElse(DataType.fromCaseClassString(string)) match {
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\execution\datasources\parquet\ParquetTypesConverter.scala:82: method makeQualified in class Path is deprecated: see corresponding Javadoc for more information.
[WARNING] val path = origPath.makeQualified(fs)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\execution\datasources\parquet\ParquetTypesConverter.scala:83: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] if (fs.exists(path) && !fs.getFileStatus(path).isDir) {
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\execution\datasources\parquet\ParquetTypesConverter.scala:125: constructor Job in class Job is deprecated: see corresponding Javadoc for more information.
[WARNING] val job = new Job()
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\execution\datasources\parquet\ParquetTypesConverter.scala:131: method makeQualified in class Path is deprecated: see corresponding Javadoc for more information.
[WARNING] val path = origPath.makeQualified(fs)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\execution\datasources\parquet\ParquetTypesConverter.scala:136: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] .flatMap { status => if (status.isDir) fs.listStatus(status.getPath) else List(status) }
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\sources\interfaces.scala:442: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] val (dirs, files) = statuses.partition(_.isDir)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\sources\interfaces.scala:748: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] val (dirs, files) = fs.listStatus(status.getPath).partition(_.isDir)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\main\scala\org\apache\spark\sql\sources\interfaces.scala:782: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] status.isDir,
[WARNING] ^
[WARNING] 15 warnings found
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-sql_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 26 source files to D:\all\idea\spark-1.5.2FromGithub\sql\core\target\scala-2.10\classes
[INFO]
[INFO] --- build-helper-maven-plugin:1.9.1:add-test-source (add-scala-test-sources) @ spark-sql_2.10 ---
[INFO] Test Source directory: D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java added.
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-sql_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\sql\core\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-sql_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 11 resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-sql_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 93 Scala sources and 15 Java sources to D:\all\idea\spark-1.5.2FromGithub\sql\core\target\scala-2.10\test-classes...
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\scala\org\apache\spark\sql\DataFrameSuite.scala:324: method callUdf in object functions is deprecated: Use callUDF
[WARNING] df.select($"id", callUdf("simpleUdf", $"value")),
[WARNING] ^
[WARNING] one warning found
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\AvroArrayOfArray.java:135: ����: [unchecked] δ������ת��
[WARNING] record.int_arrays_column = fieldSetFlags()[0] ? this.int_arrays_column : (java.util.List>) defaultValue(fields()[0]);
[WARNING] ^
[WARNING] ��Ҫ: List>
[WARNING] �ҵ�: Object
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\AvroMapOfArray.java:135: ����: [unchecked] δ������ת��
[WARNING] record.string_to_ints_column = fieldSetFlags()[0] ? this.string_to_ints_column : (java.util.Map>) defaultValue(fields()[0]);
[WARNING] ^
[WARNING] ��Ҫ: Map>
[WARNING] �ҵ�: Object
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\AvroNonNullableArrays.java:188: ����: [unchecked] δ������ת��
[WARNING] record.strings_column = fieldSetFlags()[0] ? this.strings_column : (java.util.List) defaultValue(fields()[0]);
[WARNING] ^
[WARNING] ��Ҫ: List
[WARNING] �ҵ�: Object
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\AvroNonNullableArrays.java:189: ����: [unchecked] δ������ת��
[WARNING] record.maybe_ints_column = fieldSetFlags()[1] ? this.maybe_ints_column : (java.util.List) defaultValue(fields()[1]);
[WARNING] ^
[WARNING] ��Ҫ: List
[WARNING] �ҵ�: Object
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\Nested.java:188: ����: [unchecked] δ������ת��
[WARNING] record.nested_ints_column = fieldSetFlags()[0] ? this.nested_ints_column : (java.util.List) defaultValue(fields()[0]);
[WARNING] ^
[WARNING] ��Ҫ: List
[WARNING] �ҵ�: Object
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\ParquetAvroCompat.java:241: ����: [unchecked] δ������ת��
[WARNING] record.strings_column = fieldSetFlags()[0] ? this.strings_column : (java.util.List) defaultValue(fields()[0]);
[WARNING] ^
[WARNING] ��Ҫ: List
[WARNING] �ҵ�: Object
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\ParquetAvroCompat.java:242: ����: [unchecked] δ������ת��
[WARNING] record.string_to_int_column = fieldSetFlags()[1] ? this.string_to_int_column : (java.util.Map) defaultValue(fields()[1]);
[WARNING] ^
[WARNING] ��Ҫ: Map
[WARNING] �ҵ�: Object
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\ParquetAvroCompat.java:243: ����: [unchecked] δ������ת��
[WARNING] record.complex_column = fieldSetFlags()[2] ? this.complex_column : (java.util.Map>) defaultValue(fields()[2]);
[WARNING] ^
[WARNING] ��Ҫ: Map>
[WARNING] �ҵ�: Object
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\java\test\org\apache\spark\sql\JavaApplySchemaSuite.java:108: ����: [deprecation] SQLContext�е�applySchema(JavaRDD,StructType)�ѹ�ʱ
[WARNING] DataFrame df = sqlContext.applySchema(rowRDD, schema);
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\java\test\org\apache\spark\sql\JavaApplySchemaSuite.java:143: ����: [deprecation] SQLContext�е�applySchema(JavaRDD,StructType)�ѹ�ʱ
[WARNING] DataFrame df = sqlContext.applySchema(rowRDD, schema);
[WARNING] ^
[WARNING] 10 ������
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-sql_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 15 source files to D:\all\idea\spark-1.5.2FromGithub\sql\core\target\scala-2.10\test-classes
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\ParquetAvroCompat.java:[241,122] ����: [unchecked] δ������ת��
[WARNING] ��Ҫ: List
�ҵ�: Object
D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\ParquetAvroCompat.java:[242,151] ����: [unchecked] δ������ת��
[WARNING] ��Ҫ: Map
�ҵ�: Object
D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\ParquetAvroCompat.java:[243,205] ����: [unchecked] δ������ת��
[WARNING] ��Ҫ: Map>
�ҵ�: Object
D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\Nested.java:[188,131] ����: [unchecked] δ������ת��
[WARNING] ��Ҫ: List
�ҵ�: Object
D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\AvroMapOfArray.java:[135,169] ����: [unchecked] δ������ת��
[WARNING] ��Ҫ: Map>
�ҵ�: Object
D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\AvroNonNullableArrays.java:[188,122] ����: [unchecked] δ������ת��
[WARNING] ��Ҫ: List
�ҵ�: Object
D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\AvroNonNullableArrays.java:[189,129] ����: [unchecked] δ������ת��
[WARNING] ��Ҫ: List
�ҵ�: Object
D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\gen-java\org\apache\spark\sql\execution\datasources\parquet\test\avro\AvroArrayOfArray.java:[135,145] ����: [unchecked] δ������ת��
[WARNING] ��Ҫ: List>
�ҵ�: Object
D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\java\test\org\apache\spark\sql\JavaApplySchemaSuite.java:[108,29] ����: [deprecation] SQLContext�е�applySchema(JavaRDD,StructType)�ѹ�ʱ
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\core\src\test\java\test\org\apache\spark\sql\JavaApplySchemaSuite.java:[143,29] ����: [deprecation] SQLContext�е�applySchema(JavaRDD,StructType)�ѹ�ʱ
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-sql_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-sql_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-sql_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-sql_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\sql\core\target\spark-sql_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-sql_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\sql\core\target\spark-sql_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-sql_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-sql_2.10 ---
[INFO] Excluding org.apache.spark:spark-core_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:tests:1.7.7 from the shaded jar.
[INFO] Excluding com.twitter:chill_2.10:jar:0.5.0 from the shaded jar.
[INFO] Excluding com.esotericsoftware.kryo:kryo:jar:2.21 from the shaded jar.
[INFO] Excluding com.esotericsoftware.reflectasm:reflectasm:jar:shaded:1.07 from the shaded jar.
[INFO] Excluding com.esotericsoftware.minlog:minlog:jar:1.2 from the shaded jar.
[INFO] Excluding com.twitter:chill-java:jar:0.5.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math:jar:2.1 from the shaded jar.
[INFO] Excluding xmlenc:xmlenc:jar:0.52 from the shaded jar.
[INFO] Excluding commons-configuration:commons-configuration:jar:1.6 from the shaded jar.
[INFO] Excluding commons-collections:commons-collections:jar:3.2.1 from the shaded jar.
[INFO] Excluding commons-digester:commons-digester:jar:1.8 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils-core:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-auth:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-hdfs:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org.glassfish.external:management-api:jar:3.0.0-b012 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish:javax.servlet:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-json:jar:1.9 from the shaded jar.
[INFO] Excluding org.codehaus.jettison:jettison:jar:1.1 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 from the shaded jar.
[INFO] Excluding javax.xml.bind:jaxb-api:jar:2.2.2 from the shaded jar.
[INFO] Excluding javax.activation:activation:jar:1.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-xc:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.sun.jersey.contribs:jersey-guice:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-annotations:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-launcher_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-common_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-shuffle_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-unsafe_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding net.java.dev.jets3t:jets3t:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-httpclient:commons-httpclient:jar:3.1 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-recipes:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-framework:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.zookeeper:zookeeper:jar:3.4.5 from the shaded jar.
[INFO] Excluding jline:jline:jar:0.9.94 from the shaded jar.
[INFO] Excluding org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-lang3:jar:3.3.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math3:jar:3.4.1 from the shaded jar.
[INFO] Excluding com.google.code.findbugs:jsr305:jar:1.3.9 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jul-to-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jcl-over-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding log4j:log4j:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-log4j12:jar:1.7.10 from the shaded jar.
[INFO] Excluding com.ning:compress-lzf:jar:1.0.3 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding net.jpountz.lz4:lz4:jar:1.3.0 from the shaded jar.
[INFO] Excluding org.roaringbitmap:RoaringBitmap:jar:0.4.5 from the shaded jar.
[INFO] Excluding commons-net:commons-net:jar:2.2 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-remote_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-actor_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe:config:jar:1.2.1 from the shaded jar.
[INFO] Excluding io.netty:netty:jar:3.8.0.Final from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:2.5.0 from the shaded jar.
[INFO] Excluding org.uncommons.maths:uncommons-maths:jar:1.2.2a from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-slf4j_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-library:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.json4s:json4s-jackson_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-core_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-ast_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.scala-lang:scalap:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-compiler:jar:2.10.4 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-server:jar:1.9 from the shaded jar.
[INFO] Excluding asm:asm:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-core:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.mesos:mesos:jar:shaded-protobuf:0.21.1 from the shaded jar.
[INFO] Excluding io.netty:netty-all:jar:4.0.29.Final from the shaded jar.
[INFO] Excluding com.clearspring.analytics:stream:jar:2.7.0 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-core:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-jvm:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-json:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-graphite:jar:3.1.2 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.module:jackson-module-scala_2.10:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.6 from the shaded jar.
[INFO] Excluding org.apache.ivy:ivy:jar:2.4.0 from the shaded jar.
[INFO] Excluding oro:oro:jar:2.0.8 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-client:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.4 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-client:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-hdfs:jar:0.7.1 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-local:jar:0.7.1 from the shaded jar.
[INFO] Excluding net.razorvine:pyrolite:jar:4.4 from the shaded jar.
[INFO] Excluding net.sf.py4j:py4j:jar:0.8.2.1 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-catalyst_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-reflect:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.codehaus.janino:janino:jar:2.7.8 from the shaded jar.
[INFO] Excluding org.codehaus.janino:commons-compiler:jar:2.7.8 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-column:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-common:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-encoding:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-generator:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.10 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-hadoop:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-format:jar:2.3.0-incubating from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-jackson:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-databind:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-core:jar:2.4.4 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.objenesis:objenesis:jar:1.0 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\sql\core\target\spark-sql_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\sql\core\target\spark-sql_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\sql\core\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\sql\core\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\sql\core\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-sql_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\sql\core\target\spark-sql_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-sql_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\sql\core\target\spark-sql_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project ML Library 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-mllib_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\mllib\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-mllib_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-mllib_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\mllib\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\mllib\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-mllib_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-mllib_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\mllib\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-mllib_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 220 Scala sources and 3 Java sources to D:\all\idea\spark-1.5.2FromGithub\mllib\target\scala-2.10\classes...
[WARNING] D:\all\idea\spark-1.5.2FromGithub\mllib\src\main\scala\org\apache\spark\ml\Transformer.scala:119: method callUDF in object functions is deprecated: Use udf
[WARNING] callUDF(this.createTransformFunc, outputDataType, dataset($(inputCol))))
[WARNING] ^
[WARNING] one warning found
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-mllib_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 3 source files to D:\all\idea\spark-1.5.2FromGithub\mllib\target\scala-2.10\classes
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-mllib_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\mllib\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-mllib_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-mllib_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 129 Scala sources and 57 Java sources to D:\all\idea\spark-1.5.2FromGithub\mllib\target\scala-2.10\test-classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-mllib_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 57 source files to D:\all\idea\spark-1.5.2FromGithub\mllib\target\scala-2.10\test-classes
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-mllib_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-mllib_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-mllib_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-mllib_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\mllib\target\spark-mllib_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-mllib_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\mllib\target\spark-mllib_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-mllib_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-mllib_2.10 ---
[INFO] Excluding org.apache.spark:spark-core_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:tests:1.7.7 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.twitter:chill_2.10:jar:0.5.0 from the shaded jar.
[INFO] Excluding com.esotericsoftware.kryo:kryo:jar:2.21 from the shaded jar.
[INFO] Excluding com.esotericsoftware.reflectasm:reflectasm:jar:shaded:1.07 from the shaded jar.
[INFO] Excluding com.esotericsoftware.minlog:minlog:jar:1.2 from the shaded jar.
[INFO] Excluding com.twitter:chill-java:jar:0.5.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math:jar:2.1 from the shaded jar.
[INFO] Excluding xmlenc:xmlenc:jar:0.52 from the shaded jar.
[INFO] Excluding commons-configuration:commons-configuration:jar:1.6 from the shaded jar.
[INFO] Excluding commons-collections:commons-collections:jar:3.2.1 from the shaded jar.
[INFO] Excluding commons-digester:commons-digester:jar:1.8 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils-core:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-auth:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-hdfs:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org.glassfish.external:management-api:jar:3.0.0-b012 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish:javax.servlet:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-json:jar:1.9 from the shaded jar.
[INFO] Excluding org.codehaus.jettison:jettison:jar:1.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-xc:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.sun.jersey.contribs:jersey-guice:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-annotations:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-launcher_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-common_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-shuffle_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-unsafe_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding net.java.dev.jets3t:jets3t:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.10 from the shaded jar.
[INFO] Excluding commons-httpclient:commons-httpclient:jar:3.1 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-recipes:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-framework:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.zookeeper:zookeeper:jar:3.4.5 from the shaded jar.
[INFO] Excluding jline:jline:jar:0.9.94 from the shaded jar.
[INFO] Excluding org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-lang3:jar:3.3.2 from the shaded jar.
[INFO] Excluding com.google.code.findbugs:jsr305:jar:1.3.9 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jul-to-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jcl-over-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding log4j:log4j:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-log4j12:jar:1.7.10 from the shaded jar.
[INFO] Excluding com.ning:compress-lzf:jar:1.0.3 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding net.jpountz.lz4:lz4:jar:1.3.0 from the shaded jar.
[INFO] Excluding org.roaringbitmap:RoaringBitmap:jar:0.4.5 from the shaded jar.
[INFO] Excluding commons-net:commons-net:jar:2.2 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-remote_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-actor_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe:config:jar:1.2.1 from the shaded jar.
[INFO] Excluding io.netty:netty:jar:3.8.0.Final from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:2.5.0 from the shaded jar.
[INFO] Excluding org.uncommons.maths:uncommons-maths:jar:1.2.2a from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-slf4j_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-library:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.json4s:json4s-jackson_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-core_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-ast_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.scala-lang:scalap:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-compiler:jar:2.10.4 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-server:jar:1.9 from the shaded jar.
[INFO] Excluding asm:asm:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-core:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.mesos:mesos:jar:shaded-protobuf:0.21.1 from the shaded jar.
[INFO] Excluding io.netty:netty-all:jar:4.0.29.Final from the shaded jar.
[INFO] Excluding com.clearspring.analytics:stream:jar:2.7.0 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-core:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-jvm:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-json:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-graphite:jar:3.1.2 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-databind:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-core:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.module:jackson-module-scala_2.10:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.6 from the shaded jar.
[INFO] Excluding org.apache.ivy:ivy:jar:2.4.0 from the shaded jar.
[INFO] Excluding oro:oro:jar:2.0.8 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-client:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.4 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-client:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-hdfs:jar:0.7.1 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-local:jar:0.7.1 from the shaded jar.
[INFO] Excluding net.razorvine:pyrolite:jar:4.4 from the shaded jar.
[INFO] Excluding net.sf.py4j:py4j:jar:0.8.2.1 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-streaming_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-sql_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-catalyst_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.codehaus.janino:janino:jar:2.7.8 from the shaded jar.
[INFO] Excluding org.codehaus.janino:commons-compiler:jar:2.7.8 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-column:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-common:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-encoding:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-generator:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-hadoop:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-format:jar:2.3.0-incubating from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-jackson:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-graphx_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding com.github.fommil.netlib:core:jar:1.1.2 from the shaded jar.
[INFO] Excluding net.sourceforge.f2j:arpack_combined_all:jar:0.1 from the shaded jar.
[INFO] Excluding org.scalanlp:breeze_2.10:jar:0.11.2 from the shaded jar.
[INFO] Excluding org.scalanlp:breeze-macros_2.10:jar:0.11.2 from the shaded jar.
[INFO] Excluding org.scalamacros:quasiquotes_2.10:jar:2.0.0-M8 from the shaded jar.
[INFO] Excluding net.sf.opencsv:opencsv:jar:2.3 from the shaded jar.
[INFO] Excluding com.github.rwl:jtransforms:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.spire-math:spire_2.10:jar:0.7.4 from the shaded jar.
[INFO] Excluding org.spire-math:spire-macros_2.10:jar:0.7.4 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math3:jar:3.4.1 from the shaded jar.
[INFO] Excluding org.objenesis:objenesis:jar:1.0 from the shaded jar.
[INFO] Excluding org.jpmml:pmml-model:jar:1.1.15 from the shaded jar.
[INFO] Excluding org.jpmml:pmml-agent:jar:1.1.15 from the shaded jar.
[INFO] Excluding org.jpmml:pmml-schema:jar:1.1.15 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-impl:jar:2.2.7 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-core:jar:2.2.7 from the shaded jar.
[INFO] Excluding javax.xml.bind:jaxb-api:jar:2.2.7 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Excluding org.scala-lang:scala-reflect:jar:2.10.4 from the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\mllib\target\spark-mllib_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\mllib\target\spark-mllib_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\mllib\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\mllib\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\mllib\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-mllib_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\mllib\target\spark-mllib_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-mllib_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\mllib\target\spark-mllib_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project Tools 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-tools_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\tools\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-tools_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-tools_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\tools\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\tools\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-tools_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-tools_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\tools\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-tools_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 3 Scala sources to D:\all\idea\spark-1.5.2FromGithub\tools\target\scala-2.10\classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-tools_2.10 ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-tools_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\tools\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-tools_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\tools\src\test\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-tools_2.10 ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-tools_2.10 ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-tools_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-tools_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-tools_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-tools_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\tools\target\spark-tools_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-tools_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\tools\target\spark-tools_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-tools_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-tools_2.10 ---
[INFO] Excluding org.apache.spark:spark-core_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:tests:1.7.7 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.twitter:chill_2.10:jar:0.5.0 from the shaded jar.
[INFO] Excluding com.esotericsoftware.kryo:kryo:jar:2.21 from the shaded jar.
[INFO] Excluding com.esotericsoftware.reflectasm:reflectasm:jar:shaded:1.07 from the shaded jar.
[INFO] Excluding com.esotericsoftware.minlog:minlog:jar:1.2 from the shaded jar.
[INFO] Excluding org.objenesis:objenesis:jar:1.2 from the shaded jar.
[INFO] Excluding com.twitter:chill-java:jar:0.5.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math:jar:2.1 from the shaded jar.
[INFO] Excluding xmlenc:xmlenc:jar:0.52 from the shaded jar.
[INFO] Excluding commons-configuration:commons-configuration:jar:1.6 from the shaded jar.
[INFO] Excluding commons-collections:commons-collections:jar:3.2.1 from the shaded jar.
[INFO] Excluding commons-digester:commons-digester:jar:1.8 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils-core:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-auth:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-hdfs:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org.glassfish.external:management-api:jar:3.0.0-b012 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish:javax.servlet:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-json:jar:1.9 from the shaded jar.
[INFO] Excluding org.codehaus.jettison:jettison:jar:1.1 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 from the shaded jar.
[INFO] Excluding javax.xml.bind:jaxb-api:jar:2.2.2 from the shaded jar.
[INFO] Excluding javax.activation:activation:jar:1.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-xc:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.sun.jersey.contribs:jersey-guice:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-annotations:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-launcher_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-common_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-shuffle_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-unsafe_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding net.java.dev.jets3t:jets3t:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.10 from the shaded jar.
[INFO] Excluding commons-httpclient:commons-httpclient:jar:3.1 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-recipes:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-framework:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.zookeeper:zookeeper:jar:3.4.5 from the shaded jar.
[INFO] Excluding jline:jline:jar:0.9.94 from the shaded jar.
[INFO] Excluding org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-lang3:jar:3.3.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math3:jar:3.4.1 from the shaded jar.
[INFO] Excluding com.google.code.findbugs:jsr305:jar:1.3.9 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jul-to-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jcl-over-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding log4j:log4j:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-log4j12:jar:1.7.10 from the shaded jar.
[INFO] Excluding com.ning:compress-lzf:jar:1.0.3 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding net.jpountz.lz4:lz4:jar:1.3.0 from the shaded jar.
[INFO] Excluding org.roaringbitmap:RoaringBitmap:jar:0.4.5 from the shaded jar.
[INFO] Excluding commons-net:commons-net:jar:2.2 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-remote_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-actor_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe:config:jar:1.2.1 from the shaded jar.
[INFO] Excluding io.netty:netty:jar:3.8.0.Final from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:2.5.0 from the shaded jar.
[INFO] Excluding org.uncommons.maths:uncommons-maths:jar:1.2.2a from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-slf4j_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-library:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.json4s:json4s-jackson_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-core_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-ast_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.scala-lang:scalap:jar:2.10.4 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-server:jar:1.9 from the shaded jar.
[INFO] Excluding asm:asm:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-core:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.mesos:mesos:jar:shaded-protobuf:0.21.1 from the shaded jar.
[INFO] Excluding io.netty:netty-all:jar:4.0.29.Final from the shaded jar.
[INFO] Excluding com.clearspring.analytics:stream:jar:2.7.0 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-core:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-jvm:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-json:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-graphite:jar:3.1.2 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-databind:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-core:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.module:jackson-module-scala_2.10:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.6 from the shaded jar.
[INFO] Excluding org.apache.ivy:ivy:jar:2.4.0 from the shaded jar.
[INFO] Excluding oro:oro:jar:2.0.8 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-client:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.4 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-client:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-hdfs:jar:0.7.1 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-local:jar:0.7.1 from the shaded jar.
[INFO] Excluding net.razorvine:pyrolite:jar:4.4 from the shaded jar.
[INFO] Excluding net.sf.py4j:py4j:jar:0.8.2.1 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-streaming_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-reflect:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-compiler:jar:2.10.4 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\tools\target\spark-tools_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\tools\target\spark-tools_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\tools\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\tools\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-tools_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\tools\target\spark-tools_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-tools_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\tools\target\spark-tools_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project Hive 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-hive_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\sql\hive\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-hive_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-hive_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\test\scala
[INFO]
[INFO] --- build-helper-maven-plugin:1.9.1:add-source (add-default-sources) @ spark-hive_2.10 ---
[INFO] Source directory: D:\all\idea\spark-1.5.2FromGithub\sql\hive\v1.2.1\src\main\scala added.
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-hive_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-hive_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-hive_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 27 Scala sources and 1 Java source to D:\all\idea\spark-1.5.2FromGithub\sql\hive\target\scala-2.10\classes...
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\HiveContext.scala:332: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] val size = if (fileStatus.isDir) {
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\TableReader.scala:81: trait Deserializer in package serde2 is deprecated: see corresponding Javadoc for more information.
[WARNING] Utils.classForName(relation.tableDesc.getSerdeClassName).asInstanceOf[Class[Deserializer]],
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\TableReader.scala:95: trait Deserializer in package serde2 is deprecated: see corresponding Javadoc for more information.
[WARNING] deserializerClass: Class[_ <: Deserializer],
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\TableReader.scala:129: trait Deserializer in package serde2 is deprecated: see corresponding Javadoc for more information.
[WARNING] (part, part.getDeserializer.getClass.asInstanceOf[Class[Deserializer]])).toMap
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\TableReader.scala:144: trait Deserializer in package serde2 is deprecated: see corresponding Javadoc for more information.
[WARNING] partitionToDeserializer: Map[HivePartition,
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\TableReader.scala:150: trait Deserializer in package serde2 is deprecated: see corresponding Javadoc for more information.
[WARNING] partitionToDeserializer: Map[HivePartition, Class[_ <: Deserializer]]):
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\TableReader.scala:151: trait Deserializer in package serde2 is deprecated: see corresponding Javadoc for more information.
[WARNING] Map[HivePartition, Class[_ <: Deserializer]] = {
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\TableReader.scala:318: trait Deserializer in package serde2 is deprecated: see corresponding Javadoc for more information.
[WARNING] rawDeser: Deserializer,
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\TableReader.scala:321: trait Deserializer in package serde2 is deprecated: see corresponding Javadoc for more information.
[WARNING] tableDeser: Deserializer): Iterator[InternalRow] = {
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\execution\InsertIntoHiveTable.scala:58: trait Serializer in package serde2 is deprecated: see corresponding Javadoc for more information.
[WARNING] private def newSerializer(tableDesc: TableDesc): Serializer = {
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\execution\InsertIntoHiveTable.scala:59: trait Serializer in package serde2 is deprecated: see corresponding Javadoc for more information.
[WARNING] val serializer = tableDesc.getDeserializerClass.newInstance().asInstanceOf[Serializer]
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\execution\ScriptTransformation.scala:375: method initialize in class AbstractSerDe is deprecated: see corresponding Javadoc for more information.
[WARNING] serde.initialize(null, properties)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\hiveUDFs.scala:339: class UDAF in package exec is deprecated: see corresponding Javadoc for more information.
[WARNING] new GenericUDAFBridge(funcWrapper.createFunction[UDAF]())
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\hiveUDFs.scala:380: trait AggregationBuffer in object GenericUDAFEvaluator is deprecated: see corresponding Javadoc for more information.
[WARNING] private var hiveEvaluatorBuffer: AggregationBuffer = _
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\hiveUDFs.scala:482: class UDAF in package exec is deprecated: see corresponding Javadoc for more information.
[WARNING] type UDFType = UDAF
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\hiveUDFs.scala:536: method initialize in class GenericUDTF is deprecated: see corresponding Javadoc for more information.
[WARNING] protected lazy val outputInspector = function.initialize(inputInspectors.toArray)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\hiveUDFs.scala:600: class UDAF in package exec is deprecated: see corresponding Javadoc for more information.
[WARNING] new GenericUDAFBridge(funcWrapper.createFunction[UDAF]())
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\hiveWriterContainers.scala:135: constructor TaskID in class TaskID is deprecated: see corresponding Javadoc for more information.
[WARNING] new TaskAttemptID(new TaskID(jID.value, true, splitID), attemptID))
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\orc\OrcFileOperator.scala:98: method isDir in class FileStatus is deprecated: see corresponding Javadoc for more information.
[WARNING] .filterNot(_.isDir)
[WARNING] ^
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\main\scala\org\apache\spark\sql\hive\orc\OrcRelation.scala:286: constructor Job in class Job is deprecated: see corresponding Javadoc for more information.
[WARNING] val job = new Job(sqlContext.sparkContext.hadoopConfiguration)
[WARNING] ^
[WARNING] 20 warnings found
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-hive_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to D:\all\idea\spark-1.5.2FromGithub\sql\hive\target\scala-2.10\classes
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-hive_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\sql\hive\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-hive_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 10041 resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-hive_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 51 Scala sources and 14 Java sources to D:\all\idea\spark-1.5.2FromGithub\sql\hive\target\scala-2.10\test-classes...
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\test\java\org\apache\spark\sql\hive\test\Complex.java:53: ����: [rawtypes] �ҵ�ԭʼ����: IScheme
[WARNING] private static final Map, SchemeFactory> schemes = new HashMap, SchemeFactory>();
[WARNING] ^
[WARNING] ȱ�ٷ�����IScheme�����Ͳ���
[WARNING] ����, T�����ͱ���:
[WARNING] T��չ���ڽӿ� IScheme��������TBase
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\test\java\org\apache\spark\sql\hive\test\Complex.java:53: ����: [rawtypes] �ҵ�ԭʼ����: IScheme
[WARNING] private static final Map, SchemeFactory> schemes = new HashMap, SchemeFactory>();
[WARNING] ^
[WARNING] ȱ�ٷ�����IScheme�����Ͳ���
[WARNING] ����, T�����ͱ���:
[WARNING] T��չ���ڽӿ� IScheme��������TBase
[WARNING] D:\all\idea\spark-1.5.2FromGithub\sql\hive\src\test\java\org\apache\spark\sql\hive\test\Complex.java:655: ����: [cast] ��������ĵ�Complex��ת��
[WARNING] Complex typedOther = (Complex)other;
[WARNING] ^
[WARNING] 3 ������
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-hive_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 14 source files to D:\all\idea\spark-1.5.2FromGithub\sql\hive\target\scala-2.10\test-classes
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-hive_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-hive_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-hive_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-hive_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\sql\hive\target\spark-hive_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-hive_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\sql\hive\target\spark-hive_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-hive_2.10 ---
[INFO]
[INFO] --- maven-dependency-plugin:2.10:copy-dependencies (copy-dependencies) @ spark-hive_2.10 ---
[INFO] Copying datanucleus-core-3.2.10.jar to D:\all\idea\spark-1.5.2FromGithub\sql\hive\..\..\lib_managed\jars\datanucleus-core-3.2.10.jar
[INFO] Copying datanucleus-rdbms-3.2.9.jar to D:\all\idea\spark-1.5.2FromGithub\sql\hive\..\..\lib_managed\jars\datanucleus-rdbms-3.2.9.jar
[INFO] Copying datanucleus-api-jdo-3.2.6.jar to D:\all\idea\spark-1.5.2FromGithub\sql\hive\..\..\lib_managed\jars\datanucleus-api-jdo-3.2.6.jar
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-hive_2.10 ---
[INFO] Excluding com.twitter:parquet-hadoop-bundle:jar:1.6.0 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-core_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding com.twitter:chill_2.10:jar:0.5.0 from the shaded jar.
[INFO] Excluding com.esotericsoftware.kryo:kryo:jar:2.21 from the shaded jar.
[INFO] Excluding com.esotericsoftware.reflectasm:reflectasm:jar:shaded:1.07 from the shaded jar.
[INFO] Excluding com.esotericsoftware.minlog:minlog:jar:1.2 from the shaded jar.
[INFO] Excluding org.objenesis:objenesis:jar:1.2 from the shaded jar.
[INFO] Excluding com.twitter:chill-java:jar:0.5.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math:jar:2.1 from the shaded jar.
[INFO] Excluding xmlenc:xmlenc:jar:0.52 from the shaded jar.
[INFO] Excluding commons-configuration:commons-configuration:jar:1.6 from the shaded jar.
[INFO] Excluding commons-collections:commons-collections:jar:3.2.1 from the shaded jar.
[INFO] Excluding commons-digester:commons-digester:jar:1.8 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils-core:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-auth:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-hdfs:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org.glassfish.external:management-api:jar:3.0.0-b012 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish:javax.servlet:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-json:jar:1.9 from the shaded jar.
[INFO] Excluding org.codehaus.jettison:jettison:jar:1.1 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 from the shaded jar.
[INFO] Excluding javax.xml.bind:jaxb-api:jar:2.2.2 from the shaded jar.
[INFO] Excluding javax.activation:activation:jar:1.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-xc:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.sun.jersey.contribs:jersey-guice:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-annotations:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-launcher_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-common_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-shuffle_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-unsafe_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding net.java.dev.jets3t:jets3t:jar:0.7.1 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-recipes:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-framework:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.zookeeper:zookeeper:jar:3.4.5 from the shaded jar.
[INFO] Excluding org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-lang3:jar:3.3.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math3:jar:3.4.1 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jul-to-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jcl-over-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding log4j:log4j:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-log4j12:jar:1.7.10 from the shaded jar.
[INFO] Excluding com.ning:compress-lzf:jar:1.0.3 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding net.jpountz.lz4:lz4:jar:1.3.0 from the shaded jar.
[INFO] Excluding org.roaringbitmap:RoaringBitmap:jar:0.4.5 from the shaded jar.
[INFO] Excluding commons-net:commons-net:jar:2.2 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-remote_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-actor_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe:config:jar:1.2.1 from the shaded jar.
[INFO] Excluding io.netty:netty:jar:3.8.0.Final from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:2.5.0 from the shaded jar.
[INFO] Excluding org.uncommons.maths:uncommons-maths:jar:1.2.2a from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-slf4j_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-library:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.json4s:json4s-jackson_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-core_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-ast_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.scala-lang:scalap:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-compiler:jar:2.10.4 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-server:jar:1.9 from the shaded jar.
[INFO] Excluding asm:asm:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-core:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.mesos:mesos:jar:shaded-protobuf:0.21.1 from the shaded jar.
[INFO] Excluding io.netty:netty-all:jar:4.0.29.Final from the shaded jar.
[INFO] Excluding com.clearspring.analytics:stream:jar:2.7.0 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-core:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-jvm:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-json:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-graphite:jar:3.1.2 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-databind:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-core:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.module:jackson-module-scala_2.10:jar:2.4.4 from the shaded jar.
[INFO] Excluding org.apache.ivy:ivy:jar:2.4.0 from the shaded jar.
[INFO] Excluding oro:oro:jar:2.0.8 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-client:jar:0.7.1 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-client:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-hdfs:jar:0.7.1 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-local:jar:0.7.1 from the shaded jar.
[INFO] Excluding net.razorvine:pyrolite:jar:4.4 from the shaded jar.
[INFO] Excluding net.sf.py4j:py4j:jar:0.8.2.1 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-sql_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-catalyst_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-column:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-common:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-encoding:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-generator:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-hadoop:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-format:jar:2.3.0-incubating from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-jackson:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.spark-project.hive:hive-exec:jar:1.2.1.spark from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.4 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding javolution:javolution:jar:5.5.1 from the shaded jar.
[INFO] Excluding log4j:apache-log4j-extras:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.antlr:antlr-runtime:jar:3.4 from the shaded jar.
[INFO] Excluding org.antlr:stringtemplate:jar:3.2.1 from the shaded jar.
[INFO] Excluding antlr:antlr:jar:2.7.7 from the shaded jar.
[INFO] Excluding org.antlr:ST4:jar:4.0.4 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.codehaus.groovy:groovy-all:jar:2.1.6 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.googlecode.javaewah:JavaEWAH:jar:0.3.2 from the shaded jar.
[INFO] Excluding org.iq80.snappy:snappy:jar:0.2 from the shaded jar.
[INFO] Excluding org.json:json:jar:20090211 from the shaded jar.
[INFO] Excluding stax:stax-api:jar:1.0.1 from the shaded jar.
[INFO] Excluding net.sf.opencsv:opencsv:jar:2.3 from the shaded jar.
[INFO] Excluding jline:jline:jar:2.12 from the shaded jar.
[INFO] Excluding org.spark-project.hive:hive-metastore:jar:1.2.1.spark from the shaded jar.
[INFO] Excluding com.jolbox:bonecp:jar:0.8.0.RELEASE from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding commons-logging:commons-logging:jar:1.1.3 from the shaded jar.
[INFO] Excluding org.apache.derby:derby:jar:10.10.1.1 from the shaded jar.
[INFO] Excluding org.datanucleus:datanucleus-api-jdo:jar:3.2.6 from the shaded jar.
[INFO] Excluding org.datanucleus:datanucleus-rdbms:jar:3.2.9 from the shaded jar.
[INFO] Excluding commons-pool:commons-pool:jar:1.5.4 from the shaded jar.
[INFO] Excluding commons-dbcp:commons-dbcp:jar:1.4 from the shaded jar.
[INFO] Excluding javax.jdo:jdo-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding javax.transaction:jta:jar:1.1 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.3 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:tests:1.7.7 from the shaded jar.
[INFO] Excluding commons-httpclient:commons-httpclient:jar:3.1 from the shaded jar.
[INFO] Excluding org.apache.calcite:calcite-avatica:jar:1.2.0-incubating from the shaded jar.
[INFO] Excluding org.apache.calcite:calcite-core:jar:1.2.0-incubating from the shaded jar.
[INFO] Excluding org.apache.calcite:calcite-linq4j:jar:1.2.0-incubating from the shaded jar.
[INFO] Excluding net.hydromatic:eigenbase-properties:jar:1.1.5 from the shaded jar.
[INFO] Excluding org.codehaus.janino:commons-compiler:jar:2.7.6 from the shaded jar.
[INFO] Excluding org.apache.httpcomponents:httpclient:jar:4.3.2 from the shaded jar.
[INFO] Excluding org.apache.httpcomponents:httpcore:jar:4.3.2 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.10 from the shaded jar.
[INFO] Excluding joda-time:joda-time:jar:2.5 from the shaded jar.
[INFO] Excluding org.jodd:jodd-core:jar:3.5.2 from the shaded jar.
[INFO] Excluding com.google.code.findbugs:jsr305:jar:1.3.9 from the shaded jar.
[INFO] Excluding org.datanucleus:datanucleus-core:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.apache.thrift:libthrift:jar:0.9.2 from the shaded jar.
[INFO] Excluding org.apache.thrift:libfb303:jar:0.9.2 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-reflect:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.codehaus.janino:janino:jar:2.7.8 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\sql\hive\target\spark-hive_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\sql\hive\target\spark-hive_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\sql\hive\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\sql\hive\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\sql\hive\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-hive_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\sql\hive\target\spark-hive_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-hive_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\sql\hive\target\spark-hive_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project REPL 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-repl_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\repl\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-repl_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-repl_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\repl\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\repl\src\test\scala
[INFO]
[INFO] --- build-helper-maven-plugin:1.9.1:add-source (add-scala-sources) @ spark-repl_2.10 ---
[INFO] Source directory: D:\all\idea\spark-1.5.2FromGithub\repl\scala-2.10\src\main\scala added.
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-repl_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-repl_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\repl\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-repl_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 13 Scala sources to D:\all\idea\spark-1.5.2FromGithub\repl\target\scala-2.10\classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-repl_2.10 ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- build-helper-maven-plugin:1.9.1:add-test-source (add-scala-test-sources) @ spark-repl_2.10 ---
[INFO] Test Source directory: D:\all\idea\spark-1.5.2FromGithub\repl\scala-2.10\src\test\scala added.
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-repl_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\repl\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-repl_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-repl_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 2 Scala sources to D:\all\idea\spark-1.5.2FromGithub\repl\target\scala-2.10\test-classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-repl_2.10 ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-repl_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-repl_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-repl_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-repl_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\repl\target\spark-repl_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-repl_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\repl\target\spark-repl_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-repl_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-repl_2.10 ---
[INFO] Excluding org.apache.spark:spark-core_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:tests:1.7.7 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.twitter:chill_2.10:jar:0.5.0 from the shaded jar.
[INFO] Excluding com.esotericsoftware.kryo:kryo:jar:2.21 from the shaded jar.
[INFO] Excluding com.esotericsoftware.reflectasm:reflectasm:jar:shaded:1.07 from the shaded jar.
[INFO] Excluding com.esotericsoftware.minlog:minlog:jar:1.2 from the shaded jar.
[INFO] Excluding com.twitter:chill-java:jar:0.5.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math:jar:2.1 from the shaded jar.
[INFO] Excluding xmlenc:xmlenc:jar:0.52 from the shaded jar.
[INFO] Excluding commons-configuration:commons-configuration:jar:1.6 from the shaded jar.
[INFO] Excluding commons-collections:commons-collections:jar:3.2.1 from the shaded jar.
[INFO] Excluding commons-digester:commons-digester:jar:1.8 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils-core:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-auth:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-hdfs:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org.glassfish.external:management-api:jar:3.0.0-b012 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish:javax.servlet:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-json:jar:1.9 from the shaded jar.
[INFO] Excluding org.codehaus.jettison:jettison:jar:1.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-xc:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.sun.jersey.contribs:jersey-guice:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-annotations:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-launcher_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-common_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-network-shuffle_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-unsafe_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding net.java.dev.jets3t:jets3t:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.10 from the shaded jar.
[INFO] Excluding commons-httpclient:commons-httpclient:jar:3.1 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-recipes:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-framework:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.zookeeper:zookeeper:jar:3.4.5 from the shaded jar.
[INFO] Excluding jline:jline:jar:0.9.94 from the shaded jar.
[INFO] Excluding org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-lang3:jar:3.3.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math3:jar:3.4.1 from the shaded jar.
[INFO] Excluding com.google.code.findbugs:jsr305:jar:1.3.9 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.slf4j:jcl-over-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding log4j:log4j:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-log4j12:jar:1.7.10 from the shaded jar.
[INFO] Excluding com.ning:compress-lzf:jar:1.0.3 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding net.jpountz.lz4:lz4:jar:1.3.0 from the shaded jar.
[INFO] Excluding org.roaringbitmap:RoaringBitmap:jar:0.4.5 from the shaded jar.
[INFO] Excluding commons-net:commons-net:jar:2.2 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-remote_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-actor_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding com.typesafe:config:jar:1.2.1 from the shaded jar.
[INFO] Excluding io.netty:netty:jar:3.8.0.Final from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:2.5.0 from the shaded jar.
[INFO] Excluding org.uncommons.maths:uncommons-maths:jar:1.2.2a from the shaded jar.
[INFO] Excluding com.typesafe.akka:akka-slf4j_2.10:jar:2.3.11 from the shaded jar.
[INFO] Excluding org.json4s:json4s-jackson_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-core_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.json4s:json4s-ast_2.10:jar:3.2.10 from the shaded jar.
[INFO] Excluding org.scala-lang:scalap:jar:2.10.4 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-server:jar:1.9 from the shaded jar.
[INFO] Excluding asm:asm:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-core:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.mesos:mesos:jar:shaded-protobuf:0.21.1 from the shaded jar.
[INFO] Excluding io.netty:netty-all:jar:4.0.29.Final from the shaded jar.
[INFO] Excluding com.clearspring.analytics:stream:jar:2.7.0 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-core:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-jvm:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-json:jar:3.1.2 from the shaded jar.
[INFO] Excluding io.dropwizard.metrics:metrics-graphite:jar:3.1.2 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-databind:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-core:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.module:jackson-module-scala_2.10:jar:2.4.4 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.6 from the shaded jar.
[INFO] Excluding org.apache.ivy:ivy:jar:2.4.0 from the shaded jar.
[INFO] Excluding oro:oro:jar:2.0.8 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-client:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.4 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-client:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-hdfs:jar:0.7.1 from the shaded jar.
[INFO] Excluding org.tachyonproject:tachyon-underfs-local:jar:0.7.1 from the shaded jar.
[INFO] Excluding net.razorvine:pyrolite:jar:4.4 from the shaded jar.
[INFO] Excluding net.sf.py4j:py4j:jar:0.8.2.1 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-bagel_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-mllib_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-streaming_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-graphx_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding com.github.fommil.netlib:core:jar:1.1.2 from the shaded jar.
[INFO] Excluding net.sourceforge.f2j:arpack_combined_all:jar:0.1 from the shaded jar.
[INFO] Excluding org.scalanlp:breeze_2.10:jar:0.11.2 from the shaded jar.
[INFO] Excluding org.scalanlp:breeze-macros_2.10:jar:0.11.2 from the shaded jar.
[INFO] Excluding org.scalamacros:quasiquotes_2.10:jar:2.0.0-M8 from the shaded jar.
[INFO] Excluding net.sf.opencsv:opencsv:jar:2.3 from the shaded jar.
[INFO] Excluding com.github.rwl:jtransforms:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.spire-math:spire_2.10:jar:0.7.4 from the shaded jar.
[INFO] Excluding org.spire-math:spire-macros_2.10:jar:0.7.4 from the shaded jar.
[INFO] Excluding org.jpmml:pmml-model:jar:1.1.15 from the shaded jar.
[INFO] Excluding org.jpmml:pmml-agent:jar:1.1.15 from the shaded jar.
[INFO] Excluding org.jpmml:pmml-schema:jar:1.1.15 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-impl:jar:2.2.7 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-core:jar:2.2.7 from the shaded jar.
[INFO] Excluding javax.xml.bind:jaxb-api:jar:2.2.7 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-sql_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-catalyst_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.codehaus.janino:janino:jar:2.7.8 from the shaded jar.
[INFO] Excluding org.codehaus.janino:commons-compiler:jar:2.7.8 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-column:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-common:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-encoding:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-generator:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-hadoop:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-format:jar:2.3.0-incubating from the shaded jar.
[INFO] Excluding org.apache.parquet:parquet-jackson:jar:1.7.0 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-compiler:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-reflect:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.slf4j:jul-to-slf4j:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.objenesis:objenesis:jar:1.0 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-library:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.scala-lang:jline:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.fusesource.jansi:jansi:jar:1.4 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\repl\target\spark-repl_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\repl\target\spark-repl_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\repl\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\repl\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\repl\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\repl\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-repl_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\repl\target\spark-repl_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-repl_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\repl\target\spark-repl_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project Assembly 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-assembly_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\assembly\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-assembly_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-assembly_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\assembly\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\assembly\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-assembly_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-assembly_2.10 ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-assembly_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\assembly\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-assembly_2.10 ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-assembly_2.10 ---
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-assembly_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-assembly_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\assembly\target\spark-assembly_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-assembly_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-assembly_2.10 ---
[INFO] Including org.apache.spark:spark-core_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 in the shaded jar.
[INFO] Including org.apache.avro:avro-ipc:jar:1.7.7 in the shaded jar.
[INFO] Including org.apache.avro:avro:jar:1.7.7 in the shaded jar.
[INFO] Including org.apache.avro:avro-ipc:jar:tests:1.7.7 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-core-asl:jar:1.9.13 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 in the shaded jar.
[INFO] Including com.twitter:chill_2.10:jar:0.5.0 in the shaded jar.
[INFO] Including com.esotericsoftware.kryo:kryo:jar:2.21 in the shaded jar.
[INFO] Including com.esotericsoftware.reflectasm:reflectasm:jar:shaded:1.07 in the shaded jar.
[INFO] Including com.esotericsoftware.minlog:minlog:jar:1.2 in the shaded jar.
[INFO] Including org.objenesis:objenesis:jar:1.2 in the shaded jar.
[INFO] Including com.twitter:chill-java:jar:0.5.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-client:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-common:jar:2.2.0 in the shaded jar.
[INFO] Including commons-cli:commons-cli:jar:1.2 in the shaded jar.
[INFO] Including org.apache.commons:commons-math:jar:2.1 in the shaded jar.
[INFO] Including xmlenc:xmlenc:jar:0.52 in the shaded jar.
[INFO] Including commons-configuration:commons-configuration:jar:1.6 in the shaded jar.
[INFO] Including commons-collections:commons-collections:jar:3.2.1 in the shaded jar.
[INFO] Including commons-digester:commons-digester:jar:1.8 in the shaded jar.
[INFO] Including commons-beanutils:commons-beanutils:jar:1.7.0 in the shaded jar.
[INFO] Including commons-beanutils:commons-beanutils-core:jar:1.8.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-auth:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.commons:commons-compress:jar:1.4.1 in the shaded jar.
[INFO] Including org.tukaani:xz:jar:1.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-hdfs:jar:2.2.0 in the shaded jar.
[INFO] Including org.mortbay.jetty:jetty-util:jar:6.1.26 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 in the shaded jar.
[INFO] Including com.google.inject:guice:jar:3.0 in the shaded jar.
[INFO] Including javax.inject:javax.inject:jar:1 in the shaded jar.
[INFO] Including aopalliance:aopalliance:jar:1.0 in the shaded jar.
[INFO] Including com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 in the shaded jar.
[INFO] Including com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 in the shaded jar.
[INFO] Including javax.servlet:javax.servlet-api:jar:3.0.1 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-client:jar:1.9 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-grizzly2:jar:1.9 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-http:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-framework:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 in the shaded jar.
[INFO] Including org.glassfish.external:management-api:jar:3.0.0-b012 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish:javax.servlet:jar:3.1 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-json:jar:1.9 in the shaded jar.
[INFO] Including org.codehaus.jettison:jettison:jar:1.1 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-xc:jar:1.9.13 in the shaded jar.
[INFO] Including com.sun.jersey.contribs:jersey-guice:jar:1.9 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-annotations:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.spark:spark-launcher_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including org.apache.spark:spark-network-common_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including org.apache.spark:spark-network-shuffle_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including org.apache.spark:spark-unsafe_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including net.java.dev.jets3t:jets3t:jar:0.7.1 in the shaded jar.
[INFO] Including commons-codec:commons-codec:jar:1.10 in the shaded jar.
[INFO] Including commons-httpclient:commons-httpclient:jar:3.1 in the shaded jar.
[INFO] Including org.apache.curator:curator-recipes:jar:2.4.0 in the shaded jar.
[INFO] Including org.apache.curator:curator-framework:jar:2.4.0 in the shaded jar.
[INFO] Including org.apache.zookeeper:zookeeper:jar:3.4.5 in the shaded jar.
[INFO] Including jline:jline:jar:0.9.94 in the shaded jar.
[INFO] Including org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016 in the shaded jar.
[INFO] Including org.apache.commons:commons-lang3:jar:3.3.2 in the shaded jar.
[INFO] Including org.apache.commons:commons-math3:jar:3.4.1 in the shaded jar.
[INFO] Including com.google.code.findbugs:jsr305:jar:1.3.9 in the shaded jar.
[INFO] Including org.slf4j:slf4j-api:jar:1.7.10 in the shaded jar.
[INFO] Including org.slf4j:jul-to-slf4j:jar:1.7.10 in the shaded jar.
[INFO] Including org.slf4j:jcl-over-slf4j:jar:1.7.10 in the shaded jar.
[INFO] Including log4j:log4j:jar:1.2.17 in the shaded jar.
[INFO] Including org.slf4j:slf4j-log4j12:jar:1.7.10 in the shaded jar.
[INFO] Including com.ning:compress-lzf:jar:1.0.3 in the shaded jar.
[INFO] Including org.xerial.snappy:snappy-java:jar:1.1.1.7 in the shaded jar.
[INFO] Including net.jpountz.lz4:lz4:jar:1.3.0 in the shaded jar.
[INFO] Including org.roaringbitmap:RoaringBitmap:jar:0.4.5 in the shaded jar.
[INFO] Including commons-net:commons-net:jar:2.2 in the shaded jar.
[INFO] Including com.typesafe.akka:akka-remote_2.10:jar:2.3.11 in the shaded jar.
[INFO] Including com.typesafe.akka:akka-actor_2.10:jar:2.3.11 in the shaded jar.
[INFO] Including com.typesafe:config:jar:1.2.1 in the shaded jar.
[INFO] Including io.netty:netty:jar:3.8.0.Final in the shaded jar.
[INFO] Including com.google.protobuf:protobuf-java:jar:2.5.0 in the shaded jar.
[INFO] Including org.uncommons.maths:uncommons-maths:jar:1.2.2a in the shaded jar.
[INFO] Including com.typesafe.akka:akka-slf4j_2.10:jar:2.3.11 in the shaded jar.
[INFO] Including org.scala-lang:scala-library:jar:2.10.4 in the shaded jar.
[INFO] Including org.json4s:json4s-jackson_2.10:jar:3.2.10 in the shaded jar.
[INFO] Including org.json4s:json4s-core_2.10:jar:3.2.10 in the shaded jar.
[INFO] Including org.json4s:json4s-ast_2.10:jar:3.2.10 in the shaded jar.
[INFO] Including org.scala-lang:scalap:jar:2.10.4 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-server:jar:1.9 in the shaded jar.
[INFO] Including asm:asm:jar:3.1 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-core:jar:1.9 in the shaded jar.
[INFO] Including org.apache.mesos:mesos:jar:shaded-protobuf:0.21.1 in the shaded jar.
[INFO] Including io.netty:netty-all:jar:4.0.29.Final in the shaded jar.
[INFO] Including com.clearspring.analytics:stream:jar:2.7.0 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-core:jar:3.1.2 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-jvm:jar:3.1.2 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-json:jar:3.1.2 in the shaded jar.
[INFO] Including io.dropwizard.metrics:metrics-graphite:jar:3.1.2 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-databind:jar:2.4.4 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-core:jar:2.4.4 in the shaded jar.
[INFO] Including com.fasterxml.jackson.module:jackson-module-scala_2.10:jar:2.4.4 in the shaded jar.
[INFO] Including com.thoughtworks.paranamer:paranamer:jar:2.6 in the shaded jar.
[INFO] Including org.apache.ivy:ivy:jar:2.4.0 in the shaded jar.
[INFO] Including oro:oro:jar:2.0.8 in the shaded jar.
[INFO] Including org.tachyonproject:tachyon-client:jar:0.7.1 in the shaded jar.
[INFO] Including commons-lang:commons-lang:jar:2.6 in the shaded jar.
[INFO] Including commons-io:commons-io:jar:2.4 in the shaded jar.
[INFO] Including org.apache.curator:curator-client:jar:2.4.0 in the shaded jar.
[INFO] Including org.tachyonproject:tachyon-underfs-hdfs:jar:0.7.1 in the shaded jar.
[INFO] Including org.tachyonproject:tachyon-underfs-local:jar:0.7.1 in the shaded jar.
[INFO] Including net.razorvine:pyrolite:jar:4.4 in the shaded jar.
[INFO] Including net.sf.py4j:py4j:jar:0.8.2.1 in the shaded jar.
[INFO] Including org.apache.spark:spark-bagel_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including org.apache.spark:spark-mllib_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including org.scalanlp:breeze_2.10:jar:0.11.2 in the shaded jar.
[INFO] Including org.scalanlp:breeze-macros_2.10:jar:0.11.2 in the shaded jar.
[INFO] Including org.scalamacros:quasiquotes_2.10:jar:2.0.0-M8 in the shaded jar.
[INFO] Including net.sf.opencsv:opencsv:jar:2.3 in the shaded jar.
[INFO] Including com.github.rwl:jtransforms:jar:2.4.0 in the shaded jar.
[INFO] Including org.spire-math:spire_2.10:jar:0.7.4 in the shaded jar.
[INFO] Including org.spire-math:spire-macros_2.10:jar:0.7.4 in the shaded jar.
[INFO] Including org.jpmml:pmml-model:jar:1.1.15 in the shaded jar.
[INFO] Including org.jpmml:pmml-agent:jar:1.1.15 in the shaded jar.
[INFO] Including org.jpmml:pmml-schema:jar:1.1.15 in the shaded jar.
[INFO] Including com.sun.xml.bind:jaxb-impl:jar:2.2.7 in the shaded jar.
[INFO] Including com.sun.xml.bind:jaxb-core:jar:2.2.7 in the shaded jar.
[INFO] Including javax.xml.bind:jaxb-api:jar:2.2.7 in the shaded jar.
[INFO] Including org.apache.spark:spark-streaming_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including org.apache.spark:spark-graphx_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including com.github.fommil.netlib:core:jar:1.1.2 in the shaded jar.
[INFO] Including net.sourceforge.f2j:arpack_combined_all:jar:0.1 in the shaded jar.
[INFO] Including org.apache.spark:spark-sql_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including org.apache.spark:spark-catalyst_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including org.codehaus.janino:janino:jar:2.7.8 in the shaded jar.
[INFO] Including org.codehaus.janino:commons-compiler:jar:2.7.8 in the shaded jar.
[INFO] Including org.apache.parquet:parquet-column:jar:1.7.0 in the shaded jar.
[INFO] Including org.apache.parquet:parquet-common:jar:1.7.0 in the shaded jar.
[INFO] Including org.apache.parquet:parquet-encoding:jar:1.7.0 in the shaded jar.
[INFO] Including org.apache.parquet:parquet-generator:jar:1.7.0 in the shaded jar.
[INFO] Including org.apache.parquet:parquet-hadoop:jar:1.7.0 in the shaded jar.
[INFO] Including org.apache.parquet:parquet-format:jar:2.3.0-incubating in the shaded jar.
[INFO] Including org.apache.parquet:parquet-jackson:jar:1.7.0 in the shaded jar.
[INFO] Including org.apache.spark:spark-repl_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including org.scala-lang:scala-compiler:jar:2.10.4 in the shaded jar.
[INFO] Including org.scala-lang:scala-reflect:jar:2.10.4 in the shaded jar.
[INFO] Including org.scala-lang:jline:jar:2.10.4 in the shaded jar.
[INFO] Including org.fusesource.jansi:jansi:jar:1.4 in the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[WARNING] minlog-1.2.jar, kryo-2.21.jar define 2 overlapping classes:
[WARNING] - com.esotericsoftware.minlog.Log$ Logger
[WARNING] - com.esotericsoftware.minlog.Log
[WARNING] reflectasm-1.07-shaded.jar, kryo-2.21.jar define 23 overlapping classes:
[WARNING] - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.Opcodes
[WARNING] - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.Frame
[WARNING] - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.Label
[WARNING] - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.FieldWriter
[WARNING] - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.AnnotationVisitor
[WARNING] - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.FieldVisitor
[WARNING] - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.Item
[WARNING] - com.esotericsoftware.reflectasm.AccessClassLoader
[WARNING] - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.Edge
[WARNING] - com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.ClassVisitor
[WARNING] - 13 more...
[WARNING] hadoop-yarn-common-2.2.0.jar, hadoop-yarn-api-2.2.0.jar define 3 overlapping classes:
[WARNING] - org.apache.hadoop.yarn.factories.package-info
[WARNING] - org.apache.hadoop.yarn.util.package-info
[WARNING] - org.apache.hadoop.yarn.factory.providers.package-info
[WARNING] jansi-1.4.jar, jline-2.10.4.jar define 23 overlapping classes:
[WARNING] - org.fusesource.jansi.Ansi$Erase
[WARNING] - org.fusesource.jansi.Ansi
[WARNING] - org.fusesource.jansi.AnsiOutputStream
[WARNING] - org.fusesource.jansi.internal.CLibrary
[WARNING] - org.fusesource.jansi.Ansi$2
[WARNING] - org.fusesource.jansi.WindowsAnsiOutputStream
[WARNING] - org.fusesource.jansi.AnsiRenderer$Code
[WARNING] - org.fusesource.jansi.AnsiConsole
[WARNING] - org.fusesource.jansi.Ansi$Attribute
[WARNING] - org.fusesource.jansi.Ansi$Color
[WARNING] - 13 more...
[WARNING] spark-bagel_2.10-1.5.2.jar, spark-network-shuffle_2.10-1.5.2.jar, spark-core_2.10-1.5.2.jar, spark-streaming_2.10-1.5.2.jar, unused-1.0.0.jar, spark-repl_2.10-1.5.2.jar, spark-graphx_2.10-1.5.2.jar, spark-launcher_2.10-1.5.2.jar, spark-sql_2.10-1.5.2.jar, spark-mllib_2.10-1.5.2.jar, spark-network-common_2.10-1.5.2.jar, spark-catalyst_2.10-1.5.2.jar, spark-unsafe_2.10-1.5.2.jar define 1 overlapping classes:
[WARNING] - org.apache.spark.unused.UnusedStubClass
[WARNING] commons-beanutils-core-1.8.0.jar, commons-beanutils-1.7.0.jar, commons-collections-3.2.1.jar define 10 overlapping classes:
[WARNING] - org.apache.commons.collections.FastHashMap$EntrySet
[WARNING] - org.apache.commons.collections.ArrayStack
[WARNING] - org.apache.commons.collections.FastHashMap$1
[WARNING] - org.apache.commons.collections.FastHashMap$KeySet
[WARNING] - org.apache.commons.collections.FastHashMap$CollectionView
[WARNING] - org.apache.commons.collections.BufferUnderflowException
[WARNING] - org.apache.commons.collections.Buffer
[WARNING] - org.apache.commons.collections.FastHashMap$CollectionView$CollectionViewIterator
[WARNING] - org.apache.commons.collections.FastHashMap$Values
[WARNING] - org.apache.commons.collections.FastHashMap
[WARNING] commons-beanutils-core-1.8.0.jar, commons-beanutils-1.7.0.jar define 82 overlapping classes:
[WARNING] - org.apache.commons.beanutils.WrapDynaBean
[WARNING] - org.apache.commons.beanutils.Converter
[WARNING] - org.apache.commons.beanutils.converters.IntegerConverter
[WARNING] - org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
[WARNING] - org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
[WARNING] - org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
[WARNING] - org.apache.commons.beanutils.converters.ShortConverter
[WARNING] - org.apache.commons.beanutils.converters.StringArrayConverter
[WARNING] - org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
[WARNING] - org.apache.commons.beanutils.LazyDynaClass
[WARNING] - 72 more...
[WARNING] objenesis-1.2.jar, kryo-2.21.jar define 32 overlapping classes:
[WARNING] - org.objenesis.Objenesis
[WARNING] - org.objenesis.strategy.StdInstantiatorStrategy
[WARNING] - org.objenesis.instantiator.basic.ObjectStreamClassInstantiator
[WARNING] - org.objenesis.instantiator.sun.SunReflectionFactorySerializationInstantiator
[WARNING] - org.objenesis.instantiator.perc.PercSerializationInstantiator
[WARNING] - org.objenesis.instantiator.NullInstantiator
[WARNING] - org.objenesis.instantiator.jrockit.JRockitLegacyInstantiator
[WARNING] - org.objenesis.instantiator.gcj.GCJInstantiatorBase
[WARNING] - org.objenesis.ObjenesisException
[WARNING] - org.objenesis.instantiator.basic.ObjectInputStreamInstantiator$MockStream
[WARNING] - 22 more...
[WARNING] javax.servlet-api-3.0.1.jar, javax.servlet-3.0.0.v201112011016.jar, javax.servlet-3.1.jar define 74 overlapping classes:
[WARNING] - javax.servlet.ServletRequestWrapper
[WARNING] - javax.servlet.Registration
[WARNING] - javax.servlet.ServletContextAttributeListener
[WARNING] - javax.servlet.http.HttpServlet
[WARNING] - javax.servlet.http.HttpSessionAttributeListener
[WARNING] - javax.servlet.ServletRegistration$Dynamic
[WARNING] - javax.servlet.FilterRegistration
[WARNING] - javax.servlet.http.HttpServletRequest
[WARNING] - javax.servlet.annotation.WebFilter
[WARNING] - javax.servlet.ServletResponse
[WARNING] - 64 more...
[WARNING] maven-shade-plugin has detected that some class files are
[WARNING] present in two or more JARs. When this happens, only one
[WARNING] single version of the class is copied to the uber jar.
[WARNING] Usually this is not harmful and you can skip these warnings,
[WARNING] otherwise try to manually exclude artifacts based on
[WARNING] mvn dependency:tree -Ddetail=true and the above output.
[WARNING] See http://docs.codehaus.org/display/MAVENUSER/Shade+Plugin
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-assembly_2.10 ---
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-assembly_2.10 ---
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (default) @ spark-assembly_2.10 ---
[INFO] Executing tasks
main:
[INFO] Executed tasks
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project External Twitter 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-streaming-twitter_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\external\twitter\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-streaming-twitter_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-streaming-twitter_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\external\twitter\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\external\twitter\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-streaming-twitter_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-streaming-twitter_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\external\twitter\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-streaming-twitter_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 3 Scala sources and 1 Java source to D:\all\idea\spark-1.5.2FromGithub\external\twitter\target\scala-2.10\classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-streaming-twitter_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to D:\all\idea\spark-1.5.2FromGithub\external\twitter\target\scala-2.10\classes
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-streaming-twitter_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\external\twitter\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-streaming-twitter_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-streaming-twitter_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 1 Scala source and 2 Java sources to D:\all\idea\spark-1.5.2FromGithub\external\twitter\target\scala-2.10\test-classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-streaming-twitter_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 2 source files to D:\all\idea\spark-1.5.2FromGithub\external\twitter\target\scala-2.10\test-classes
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-streaming-twitter_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-streaming-twitter_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-streaming-twitter_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-streaming-twitter_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\twitter\target\spark-streaming-twitter_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-streaming-twitter_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\twitter\target\spark-streaming-twitter_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-streaming-twitter_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-streaming-twitter_2.10 ---
[INFO] Excluding org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:tests:1.7.7 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math:jar:2.1 from the shaded jar.
[INFO] Excluding xmlenc:xmlenc:jar:0.52 from the shaded jar.
[INFO] Excluding commons-configuration:commons-configuration:jar:1.6 from the shaded jar.
[INFO] Excluding commons-collections:commons-collections:jar:3.2.1 from the shaded jar.
[INFO] Excluding commons-digester:commons-digester:jar:1.8 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils-core:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-auth:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-hdfs:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org.glassfish.external:management-api:jar:3.0.0-b012 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish:javax.servlet:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-json:jar:1.9 from the shaded jar.
[INFO] Excluding org.codehaus.jettison:jettison:jar:1.1 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 from the shaded jar.
[INFO] Excluding javax.xml.bind:jaxb-api:jar:2.2.2 from the shaded jar.
[INFO] Excluding javax.activation:activation:jar:1.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-xc:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.sun.jersey.contribs:jersey-guice:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-annotations:jar:2.2.0 from the shaded jar.
[INFO] Excluding net.java.dev.jets3t:jets3t:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.10 from the shaded jar.
[INFO] Excluding commons-httpclient:commons-httpclient:jar:3.1 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-recipes:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-framework:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.zookeeper:zookeeper:jar:3.4.5 from the shaded jar.
[INFO] Excluding jline:jline:jar:0.9.94 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:1.7.10 from the shaded jar.
[INFO] Excluding log4j:log4j:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-log4j12:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding commons-net:commons-net:jar:2.2 from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:2.5.0 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-server:jar:1.9 from the shaded jar.
[INFO] Excluding asm:asm:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-core:jar:1.9 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.6 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.4 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-client:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.twitter4j:twitter4j-stream:jar:3.0.3 from the shaded jar.
[INFO] Excluding org.twitter4j:twitter4j-core:jar:3.0.3 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\external\twitter\target\spark-streaming-twitter_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\external\twitter\target\spark-streaming-twitter_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\twitter\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\twitter\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\twitter\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\twitter\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\twitter\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-streaming-twitter_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\twitter\target\spark-streaming-twitter_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-streaming-twitter_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\twitter\target\spark-streaming-twitter_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project External Flume Sink 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-streaming-flume-sink_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-streaming-flume-sink_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-streaming-flume-sink_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\src\test\scala
[INFO]
[INFO] --- avro-maven-plugin:1.7.7:idl-protocol (default) @ spark-streaming-flume-sink_2.10 ---
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-streaming-flume-sink_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-streaming-flume-sink_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-streaming-flume-sink_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 6 Scala sources and 3 Java sources to D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target\scala-2.10\classes...
[WARNING] Class org.jboss.netty.channel.ChannelFactory not found - continuing with a stub.
[WARNING] Class org.jboss.netty.channel.ChannelFactory not found - continuing with a stub.
[WARNING] Class org.jboss.netty.channel.ChannelPipelineFactory not found - continuing with a stub.
[WARNING] Class org.jboss.netty.handler.execution.ExecutionHandler not found - continuing with a stub.
[WARNING] Class org.jboss.netty.channel.ChannelFactory not found - continuing with a stub.
[WARNING] Class org.jboss.netty.handler.execution.ExecutionHandler not found - continuing with a stub.
[WARNING] Class org.jboss.netty.channel.group.ChannelGroup not found - continuing with a stub.
[WARNING] Class com.google.common.collect.ImmutableMap not found - continuing with a stub.
[WARNING] Class com.google.common.collect.ImmutableMap not found - continuing with a stub.
[WARNING] Class com.google.common.collect.ImmutableMap not found - continuing with a stub.
[WARNING] Class com.google.common.collect.ImmutableMap not found - continuing with a stub.
[WARNING] 11 warnings found
[WARNING] D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target\scala-2.10\src_managed\main\compiled_avro\org\apache\spark\streaming\flume\sink\EventBatch.java:243: ����: [unchecked] δ������ת��
[WARNING] record.events = fieldSetFlags()[2] ? this.events : (java.util.List) defaultValue(fields()[2]);
[WARNING] ^
[WARNING] ��Ҫ: List
[WARNING] �ҵ�: Object
[WARNING] D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target\scala-2.10\src_managed\main\compiled_avro\org\apache\spark\streaming\flume\sink\SparkSinkEvent.java:188: ����: [unchecked] δ������ת��
[WARNING] record.headers = fieldSetFlags()[0] ? this.headers : (java.util.Map) defaultValue(fields()[0]);
[WARNING] ^
[WARNING] ��Ҫ: Map
[WARNING] �ҵ�: Object
[WARNING] 2 ������
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-streaming-flume-sink_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 3 source files to D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target\scala-2.10\classes
[WARNING] D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target\scala-2.10\src_managed\main\compiled_avro\org\apache\spark\streaming\flume\sink\SparkSinkEvent.java:[188,136] ����: [unchecked] δ������ת��
[WARNING] ��Ҫ: Map
�ҵ�: Object
D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target\scala-2.10\src_managed\main\compiled_avro\org\apache\spark\streaming\flume\sink\EventBatch.java:[243,142] ����: [unchecked] δ������ת��
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-streaming-flume-sink_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-streaming-flume-sink_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-streaming-flume-sink_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 1 Scala source to D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target\scala-2.10\test-classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-streaming-flume-sink_2.10 ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-streaming-flume-sink_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-streaming-flume-sink_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-streaming-flume-sink_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-streaming-flume-sink_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target\spark-streaming-flume-sink_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-streaming-flume-sink_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target\spark-streaming-flume-sink_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-streaming-flume-sink_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-streaming-flume-sink_2.10 ---
[INFO] Excluding org.apache.flume:flume-ng-sdk:jar:1.6.0 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.3 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.flume:flume-ng-core:jar:1.6.0 from the shaded jar.
[INFO] Excluding org.apache.flume:flume-ng-configuration:jar:1.6.0 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:1.7.10 from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.1 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.10 from the shaded jar.
[INFO] Excluding log4j:log4j:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-log4j12:jar:1.7.10 from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding joda-time:joda-time:jar:2.5 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty:jar:6.1.26 from the shaded jar.
[INFO] Excluding com.google.code.gson:gson:jar:2.2.2 from the shaded jar.
[INFO] Excluding org.apache.mina:mina-core:jar:2.0.4 from the shaded jar.
[INFO] Excluding org.scala-lang:scala-library:jar:2.10.4 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target\spark-streaming-flume-sink_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target\spark-streaming-flume-sink_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-streaming-flume-sink_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target\spark-streaming-flume-sink_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-streaming-flume-sink_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\flume-sink\target\spark-streaming-flume-sink_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project External Flume 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-streaming-flume_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\external\flume\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-streaming-flume_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-streaming-flume_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\external\flume\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\external\flume\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-streaming-flume_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-streaming-flume_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\external\flume\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-streaming-flume_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 8 Scala sources and 1 Java source to D:\all\idea\spark-1.5.2FromGithub\external\flume\target\scala-2.10\classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-streaming-flume_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to D:\all\idea\spark-1.5.2FromGithub\external\flume\target\scala-2.10\classes
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-streaming-flume_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\external\flume\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-streaming-flume_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-streaming-flume_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 3 Scala sources and 3 Java sources to D:\all\idea\spark-1.5.2FromGithub\external\flume\target\scala-2.10\test-classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-streaming-flume_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 3 source files to D:\all\idea\spark-1.5.2FromGithub\external\flume\target\scala-2.10\test-classes
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-streaming-flume_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-streaming-flume_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-streaming-flume_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-streaming-flume_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\flume\target\spark-streaming-flume_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-streaming-flume_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\flume\target\spark-streaming-flume_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-streaming-flume_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-streaming-flume_2.10 ---
[INFO] Excluding org.scala-lang:scala-library:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:tests:1.7.7 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math:jar:2.1 from the shaded jar.
[INFO] Excluding xmlenc:xmlenc:jar:0.52 from the shaded jar.
[INFO] Excluding commons-configuration:commons-configuration:jar:1.6 from the shaded jar.
[INFO] Excluding commons-collections:commons-collections:jar:3.2.1 from the shaded jar.
[INFO] Excluding commons-digester:commons-digester:jar:1.8 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils-core:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-auth:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-hdfs:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org.glassfish.external:management-api:jar:3.0.0-b012 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish:javax.servlet:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-json:jar:1.9 from the shaded jar.
[INFO] Excluding org.codehaus.jettison:jettison:jar:1.1 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 from the shaded jar.
[INFO] Excluding javax.xml.bind:jaxb-api:jar:2.2.2 from the shaded jar.
[INFO] Excluding javax.activation:activation:jar:1.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-xc:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.sun.jersey.contribs:jersey-guice:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-annotations:jar:2.2.0 from the shaded jar.
[INFO] Excluding net.java.dev.jets3t:jets3t:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-httpclient:commons-httpclient:jar:3.1 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-recipes:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-framework:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.zookeeper:zookeeper:jar:3.4.5 from the shaded jar.
[INFO] Excluding jline:jline:jar:0.9.94 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:1.7.10 from the shaded jar.
[INFO] Excluding log4j:log4j:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-log4j12:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding commons-net:commons-net:jar:2.2 from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:2.5.0 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-server:jar:1.9 from the shaded jar.
[INFO] Excluding asm:asm:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-core:jar:1.9 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.6 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-client:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.spark:spark-streaming-flume-sink_2.10:jar:1.5.2 from the shaded jar.
[INFO] Excluding org.apache.flume:flume-ng-core:jar:1.6.0 from the shaded jar.
[INFO] Excluding org.apache.flume:flume-ng-configuration:jar:1.6.0 from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.1 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.10 from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding joda-time:joda-time:jar:2.5 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty:jar:6.1.26 from the shaded jar.
[INFO] Excluding com.google.code.gson:gson:jar:2.2.2 from the shaded jar.
[INFO] Excluding org.apache.mina:mina-core:jar:2.0.4 from the shaded jar.
[INFO] Excluding org.apache.flume:flume-ng-sdk:jar:1.6.0 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\external\flume\target\spark-streaming-flume_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\external\flume\target\spark-streaming-flume_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\flume\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\flume\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-streaming-flume_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\flume\target\spark-streaming-flume_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-streaming-flume_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\flume\target\spark-streaming-flume_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project External Flume Assembly 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-streaming-flume-assembly_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-streaming-flume-assembly_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-streaming-flume-assembly_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-streaming-flume-assembly_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-streaming-flume-assembly_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-streaming-flume-assembly_2.10 ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-streaming-flume-assembly_2.10 ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-streaming-flume-assembly_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-streaming-flume-assembly_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\src\test\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-streaming-flume-assembly_2.10 ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-streaming-flume-assembly_2.10 ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-streaming-flume-assembly_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-streaming-flume-assembly_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-streaming-flume-assembly_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-streaming-flume-assembly_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\target\spark-streaming-flume-assembly_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-streaming-flume-assembly_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\target\spark-streaming-flume-assembly_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-streaming-flume-assembly_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-streaming-flume-assembly_2.10 ---
[INFO] Including org.apache.spark:spark-streaming-flume_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including org.apache.spark:spark-streaming-flume-sink_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including org.apache.flume:flume-ng-core:jar:1.6.0 in the shaded jar.
[INFO] Including org.apache.flume:flume-ng-configuration:jar:1.6.0 in the shaded jar.
[INFO] Including commons-io:commons-io:jar:2.1 in the shaded jar.
[INFO] Including commons-cli:commons-cli:jar:1.2 in the shaded jar.
[INFO] Including joda-time:joda-time:jar:2.5 in the shaded jar.
[INFO] Including com.google.code.gson:gson:jar:2.2.2 in the shaded jar.
[INFO] Including org.apache.mina:mina-core:jar:2.0.4 in the shaded jar.
[INFO] Including org.apache.flume:flume-ng-sdk:jar:1.6.0 in the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[WARNING] unused-1.0.0.jar, spark-streaming-flume_2.10-1.5.2.jar, spark-streaming-flume-sink_2.10-1.5.2.jar define 1 overlapping classes:
[WARNING] - org.apache.spark.unused.UnusedStubClass
[WARNING] maven-shade-plugin has detected that some class files are
[WARNING] present in two or more JARs. When this happens, only one
[WARNING] single version of the class is copied to the uber jar.
[WARNING] Usually this is not harmful and you can skip these warnings,
[WARNING] otherwise try to manually exclude artifacts based on
[WARNING] mvn dependency:tree -Ddetail=true and the above output.
[WARNING] See http://docs.codehaus.org/display/MAVENUSER/Shade+Plugin
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\target\spark-streaming-flume-assembly_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\target\spark-streaming-flume-assembly_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-streaming-flume-assembly_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\target\spark-streaming-flume-assembly_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-streaming-flume-assembly_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\flume-assembly\target\spark-streaming-flume-assembly_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project External MQTT 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-streaming-mqtt_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\external\mqtt\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-streaming-mqtt_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-streaming-mqtt_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\external\mqtt\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\external\mqtt\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-streaming-mqtt_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-streaming-mqtt_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\external\mqtt\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-streaming-mqtt_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 3 Scala sources and 1 Java source to D:\all\idea\spark-1.5.2FromGithub\external\mqtt\target\scala-2.10\classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-streaming-mqtt_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to D:\all\idea\spark-1.5.2FromGithub\external\mqtt\target\scala-2.10\classes
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-streaming-mqtt_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\external\mqtt\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-streaming-mqtt_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-streaming-mqtt_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 2 Scala sources and 2 Java sources to D:\all\idea\spark-1.5.2FromGithub\external\mqtt\target\scala-2.10\test-classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-streaming-mqtt_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 2 source files to D:\all\idea\spark-1.5.2FromGithub\external\mqtt\target\scala-2.10\test-classes
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-streaming-mqtt_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-streaming-mqtt_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-streaming-mqtt_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-streaming-mqtt_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\mqtt\target\spark-streaming-mqtt_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-streaming-mqtt_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\mqtt\target\spark-streaming-mqtt_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-streaming-mqtt_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-streaming-mqtt_2.10 ---
[INFO] Excluding org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:tests:1.7.7 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math:jar:2.1 from the shaded jar.
[INFO] Excluding xmlenc:xmlenc:jar:0.52 from the shaded jar.
[INFO] Excluding commons-configuration:commons-configuration:jar:1.6 from the shaded jar.
[INFO] Excluding commons-collections:commons-collections:jar:3.2.1 from the shaded jar.
[INFO] Excluding commons-digester:commons-digester:jar:1.8 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils-core:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-auth:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-hdfs:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org.glassfish.external:management-api:jar:3.0.0-b012 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish:javax.servlet:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-json:jar:1.9 from the shaded jar.
[INFO] Excluding org.codehaus.jettison:jettison:jar:1.1 from the shaded jar.
[INFO] Excluding com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 from the shaded jar.
[INFO] Excluding javax.xml.bind:jaxb-api:jar:2.2.2 from the shaded jar.
[INFO] Excluding javax.activation:activation:jar:1.1 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-xc:jar:1.9.13 from the shaded jar.
[INFO] Excluding com.sun.jersey.contribs:jersey-guice:jar:1.9 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-annotations:jar:2.2.0 from the shaded jar.
[INFO] Excluding net.java.dev.jets3t:jets3t:jar:0.7.1 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.10 from the shaded jar.
[INFO] Excluding commons-httpclient:commons-httpclient:jar:3.1 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-recipes:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-framework:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.apache.zookeeper:zookeeper:jar:3.4.5 from the shaded jar.
[INFO] Excluding jline:jline:jar:0.9.94 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:1.7.10 from the shaded jar.
[INFO] Excluding log4j:log4j:jar:1.2.17 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-log4j12:jar:1.7.10 from the shaded jar.
[INFO] Excluding org.xerial.snappy:snappy-java:jar:1.1.1.7 from the shaded jar.
[INFO] Excluding commons-net:commons-net:jar:2.2 from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:2.5.0 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-server:jar:1.9 from the shaded jar.
[INFO] Excluding asm:asm:jar:3.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-core:jar:1.9 from the shaded jar.
[INFO] Excluding com.thoughtworks.paranamer:paranamer:jar:2.6 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.4 from the shaded jar.
[INFO] Excluding org.apache.curator:curator-client:jar:2.4.0 from the shaded jar.
[INFO] Excluding org.eclipse.paho:org.eclipse.paho.client.mqttv3:jar:1.0.1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\external\mqtt\target\spark-streaming-mqtt_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\external\mqtt\target\spark-streaming-mqtt_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\mqtt\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\mqtt\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\mqtt\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\mqtt\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\mqtt\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-streaming-mqtt_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\mqtt\target\spark-streaming-mqtt_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-streaming-mqtt_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\mqtt\target\spark-streaming-mqtt_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] --- maven-assembly-plugin:2.5.5:single (test-jar-with-dependencies) @ spark-streaming-mqtt_2.10 ---
[INFO] Reading assembly descriptor: src/main/assembly/assembly.xml
[ERROR] OS=Windows and the assembly descriptor contains a *nix-specific root-relative-reference (starting with slash) /
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\mqtt\target\scala-2.10\spark-streaming-mqtt-test-1.5.2.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project External MQTT Assembly 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\external\mqtt-assembly\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\external\mqtt-assembly\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\external\mqtt-assembly\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\external\mqtt-assembly\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\external\mqtt-assembly\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\external\mqtt-assembly\src\test\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\mqtt-assembly\target\spark-streaming-mqtt-assembly_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\mqtt-assembly\target\spark-streaming-mqtt-assembly_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] Including org.apache.spark:spark-streaming-mqtt_2.10:jar:1.5.2 in the shaded jar.
[INFO] Including org.eclipse.paho:org.eclipse.paho.client.mqttv3:jar:1.0.1 in the shaded jar.
[INFO] Including com.thoughtworks.paranamer:paranamer:jar:2.6 in the shaded jar.
[INFO] Including commons-io:commons-io:jar:2.1 in the shaded jar.
[INFO] Including org.apache.avro:avro:jar:1.7.7 in the shaded jar.
[INFO] Including org.apache.commons:commons-compress:jar:1.4.1 in the shaded jar.
[INFO] Including org.tukaani:xz:jar:1.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 in the shaded jar.
[INFO] Including com.google.inject:guice:jar:3.0 in the shaded jar.
[INFO] Including javax.inject:javax.inject:jar:1 in the shaded jar.
[INFO] Including aopalliance:aopalliance:jar:1.0 in the shaded jar.
[INFO] Including com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 in the shaded jar.
[INFO] Including com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 in the shaded jar.
[INFO] Including javax.servlet:javax.servlet-api:jar:3.0.1 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-client:jar:1.9 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-grizzly2:jar:1.9 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-http:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-framework:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 in the shaded jar.
[INFO] Including org.glassfish.external:management-api:jar:3.0.0-b012 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-http-server:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-rcm:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2 in the shaded jar.
[INFO] Including org.glassfish:javax.servlet:jar:3.1 in the shaded jar.
[INFO] Including com.sun.jersey:jersey-json:jar:1.9 in the shaded jar.
[INFO] Including org.codehaus.jettison:jettison:jar:1.1 in the shaded jar.
[INFO] Including com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 in the shaded jar.
[INFO] Including javax.xml.bind:jaxb-api:jar:2.2.2 in the shaded jar.
[INFO] Including javax.activation:activation:jar:1.1 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-jaxrs:jar:1.9.13 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-xc:jar:1.9.13 in the shaded jar.
[INFO] Including com.sun.jersey.contribs:jersey-guice:jar:1.9 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-api:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.hadoop:hadoop-yarn-common:jar:2.2.0 in the shaded jar.
[INFO] Including org.apache.avro:avro-ipc:jar:1.7.7 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-core-asl:jar:1.9.13 in the shaded jar.
[INFO] Including org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 in the shaded jar.
[INFO] Including org.spark-project.spark:unused:jar:1.0.0 in the shaded jar.
[WARNING] unused-1.0.0.jar, spark-streaming-mqtt_2.10-1.5.2.jar define 1 overlapping classes:
[WARNING] - org.apache.spark.unused.UnusedStubClass
[WARNING] hadoop-yarn-common-2.2.0.jar, hadoop-yarn-api-2.2.0.jar define 3 overlapping classes:
[WARNING] - org.apache.hadoop.yarn.factories.package-info
[WARNING] - org.apache.hadoop.yarn.util.package-info
[WARNING] - org.apache.hadoop.yarn.factory.providers.package-info
[WARNING] javax.servlet-api-3.0.1.jar, javax.servlet-3.1.jar define 74 overlapping classes:
[WARNING] - javax.servlet.ServletRequestWrapper
[WARNING] - javax.servlet.Registration
[WARNING] - javax.servlet.ServletContextAttributeListener
[WARNING] - javax.servlet.http.HttpSessionAttributeListener
[WARNING] - javax.servlet.ServletRegistration$Dynamic
[WARNING] - javax.servlet.http.HttpServlet
[WARNING] - javax.servlet.FilterRegistration
[WARNING] - javax.servlet.http.HttpServletRequest
[WARNING] - javax.servlet.annotation.WebFilter
[WARNING] - javax.servlet.ServletResponse
[WARNING] - 64 more...
[WARNING] maven-shade-plugin has detected that some class files are
[WARNING] present in two or more JARs. When this happens, only one
[WARNING] single version of the class is copied to the uber jar.
[WARNING] Usually this is not harmful and you can skip these warnings,
[WARNING] otherwise try to manually exclude artifacts based on
[WARNING] mvn dependency:tree -Ddetail=true and the above output.
[WARNING] See http://docs.codehaus.org/display/MAVENUSER/Shade+Plugin
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\all\idea\spark-1.5.2FromGithub\external\mqtt-assembly\target\spark-streaming-mqtt-assembly_2.10-1.5.2.jar with D:\all\idea\spark-1.5.2FromGithub\external\mqtt-assembly\target\spark-streaming-mqtt-assembly_2.10-1.5.2-shaded.jar
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\mqtt-assembly\dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: D:\all\idea\spark-1.5.2FromGithub\external\mqtt-assembly\dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (create-source-jar) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\mqtt-assembly\target\spark-streaming-mqtt-assembly_2.10-1.5.2-sources.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:test-jar-no-fork (create-source-jar) @ spark-streaming-mqtt-assembly_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\mqtt-assembly\target\spark-streaming-mqtt-assembly_2.10-1.5.2-test-sources.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spark Project External ZeroMQ 1.5.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ spark-streaming-zeromq_2.10 ---
[INFO] Deleting D:\all\idea\spark-1.5.2FromGithub\external\zeromq\target
[INFO]
[INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-versions) @ spark-streaming-zeromq_2.10 ---
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:add-source (eclipse-add-source) @ spark-streaming-zeromq_2.10 ---
[INFO] Add Source directory: D:\all\idea\spark-1.5.2FromGithub\external\zeromq\src\main\scala
[INFO] Add Test Source directory: D:\all\idea\spark-1.5.2FromGithub\external\zeromq\src\test\scala
[INFO]
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ spark-streaming-zeromq_2.10 ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spark-streaming-zeromq_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\all\idea\spark-1.5.2FromGithub\external\zeromq\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:compile (scala-compile-first) @ spark-streaming-zeromq_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 3 Scala sources and 1 Java source to D:\all\idea\spark-1.5.2FromGithub\external\zeromq\target\scala-2.10\classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ spark-streaming-zeromq_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to D:\all\idea\spark-1.5.2FromGithub\external\zeromq\target\scala-2.10\classes
[INFO]
[INFO] --- maven-antrun-plugin:1.8:run (create-tmp-dir) @ spark-streaming-zeromq_2.10 ---
[INFO] Executing tasks
main:
[mkdir] Created dir: D:\all\idea\spark-1.5.2FromGithub\external\zeromq\target\tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spark-streaming-zeromq_2.10 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 3 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.2:testCompile (scala-test-compile-first) @ spark-streaming-zeromq_2.10 ---
[WARNING] Zinc server is not available at port 3030 - reverting to normal incremental compile
[INFO] Using incremental compilation
[INFO] Compiling 1 Scala source and 2 Java sources to D:\all\idea\spark-1.5.2FromGithub\external\zeromq\target\scala-2.10\test-classes...
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ spark-streaming-zeromq_2.10 ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 2 source files to D:\all\idea\spark-1.5.2FromGithub\external\zeromq\target\scala-2.10\test-classes
[INFO]
[INFO] --- maven-dependency-plugin:2.10:build-classpath (default) @ spark-streaming-zeromq_2.10 ---
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ spark-streaming-zeromq_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-streaming-zeromq_2.10 ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.6:test-jar (prepare-test-jar) @ spark-streaming-zeromq_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\zeromq\target\spark-streaming-zeromq_2.10-1.5.2-tests.jar
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ spark-streaming-zeromq_2.10 ---
[INFO] Building jar: D:\all\idea\spark-1.5.2FromGithub\external\zeromq\target\spark-streaming-zeromq_2.10-1.5.2.jar
[INFO]
[INFO] --- maven-site-plugin:3.3:attach-descriptor (attach-descriptor) @ spark-streaming-zeromq_2.10 ---
[INFO]
[INFO] --- maven-shade-plugin:2.4.1:shade (default) @ spark-streaming-zeromq_2.10 ---
[INFO] Excluding org.scala-lang:scala-library:jar:2.10.4 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-mapred:jar:hadoop2:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro:jar:1.7.7 from the shaded jar.
[INFO] Excluding org.apache.avro:avro-ipc:jar:tests:1.7.7 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-core-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding commons-cli:commons-cli:jar:1.2 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-math:jar:2.1 from the shaded jar.
[INFO] Excluding xmlenc:xmlenc:jar:0.52 from the shaded jar.
[INFO] Excluding commons-configuration:commons-configuration:jar:1.6 from the shaded jar.
[INFO] Excluding commons-collections:commons-collections:jar:3.2.1 from the shaded jar.
[INFO] Excluding commons-digester:commons-digester:jar:1.8 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils:jar:1.7.0 from the shaded jar.
[INFO] Excluding commons-beanutils:commons-beanutils-core:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-auth:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-compress:jar:1.4.1 from the shaded jar.
[INFO] Excluding org.tukaani:xz:jar:1.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-hdfs:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.mortbay.jetty:jetty-util:jar:6.1.26 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0 from the shaded jar.
[INFO] Excluding org.apache.hadoop:hadoop-yarn-client:jar:2.2.0 from the shaded jar.
[INFO] Excluding com.google.inject:guice:jar:3.0 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding aopalliance:aopalliance:jar:1.0 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9 from the shaded jar.
[INFO] Excluding javax.servlet:javax.servlet-api:jar:3.0.1 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-client:jar:1.9 from the shaded jar.
[INFO] Excluding com.sun.jersey:jersey-grizzly2:jar:1.9 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-http:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.grizzly:grizzly-framework:jar:2.1.2 from the shaded jar.
[INFO] Excluding org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023 from the shaded jar.
[INFO] Excluding org