[
https://issues.apache.org/jira/browse/BEAM-4357?focusedWorklogId=104294&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-104294
]
ASF GitHub Bot logged work on BEAM-4357:
----------------------------------------
Author: ASF GitHub Bot
Created on: 21/May/18 22:03
Start Date: 21/May/18 22:03
Worklog Time Spent: 10m
Work Description: kennknowles commented on a change in pull request
#5443: [BEAM-4357] [SQL] Fix shadow jar and test it
URL: https://github.com/apache/beam/pull/5443#discussion_r189726744
##########
File path: sdks/java/extensions/sql/build.gradle
##########
@@ -45,23 +48,27 @@ dependencies {
compile "org.apache.calcite:calcite-core:$calcite_version"
compile "org.apache.calcite:calcite-linq4j:$calcite_version"
compile "org.apache.calcite.avatica:avatica-core:$avatica_version"
- compile "com.alibaba:fastjson:1.2.12"
compileOnly library.java.findbugs_jsr305
compileOnly library.java.findbugs_annotations
shadow project(path: ":beam-sdks-java-core", configuration: "shadow")
shadow project(path: ":beam-sdks-java-extensions-join-library",
configuration: "shadow")
shadow library.java.slf4j_api
+ shadow library.java.slf4j_jdk14
shadow library.java.commons_csv
+ shadow library.java.commons_lang3
+ shadow library.java.jackson_databind
shadow library.java.joda_time
+ shadow "com.alibaba:fastjson:1.2.12"
shadow project(path: ":beam-runners-direct-java", configuration: "shadow")
provided project(path: ":beam-sdks-java-io-kafka", configuration: "shadow")
provided project(path: ":beam-sdks-java-io-google-cloud-platform",
configuration: "shadow")
provided library.java.kafka_clients
- testCompile library.java.slf4j_jdk14
testCompile library.java.junit
testCompile library.java.hamcrest_core
testCompile library.java.mockito_core
testCompile library.java.quickcheck_core
+ shadowJarTest project(path: project.path, configuration: "shadow")
Review comment:
A question more for @lukecwik than you: shouldn't all of our tests run
against the actual jar produced for users? Is the shadow configuration that
jar? Or is it a different one?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 104294)
Time Spent: 0.5h (was: 20m)
> SQL shaded jar returns NoClassDefFoundError
> -------------------------------------------
>
> Key: BEAM-4357
> URL: https://issues.apache.org/jira/browse/BEAM-4357
> Project: Beam
> Issue Type: Bug
> Components: dsl-sql
> Affects Versions: 2.5.0
> Reporter: Andrew Pilloud
> Assignee: Andrew Pilloud
> Priority: Blocker
> Fix For: 2.5.0
>
> Time Spent: 0.5h
> Remaining Estimate: 0h
>
> Exception in thread "main" java.lang.NoClassDefFoundError:
> com/fasterxml/jackson/databind/ObjectMapper
> I ran this:
> {code:java}
> java -cp
> ./sdks/java/extensions/sql/build/libs/beam-sdks-java-extensions-sql-2.5.0-SNAPSHOT-shaded.jar:$HOME/sqlline/sqlline-1.3.0.jar:$HOME/sqlline/jline-2.14.6.jar
> sqlline.SqlLine -u 'jdbc:beam:' -n admin -p admin{code}
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)