This is an automated email from the ASF dual-hosted git repository.

xiangfu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 8f12fc1a92 Move pinot-common to plugin root and ensure all the pinot 
libs reference in plugins are provided scope (#13830)
8f12fc1a92 is described below

commit 8f12fc1a92dbd16a7a7324ffc1eb5c0d3865e7d1
Author: Xiang Fu <[email protected]>
AuthorDate: Fri Aug 16 18:40:07 2024 -0700

    Move pinot-common to plugin root and ensure all the pinot libs reference in 
plugins are provided scope (#13830)
---
 pinot-plugins/pinot-environment/pinot-azure/pom.xml                   | 1 +
 pinot-plugins/pinot-input-format/pinot-clp-log/pom.xml                | 1 +
 pinot-plugins/pinot-metrics/pinot-dropwizard/pom.xml                  | 4 ----
 pinot-plugins/pinot-metrics/pinot-yammer/pom.xml                      | 4 ----
 pinot-plugins/pinot-minion-tasks/pom.xml                              | 2 ++
 .../pinot-segment-uploader/pinot-segment-uploader-default/pom.xml     | 1 +
 .../pinot-segment-writer/pinot-segment-writer-file-based/pom.xml      | 2 ++
 pinot-plugins/pinot-stream-ingestion/pinot-kafka-base/pom.xml         | 1 +
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/pinot-plugins/pinot-environment/pinot-azure/pom.xml 
b/pinot-plugins/pinot-environment/pinot-azure/pom.xml
index 91186fcbd3..171555ea96 100644
--- a/pinot-plugins/pinot-environment/pinot-azure/pom.xml
+++ b/pinot-plugins/pinot-environment/pinot-azure/pom.xml
@@ -38,6 +38,7 @@
     <dependency>
       <groupId>org.apache.pinot</groupId>
       <artifactId>pinot-common</artifactId>
+      <scope>provided</scope>
     </dependency>
   </dependencies>
 </project>
diff --git a/pinot-plugins/pinot-input-format/pinot-clp-log/pom.xml 
b/pinot-plugins/pinot-input-format/pinot-clp-log/pom.xml
index f8a02092ac..84810b8f98 100644
--- a/pinot-plugins/pinot-input-format/pinot-clp-log/pom.xml
+++ b/pinot-plugins/pinot-input-format/pinot-clp-log/pom.xml
@@ -44,6 +44,7 @@
     <dependency>
       <groupId>org.apache.pinot</groupId>
       <artifactId>pinot-common</artifactId>
+      <scope>provided</scope>
     </dependency>
   </dependencies>
 </project>
diff --git a/pinot-plugins/pinot-metrics/pinot-dropwizard/pom.xml 
b/pinot-plugins/pinot-metrics/pinot-dropwizard/pom.xml
index 6f17f0bf7e..b030d22edc 100644
--- a/pinot-plugins/pinot-metrics/pinot-dropwizard/pom.xml
+++ b/pinot-plugins/pinot-metrics/pinot-dropwizard/pom.xml
@@ -37,10 +37,6 @@
   </properties>
 
   <dependencies>
-    <dependency>
-      <groupId>org.apache.pinot</groupId>
-      <artifactId>pinot-spi</artifactId>
-    </dependency>
     <dependency>
       <groupId>io.dropwizard.metrics</groupId>
       <artifactId>metrics-core</artifactId>
diff --git a/pinot-plugins/pinot-metrics/pinot-yammer/pom.xml 
b/pinot-plugins/pinot-metrics/pinot-yammer/pom.xml
index 7b1e7073d8..c27ff0272b 100644
--- a/pinot-plugins/pinot-metrics/pinot-yammer/pom.xml
+++ b/pinot-plugins/pinot-metrics/pinot-yammer/pom.xml
@@ -37,10 +37,6 @@
   </properties>
 
   <dependencies>
-    <dependency>
-      <groupId>org.apache.pinot</groupId>
-      <artifactId>pinot-spi</artifactId>
-    </dependency>
     <dependency>
       <groupId>com.yammer.metrics</groupId>
       <artifactId>metrics-core</artifactId>
diff --git a/pinot-plugins/pinot-minion-tasks/pom.xml 
b/pinot-plugins/pinot-minion-tasks/pom.xml
index 394dccacc2..1649bd288c 100644
--- a/pinot-plugins/pinot-minion-tasks/pom.xml
+++ b/pinot-plugins/pinot-minion-tasks/pom.xml
@@ -43,10 +43,12 @@
     <dependency>
       <groupId>org.apache.pinot</groupId>
       <artifactId>pinot-controller</artifactId>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.pinot</groupId>
       <artifactId>pinot-minion</artifactId>
+      <scope>provided</scope>
     </dependency>
     <!-- Test -->
     <dependency>
diff --git 
a/pinot-plugins/pinot-segment-uploader/pinot-segment-uploader-default/pom.xml 
b/pinot-plugins/pinot-segment-uploader/pinot-segment-uploader-default/pom.xml
index cf6f09f4c3..c7849dcdfb 100644
--- 
a/pinot-plugins/pinot-segment-uploader/pinot-segment-uploader-default/pom.xml
+++ 
b/pinot-plugins/pinot-segment-uploader/pinot-segment-uploader-default/pom.xml
@@ -39,6 +39,7 @@
     <dependency>
       <groupId>org.apache.pinot</groupId>
       <artifactId>pinot-core</artifactId>
+      <scope>provided</scope>
     </dependency>
   </dependencies>
 </project>
diff --git 
a/pinot-plugins/pinot-segment-writer/pinot-segment-writer-file-based/pom.xml 
b/pinot-plugins/pinot-segment-writer/pinot-segment-writer-file-based/pom.xml
index 3ceda42e2a..aa0b4764ae 100644
--- a/pinot-plugins/pinot-segment-writer/pinot-segment-writer-file-based/pom.xml
+++ b/pinot-plugins/pinot-segment-writer/pinot-segment-writer-file-based/pom.xml
@@ -39,10 +39,12 @@
     <dependency>
       <groupId>org.apache.pinot</groupId>
       <artifactId>pinot-core</artifactId>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.pinot</groupId>
       <artifactId>pinot-avro</artifactId>
+      <scope>provided</scope>
     </dependency>
   </dependencies>
 </project>
diff --git a/pinot-plugins/pinot-stream-ingestion/pinot-kafka-base/pom.xml 
b/pinot-plugins/pinot-stream-ingestion/pinot-kafka-base/pom.xml
index 9373ecdf6a..08650f16ba 100644
--- a/pinot-plugins/pinot-stream-ingestion/pinot-kafka-base/pom.xml
+++ b/pinot-plugins/pinot-stream-ingestion/pinot-kafka-base/pom.xml
@@ -39,6 +39,7 @@
     <dependency>
       <groupId>org.apache.pinot</groupId>
       <artifactId>pinot-json</artifactId>
+      <scope>provided</scope>
     </dependency>
   </dependencies>
 </project>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to