This is an automated email from the ASF dual-hosted git repository. xiangfu pushed a commit to branch cleanup-plugins-dependency in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git
commit a9544aec299ea9b23c1f3a7d8abbc0c5aafddc3e Author: Xiang Fu <[email protected]> AuthorDate: Fri Jan 10 15:20:02 2020 -0800 Clean up dependency for pinot-gcs --- pinot-plugins/pinot-file-system/pinot-adls/pom.xml | 5 ----- pinot-plugins/pinot-file-system/pinot-gcs/pom.xml | 12 +++++++---- pinot-plugins/pinot-file-system/pinot-hdfs/pom.xml | 5 ----- pinot-plugins/pinot-file-system/pom.xml | 24 ---------------------- 4 files changed, 8 insertions(+), 38 deletions(-) diff --git a/pinot-plugins/pinot-file-system/pinot-adls/pom.xml b/pinot-plugins/pinot-file-system/pinot-adls/pom.xml index 123f0e0..caf10db 100644 --- a/pinot-plugins/pinot-file-system/pinot-adls/pom.xml +++ b/pinot-plugins/pinot-file-system/pinot-adls/pom.xml @@ -49,10 +49,5 @@ <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>org.apache.pinot</groupId> - <artifactId>pinot-spi</artifactId> - <scope>provided</scope> - </dependency> </dependencies> </project> diff --git a/pinot-plugins/pinot-file-system/pinot-gcs/pom.xml b/pinot-plugins/pinot-file-system/pinot-gcs/pom.xml index c108029..3da5d2e 100644 --- a/pinot-plugins/pinot-file-system/pinot-gcs/pom.xml +++ b/pinot-plugins/pinot-file-system/pinot-gcs/pom.xml @@ -40,10 +40,6 @@ <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> </dependency> - <dependency> - <groupId>org.apache.pinot</groupId> - <artifactId>pinot-common</artifactId> - </dependency> <!-- google cloud storage --> <dependency> <groupId>com.google.cloud</groupId> @@ -121,6 +117,14 @@ </exclusions> </dependency> <dependency> + <groupId>net.sf.jopt-simple</groupId> + <artifactId>jopt-simple</artifactId> + </dependency> + <dependency> + <groupId>org.glassfish.jersey.core</groupId> + <artifactId>jersey-server</artifactId> + </dependency> + <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> diff --git a/pinot-plugins/pinot-file-system/pinot-hdfs/pom.xml b/pinot-plugins/pinot-file-system/pinot-hdfs/pom.xml index 9a529aa..3975dd9 100644 --- a/pinot-plugins/pinot-file-system/pinot-hdfs/pom.xml +++ b/pinot-plugins/pinot-file-system/pinot-hdfs/pom.xml @@ -72,10 +72,5 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.apache.pinot</groupId> - <artifactId>pinot-spi</artifactId> - <scope>provided</scope> - </dependency> </dependencies> </project> diff --git a/pinot-plugins/pinot-file-system/pom.xml b/pinot-plugins/pinot-file-system/pom.xml index 4265b6f..596bac5 100644 --- a/pinot-plugins/pinot-file-system/pom.xml +++ b/pinot-plugins/pinot-file-system/pom.xml @@ -50,30 +50,6 @@ <artifactId>pinot-spi</artifactId> <scope>provided</scope> </dependency> - <!-- - <dependency> - <groupId>org.apache.pinot</groupId> - <artifactId>pinot-common</artifactId> - <scope>provided</scope> - <exclusions> - <exclusion> - <groupId>org.scala-lang</groupId> - <artifactId>scala-library</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.pinot</groupId> - <artifactId>pinot-core</artifactId> - <scope>provided</scope> - <exclusions> - <exclusion> - <groupId>org.scala-lang</groupId> - <artifactId>scala-library</artifactId> - </exclusion> - </exclusions> - </dependency> - --> <!-- test --> <dependency> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
