Apache Beam maven dependencies: jdbc package is not downloaded in skd jar file -


downloaded maven dependecies in eclipse using

<dependency> <groupid>org.apache.beam</groupid> <artifactid>beam-runners-direct-java</artifactid> <version>0.3.0-incubating</version></dependency> <dependency> 

only org.apache.beam.sdk.io,only org.apache.beam.sdk.io.range downloaded. .io.jdbc not being downloaded in dependencies.

is there other specific artifactid have use other above mentioned?

apache beam (incubating) publishes several convenience binaries maven central repository every release.

there isn't artifact captures whole project. instead, should using specific components need (perhaps core sdk, additional libraries, , runner).

specifically, if you'd use beam's jdbc connector, depend on following artifact (among other things):

<dependency>   <groupid>org.apache.beam</groupid>   <artifactid>beam-sdks-java-io-jdbc</artifactid>   <version>${some_version}</version> <dependency> 

also, adding quickstart our webpage, cover of information. @ moment, still work-in-progress.


Comments

Popular posts from this blog

asynchronous - C# WinSCP .NET assembly: How to upload multiple files asynchronously -

aws api gateway - SerializationException in posting new Records via Dynamodb Proxy Service in API -

asp.net - Problems sending emails from forum -