kennknowles opened a new issue, #19138:
URL: https://github.com/apache/beam/issues/19138
(I'm using BDD terminology to phrase the issue)
AS A DEVELOPER I want to be able to use the following Maven dependencies (or
newer versions) in the same Java project inside Eclipse SO THAT I can subscribe
to a Google pub/sub independently from the mechanism supplied by Apache Beam,
and efficiently update a dataset linked to my Apache Beam dataflow.
I want to update my linked dataset by accepting push data that reflects
changes to its data, instead of having to poll for new data each time I process
an item from an Apache Beam pipeline that subscribes to a different Google
pub/sub dataset.
```
<dependency>
<groupId>com.google.cloud.dataflow</groupId>
<artifactId>google-cloud-dataflow-java-sdk-all</artifactId>
<version>2.5.0</version>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-pubsub</artifactId>
<version>1.53.0</version>
</dependency>
```
ACCEPTANCE CRITERIA
No dependency conflict related to io.grpc:grpc-core:jar is caused when I run
```
mvn clean install
```
against the project.
Please see here (I documented itas a GitHub issue against the
google-cloud-pubsub library, however it's primarily a Beam Maven dependency
issue):
[https://github.com/googleapis/google-cloud-java/issues/4095](https://github.com/googleapis/google-cloud-java/issues/4095)
Imported from Jira
[BEAM-6118](https://issues.apache.org/jira/browse/BEAM-6118). Original Jira may
contain additional context.
Reported by: chalcrow.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]