Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/maven/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java Maven项目构建在测试编译阶段失败,出现NoClassDefFoundError和其他错误_Java_Maven_Java 8 - Fatal编程技术网

Java Maven项目构建在测试编译阶段失败,出现NoClassDefFoundError和其他错误

Java Maven项目构建在测试编译阶段失败,出现NoClassDefFoundError和其他错误,java,maven,java-8,Java,Maven,Java 8,我完全迷失在无助的Maven踪迹中mvn compile非常成功,但是有了mvn包,测试(在这个特定的快速入门教程中)失败了,NoClassDefFoundError,NoSuchMethodError在test compile阶段(使用-DskipTests=true选项发出它成功工作的阶段)Maven构建过程的一部分。此外,项目在运行时会因这些错误而失败 我在自己的项目中遇到了这个问题,为了从原型中完成正确的mvn安装和项目初始化,我最终通过了一个bear bone教程来完成这个过程 在远程

我完全迷失在无助的Maven踪迹中
mvn compile
非常成功,但是有了
mvn包
,测试(在这个特定的快速入门教程中)失败了,
NoClassDefFoundError
NoSuchMethodError
test compile
阶段(使用
-DskipTests=true
选项发出它成功工作的阶段)Maven构建过程的一部分。此外,项目在运行时会因这些错误而失败

我在自己的项目中遇到了这个问题,为了从原型中完成正确的mvn安装和项目初始化,我最终通过了一个bear bone教程来完成这个过程

在远程机器上编译和打包时(操作系统是Ubuntu 16.04,本地是OS X),它会正常打包和编译。使用本地机器,而不是

跟踪:

[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building first-dataflow 0.1
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ first-dataflow ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/user/projects/personal/first-dataflow/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:compile (default-compile) @ first-dataflow ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ first-dataflow ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/user/projects/personal/first-dataflow/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:testCompile (default-testCompile) @ first-dataflow ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-surefire-plugin:2.20:test (default-test) @ first-dataflow ---
[INFO]
[INFO] -------------------------------------------------------
[INFO]  T E S T S
[INFO] -------------------------------------------------------
[INFO] Running com.example.WordCountTest
[ERROR] Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 0.002 s <<< FAILURE! - in com.example.WordCountTest
[ERROR] testCountWords(com.example.WordCountTest)  Time elapsed: 0.002 s  <<< ERROR!
java.lang.NoSuchMethodError: com.fasterxml.jackson.core.JsonFactory.requiresPropertyOrdering()Z
    at com.example.WordCountTest.<init>(WordCountTest.java:72)

[ERROR] testExtractWordsFn(com.example.WordCountTest)  Time elapsed: 0.002 s  <<< ERROR!
java.lang.NoClassDefFoundError: Could not initialize class org.apache.beam.sdk.testing.TestPipeline
    at com.example.WordCountTest.<init>(WordCountTest.java:72)

[INFO] Running com.example.DebuggingWordCountTest
[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.098 s <<< FAILURE! - in com.example.DebuggingWordCountTest
[ERROR] testDebuggingWordCount(com.example.DebuggingWordCountTest)  Time elapsed: 0.098 s  <<< ERROR!
java.lang.NoClassDefFoundError: Could not initialize class org.apache.beam.sdk.testing.TestPipeline
    at com.example.DebuggingWordCountTest.testDebuggingWordCount(DebuggingWordCountTest.java:47)

[INFO]
[INFO] Results:
[INFO]
[ERROR] Errors:
[ERROR]   DebuggingWordCountTest.testDebuggingWordCount:47 NoClassDefFound Could not ini...
[ERROR]   WordCountTest.<init>:72 » NoSuchMethod com.fasterxml.jackson.core.JsonFactory....
[ERROR]   WordCountTest.<init>:72 NoClassDefFound Could not initialize class org.apache....
[INFO]
[ERROR] Tests run: 3, Failures: 0, Errors: 3, Skipped: 0
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.948 s
[INFO] Finished at: 2017-06-24T22:40:00+03:00
[INFO] Final Memory: 17M/437M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.20:test (default-test) on project first-dataflow: There are test failures.
[ERROR]
[ERROR] Please refer to /Users/user/projects/personal/first-dataflow/target/surefire-reports for the individual test results.
[ERROR] Please refer to dump files (if any exist) [date]-jvmRun[N].dump, [date].dumpstream and [date]-jvmRun[N].dumpstream.
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
编辑:教程参考:

依赖关系树:

[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for com.example:first-dataflow:jar:0.1
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-jar-plugin is missing. @ line 79, column 15
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] Building first-dataflow 0.1
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ first-dataflow ---
[INFO] com.example:first-dataflow:jar:0.1
[INFO] +- com.google.cloud.dataflow:google-cloud-dataflow-java-sdk-all:jar:2.0.0:compile
[INFO] |  +- org.apache.beam:beam-sdks-java-core:jar:2.0.0:compile
[INFO] |  |  +- com.fasterxml.jackson.core:jackson-core:jar:2.8.8:compile
[INFO] |  |  +- com.fasterxml.jackson.core:jackson-annotations:jar:2.8.8:compile
[INFO] |  |  +- com.fasterxml.jackson.core:jackson-databind:jar:2.8.8:compile
[INFO] |  |  +- org.apache.avro:avro:jar:1.8.1:compile
[INFO] |  |  |  +- org.codehaus.jackson:jackson-core-asl:jar:1.9.13:compile
[INFO] |  |  |  +- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13:compile
[INFO] |  |  |  +- com.thoughtworks.paranamer:paranamer:jar:2.7:compile
[INFO] |  |  |  +- org.apache.commons:commons-compress:jar:1.8.1:compile
[INFO] |  |  |  \- org.tukaani:xz:jar:1.5:compile
[INFO] |  |  \- org.xerial.snappy:snappy-java:jar:1.1.4-M3:compile
[INFO] |  +- org.apache.beam:beam-sdks-java-io-google-cloud-platform:jar:2.0.0:compile
[INFO] |  |  +- org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:jar:2.0.0:compile
[INFO] |  |  |  +- com.google.cloud.bigdataoss:gcsio:jar:1.4.5:compile
[INFO] |  |  |  \- com.google.apis:google-api-services-cloudresourcemanager:jar:v1-rev6-1.22.0:compile
[INFO] |  |  +- org.apache.beam:beam-sdks-java-extensions-protobuf:jar:2.0.0:compile
[INFO] |  |  +- com.google.api.grpc:grpc-google-pubsub-v1:jar:0.1.0:compile
[INFO] |  |  |  \- com.google.api.grpc:grpc-google-iam-v1:jar:0.1.0:compile
[INFO] |  |  +- com.google.cloud.bigdataoss:util:jar:1.4.5:compile
[INFO] |  |  |  +- com.google.api-client:google-api-client-java6:jar:1.20.0:compile
[INFO] |  |  |  +- com.google.api-client:google-api-client-jackson2:jar:1.20.0:compile
[INFO] |  |  |  \- com.google.oauth-client:google-oauth-client-java6:jar:1.20.0:compile
[INFO] |  |  +- com.google.cloud.datastore:datastore-v1-proto-client:jar:1.4.0:compile
[INFO] |  |  |  +- com.google.http-client:google-http-client-protobuf:jar:1.20.0:compile
[INFO] |  |  |  \- com.google.http-client:google-http-client-jackson:jar:1.20.0:compile
[INFO] |  |  +- com.google.cloud.datastore:datastore-v1-protos:jar:1.3.0:compile
[INFO] |  |  +- io.grpc:grpc-auth:jar:1.2.0:compile
[INFO] |  |  +- io.grpc:grpc-core:jar:1.2.0:compile
[INFO] |  |  |  +- com.google.errorprone:error_prone_annotations:jar:2.0.11:compile
[INFO] |  |  |  +- io.grpc:grpc-context:jar:1.2.0:compile
[INFO] |  |  |  \- com.google.instrumentation:instrumentation-api:jar:0.3.0:compile
[INFO] |  |  +- io.grpc:grpc-netty:jar:1.2.0:compile
[INFO] |  |  |  +- io.netty:netty-codec-http2:jar:4.1.8.Final:compile (version selected from constraint [4.1.8.Final,4.1.8.Final])
[INFO] |  |  |  |  \- io.netty:netty-codec-http:jar:4.1.8.Final:compile
[INFO] |  |  |  \- io.netty:netty-handler-proxy:jar:4.1.8.Final:compile
[INFO] |  |  |     \- io.netty:netty-codec-socks:jar:4.1.8.Final:compile
[INFO] |  |  +- io.netty:netty-handler:jar:4.1.8.Final:compile
[INFO] |  |  |  +- io.netty:netty-buffer:jar:4.1.8.Final:compile
[INFO] |  |  |  |  \- io.netty:netty-common:jar:4.1.8.Final:compile
[INFO] |  |  |  +- io.netty:netty-transport:jar:4.1.8.Final:compile
[INFO] |  |  |  |  \- io.netty:netty-resolver:jar:4.1.8.Final:compile
[INFO] |  |  |  \- io.netty:netty-codec:jar:4.1.8.Final:compile
[INFO] |  |  +- io.grpc:grpc-stub:jar:1.2.0:compile
[INFO] |  |  +- io.grpc:grpc-all:jar:1.2.0:compile
[INFO] |  |  |  +- io.grpc:grpc-okhttp:jar:1.2.0:compile
[INFO] |  |  |  |  +- com.squareup.okhttp:okhttp:jar:2.5.0:compile
[INFO] |  |  |  |  \- com.squareup.okio:okio:jar:1.6.0:compile
[INFO] |  |  |  +- io.grpc:grpc-protobuf:jar:1.2.0:compile
[INFO] |  |  |  |  \- com.google.protobuf:protobuf-java-util:jar:3.2.0:compile
[INFO] |  |  |  |     \- com.google.code.gson:gson:jar:2.7:compile
[INFO] |  |  |  +- io.grpc:grpc-protobuf-lite:jar:1.2.0:compile
[INFO] |  |  |  \- io.grpc:grpc-protobuf-nano:jar:1.2.0:compile
[INFO] |  |  |     \- com.google.protobuf.nano:protobuf-javanano:jar:3.0.0-alpha-5:compile
[INFO] |  |  +- com.google.cloud.bigtable:bigtable-protos:jar:0.9.6.2:compile
[INFO] |  |  +- com.google.cloud.bigtable:bigtable-client-core:jar:0.9.6.2:compile
[INFO] |  |  |  +- com.google.auth:google-auth-library-appengine:jar:0.6.0:compile
[INFO] |  |  |  |  \- com.google.appengine:appengine-api-1.0-sdk:jar:1.9.34:compile
[INFO] |  |  |  \- io.dropwizard.metrics:metrics-core:jar:3.1.2:compile
[INFO] |  |  +- com.google.auth:google-auth-library-credentials:jar:0.6.1:compile
[INFO] |  |  +- com.google.auth:google-auth-library-oauth2-http:jar:0.6.1:compile
[INFO] |  |  +- com.google.api.grpc:grpc-google-common-protos:jar:0.1.0:compile
[INFO] |  |  +- com.google.protobuf:protobuf-java:jar:3.2.0:compile
[INFO] |  |  \- io.netty:netty-tcnative-boringssl-static:jar:1.1.33.Fork26:runtime
[INFO] |  +- org.apache.beam:beam-runners-direct-java:jar:2.0.0:compile
[INFO] |  \- org.apache.beam:beam-runners-google-cloud-dataflow-java:jar:2.0.0:compile
[INFO] |     +- org.apache.beam:beam-sdks-common-runner-api:jar:2.0.0:compile
[INFO] |     +- com.google.apis:google-api-services-dataflow:jar:v1b3-rev196-1.22.0:compile
[INFO] |     +- com.google.apis:google-api-services-clouddebugger:jar:v2-rev8-1.22.0:compile
[INFO] |     \- com.google.apis:google-api-services-storage:jar:v1-rev71-1.22.0:compile
[INFO] +- com.google.api-client:google-api-client:jar:1.22.0:compile
[INFO] |  +- com.google.oauth-client:google-oauth-client:jar:1.22.0:compile
[INFO] |  \- com.google.http-client:google-http-client-jackson2:jar:1.22.0:compile
[INFO] +- com.google.apis:google-api-services-bigquery:jar:v2-rev295-1.22.0:compile
[INFO] +- com.google.http-client:google-http-client:jar:1.22.0:compile
[INFO] |  +- com.google.code.findbugs:jsr305:jar:1.3.9:compile
[INFO] |  \- org.apache.httpcomponents:httpclient:jar:4.0.1:compile
[INFO] |     +- org.apache.httpcomponents:httpcore:jar:4.0.1:compile
[INFO] |     +- commons-logging:commons-logging:jar:1.1.1:compile
[INFO] |     \- commons-codec:commons-codec:jar:1.3:compile
[INFO] +- com.google.apis:google-api-services-pubsub:jar:v1-rev10-1.22.0:compile
[INFO] +- joda-time:joda-time:jar:2.4:compile
[INFO] +- com.google.guava:guava:jar:20.0:compile
[INFO] +- org.slf4j:slf4j-api:jar:1.7.14:compile
[INFO] +- org.slf4j:slf4j-jdk14:jar:1.7.14:runtime
[INFO] +- org.hamcrest:hamcrest-all:jar:1.3:compile
[INFO] \- junit:junit:jar:4.12:compile
[INFO]    \- org.hamcrest:hamcrest-core:jar:1.3:compile
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.080 s
[INFO] Finished at: 2017-06-24T23:24:24+03:00
[INFO] Final Memory: 18M/437M
[INFO] ------------------

jar实际提供了什么
com.fasterxml.jackson.core.JsonFactory
?因为我不能将它视为您的
pom.xml
谷歌云数据流java sdk中的依赖项,所有这些都可以,但谷歌云数据流java dsk都定义了一个依赖项,但最佳实践是定义您在pom文件中直接使用的依赖项……问题是:这是通过的正确版本吗transitive?尝试将其从数据流依赖项中排除,并添加了三个独立的依赖项(使用相同的版本,因为jackson依赖项之间的版本差异是导致
com.fasterxml.jackson.core.JsonFactory.requirePropertyOrdering()Z
未找到其他依赖项,而不是我的…)您是否安装了google cloud sdk(不确定是否强制安装)。试过干净的身材吗?您能用-X再试一次并粘贴相关信息吗?jar实际提供了什么
com.fasterxml.jackson.core.JsonFactory
?因为我不能将它视为您的
pom.xml
谷歌云数据流java sdk中的依赖项,所有这些都可以,但谷歌云数据流java dsk都定义了一个依赖项,但最佳实践是定义您在pom文件中直接使用的依赖项……问题是:这是通过的正确版本吗transitive?尝试将其从数据流依赖项中排除,并添加了三个独立的依赖项(使用相同的版本,因为jackson依赖项之间的版本差异是导致
com.fasterxml.jackson.core.JsonFactory.requirePropertyOrdering()Z
未找到其他依赖项,而不是我的…)您是否安装了google cloud sdk(不确定是否强制安装)。试过干净的身材吗?你能用-X再试一次并粘贴相关的信息吗?
$ echo $JAVA_HOME
/Library/Java/JavaVirtualMachines/jdk1.8.0_111.jdk/Contents/Home
$ echo $M2_HOME
/opt/maven
[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for com.example:first-dataflow:jar:0.1
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-jar-plugin is missing. @ line 79, column 15
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] Building first-dataflow 0.1
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ first-dataflow ---
[INFO] com.example:first-dataflow:jar:0.1
[INFO] +- com.google.cloud.dataflow:google-cloud-dataflow-java-sdk-all:jar:2.0.0:compile
[INFO] |  +- org.apache.beam:beam-sdks-java-core:jar:2.0.0:compile
[INFO] |  |  +- com.fasterxml.jackson.core:jackson-core:jar:2.8.8:compile
[INFO] |  |  +- com.fasterxml.jackson.core:jackson-annotations:jar:2.8.8:compile
[INFO] |  |  +- com.fasterxml.jackson.core:jackson-databind:jar:2.8.8:compile
[INFO] |  |  +- org.apache.avro:avro:jar:1.8.1:compile
[INFO] |  |  |  +- org.codehaus.jackson:jackson-core-asl:jar:1.9.13:compile
[INFO] |  |  |  +- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13:compile
[INFO] |  |  |  +- com.thoughtworks.paranamer:paranamer:jar:2.7:compile
[INFO] |  |  |  +- org.apache.commons:commons-compress:jar:1.8.1:compile
[INFO] |  |  |  \- org.tukaani:xz:jar:1.5:compile
[INFO] |  |  \- org.xerial.snappy:snappy-java:jar:1.1.4-M3:compile
[INFO] |  +- org.apache.beam:beam-sdks-java-io-google-cloud-platform:jar:2.0.0:compile
[INFO] |  |  +- org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:jar:2.0.0:compile
[INFO] |  |  |  +- com.google.cloud.bigdataoss:gcsio:jar:1.4.5:compile
[INFO] |  |  |  \- com.google.apis:google-api-services-cloudresourcemanager:jar:v1-rev6-1.22.0:compile
[INFO] |  |  +- org.apache.beam:beam-sdks-java-extensions-protobuf:jar:2.0.0:compile
[INFO] |  |  +- com.google.api.grpc:grpc-google-pubsub-v1:jar:0.1.0:compile
[INFO] |  |  |  \- com.google.api.grpc:grpc-google-iam-v1:jar:0.1.0:compile
[INFO] |  |  +- com.google.cloud.bigdataoss:util:jar:1.4.5:compile
[INFO] |  |  |  +- com.google.api-client:google-api-client-java6:jar:1.20.0:compile
[INFO] |  |  |  +- com.google.api-client:google-api-client-jackson2:jar:1.20.0:compile
[INFO] |  |  |  \- com.google.oauth-client:google-oauth-client-java6:jar:1.20.0:compile
[INFO] |  |  +- com.google.cloud.datastore:datastore-v1-proto-client:jar:1.4.0:compile
[INFO] |  |  |  +- com.google.http-client:google-http-client-protobuf:jar:1.20.0:compile
[INFO] |  |  |  \- com.google.http-client:google-http-client-jackson:jar:1.20.0:compile
[INFO] |  |  +- com.google.cloud.datastore:datastore-v1-protos:jar:1.3.0:compile
[INFO] |  |  +- io.grpc:grpc-auth:jar:1.2.0:compile
[INFO] |  |  +- io.grpc:grpc-core:jar:1.2.0:compile
[INFO] |  |  |  +- com.google.errorprone:error_prone_annotations:jar:2.0.11:compile
[INFO] |  |  |  +- io.grpc:grpc-context:jar:1.2.0:compile
[INFO] |  |  |  \- com.google.instrumentation:instrumentation-api:jar:0.3.0:compile
[INFO] |  |  +- io.grpc:grpc-netty:jar:1.2.0:compile
[INFO] |  |  |  +- io.netty:netty-codec-http2:jar:4.1.8.Final:compile (version selected from constraint [4.1.8.Final,4.1.8.Final])
[INFO] |  |  |  |  \- io.netty:netty-codec-http:jar:4.1.8.Final:compile
[INFO] |  |  |  \- io.netty:netty-handler-proxy:jar:4.1.8.Final:compile
[INFO] |  |  |     \- io.netty:netty-codec-socks:jar:4.1.8.Final:compile
[INFO] |  |  +- io.netty:netty-handler:jar:4.1.8.Final:compile
[INFO] |  |  |  +- io.netty:netty-buffer:jar:4.1.8.Final:compile
[INFO] |  |  |  |  \- io.netty:netty-common:jar:4.1.8.Final:compile
[INFO] |  |  |  +- io.netty:netty-transport:jar:4.1.8.Final:compile
[INFO] |  |  |  |  \- io.netty:netty-resolver:jar:4.1.8.Final:compile
[INFO] |  |  |  \- io.netty:netty-codec:jar:4.1.8.Final:compile
[INFO] |  |  +- io.grpc:grpc-stub:jar:1.2.0:compile
[INFO] |  |  +- io.grpc:grpc-all:jar:1.2.0:compile
[INFO] |  |  |  +- io.grpc:grpc-okhttp:jar:1.2.0:compile
[INFO] |  |  |  |  +- com.squareup.okhttp:okhttp:jar:2.5.0:compile
[INFO] |  |  |  |  \- com.squareup.okio:okio:jar:1.6.0:compile
[INFO] |  |  |  +- io.grpc:grpc-protobuf:jar:1.2.0:compile
[INFO] |  |  |  |  \- com.google.protobuf:protobuf-java-util:jar:3.2.0:compile
[INFO] |  |  |  |     \- com.google.code.gson:gson:jar:2.7:compile
[INFO] |  |  |  +- io.grpc:grpc-protobuf-lite:jar:1.2.0:compile
[INFO] |  |  |  \- io.grpc:grpc-protobuf-nano:jar:1.2.0:compile
[INFO] |  |  |     \- com.google.protobuf.nano:protobuf-javanano:jar:3.0.0-alpha-5:compile
[INFO] |  |  +- com.google.cloud.bigtable:bigtable-protos:jar:0.9.6.2:compile
[INFO] |  |  +- com.google.cloud.bigtable:bigtable-client-core:jar:0.9.6.2:compile
[INFO] |  |  |  +- com.google.auth:google-auth-library-appengine:jar:0.6.0:compile
[INFO] |  |  |  |  \- com.google.appengine:appengine-api-1.0-sdk:jar:1.9.34:compile
[INFO] |  |  |  \- io.dropwizard.metrics:metrics-core:jar:3.1.2:compile
[INFO] |  |  +- com.google.auth:google-auth-library-credentials:jar:0.6.1:compile
[INFO] |  |  +- com.google.auth:google-auth-library-oauth2-http:jar:0.6.1:compile
[INFO] |  |  +- com.google.api.grpc:grpc-google-common-protos:jar:0.1.0:compile
[INFO] |  |  +- com.google.protobuf:protobuf-java:jar:3.2.0:compile
[INFO] |  |  \- io.netty:netty-tcnative-boringssl-static:jar:1.1.33.Fork26:runtime
[INFO] |  +- org.apache.beam:beam-runners-direct-java:jar:2.0.0:compile
[INFO] |  \- org.apache.beam:beam-runners-google-cloud-dataflow-java:jar:2.0.0:compile
[INFO] |     +- org.apache.beam:beam-sdks-common-runner-api:jar:2.0.0:compile
[INFO] |     +- com.google.apis:google-api-services-dataflow:jar:v1b3-rev196-1.22.0:compile
[INFO] |     +- com.google.apis:google-api-services-clouddebugger:jar:v2-rev8-1.22.0:compile
[INFO] |     \- com.google.apis:google-api-services-storage:jar:v1-rev71-1.22.0:compile
[INFO] +- com.google.api-client:google-api-client:jar:1.22.0:compile
[INFO] |  +- com.google.oauth-client:google-oauth-client:jar:1.22.0:compile
[INFO] |  \- com.google.http-client:google-http-client-jackson2:jar:1.22.0:compile
[INFO] +- com.google.apis:google-api-services-bigquery:jar:v2-rev295-1.22.0:compile
[INFO] +- com.google.http-client:google-http-client:jar:1.22.0:compile
[INFO] |  +- com.google.code.findbugs:jsr305:jar:1.3.9:compile
[INFO] |  \- org.apache.httpcomponents:httpclient:jar:4.0.1:compile
[INFO] |     +- org.apache.httpcomponents:httpcore:jar:4.0.1:compile
[INFO] |     +- commons-logging:commons-logging:jar:1.1.1:compile
[INFO] |     \- commons-codec:commons-codec:jar:1.3:compile
[INFO] +- com.google.apis:google-api-services-pubsub:jar:v1-rev10-1.22.0:compile
[INFO] +- joda-time:joda-time:jar:2.4:compile
[INFO] +- com.google.guava:guava:jar:20.0:compile
[INFO] +- org.slf4j:slf4j-api:jar:1.7.14:compile
[INFO] +- org.slf4j:slf4j-jdk14:jar:1.7.14:runtime
[INFO] +- org.hamcrest:hamcrest-all:jar:1.3:compile
[INFO] \- junit:junit:jar:4.12:compile
[INFO]    \- org.hamcrest:hamcrest-core:jar:1.3:compile
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.080 s
[INFO] Finished at: 2017-06-24T23:24:24+03:00
[INFO] Final Memory: 18M/437M
[INFO] ------------------