This is an automated email from the ASF dual-hosted git repository. kishoreg pushed a commit to branch pinot-connector-dep-clean-up in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git
commit 1b25d48a2d181b1a426944600d78a8a2a774308a Author: kishoreg <[email protected]> AuthorDate: Tue Dec 17 18:26:02 2019 -0800 Removing dependency on pinot-common and pinot-core from pinot-connectors (WIP) --- pinot-connectors/pinot-connector-kafka-base/pom.xml | 4 ++++ pinot-connectors/pom.xml | 7 +++++++ 2 files changed, 11 insertions(+) diff --git a/pinot-connectors/pinot-connector-kafka-base/pom.xml b/pinot-connectors/pinot-connector-kafka-base/pom.xml index faeafda..6488833 100644 --- a/pinot-connectors/pinot-connector-kafka-base/pom.xml +++ b/pinot-connectors/pinot-connector-kafka-base/pom.xml @@ -37,6 +37,10 @@ </properties> <dependencies> + <dependency> + <groupId>org.apache.pinot</groupId> + <artifactId>pinot-avro</artifactId> + </dependency> <!-- test --> <dependency> <groupId>org.testng</groupId> diff --git a/pinot-connectors/pom.xml b/pinot-connectors/pom.xml index fdeb443..bb65ecc 100644 --- a/pinot-connectors/pom.xml +++ b/pinot-connectors/pom.xml @@ -46,6 +46,12 @@ <dependencies> <dependency> <groupId>org.apache.pinot</groupId> + <artifactId>pinot-spi</artifactId> + <scope>provided</scope> + </dependency> + <!-- + <dependency> + <groupId>org.apache.pinot</groupId> <artifactId>pinot-common</artifactId> <scope>provided</scope> <exclusions> @@ -66,6 +72,7 @@ </exclusion> </exclusions> </dependency> + --> <!-- test --> <dependency> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
