Skip to content

Commit

Permalink
Merge pull request #42 from SolaceDev/exclude-confluent-dependencies
Browse files Browse the repository at this point in the history
Exclude confluent dependencies from beam-runners-google-cloud-dataflow-java test dependency so that build systems don't need to access to the https://packages.confluent.io repository.
  • Loading branch information
Nephery authored Aug 13, 2021
2 parents e77cad7 + 4e80626 commit 6229490
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions beam-sdks-java-io-solace/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,16 @@
<groupId>org.apache.beam</groupId>
<artifactId>beam-runners-google-cloud-dataflow-java</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>io.confluent</groupId>
<artifactId>kafka-avro-serializer</artifactId>
</exclusion>
<exclusion>
<groupId>io.confluent</groupId>
<artifactId>kafka-schema-registry-client</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

Expand Down
10 changes: 10 additions & 0 deletions solace-apache-beam-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,16 @@
<groupId>org.apache.beam</groupId>
<artifactId>beam-runners-google-cloud-dataflow-java</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>io.confluent</groupId>
<artifactId>kafka-avro-serializer</artifactId>
</exclusion>
<exclusion>
<groupId>io.confluent</groupId>
<artifactId>kafka-schema-registry-client</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down

0 comments on commit 6229490

Please sign in to comment.