You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ap...@apache.org on 2019/01/02 19:47:50 UTC

[incubator-pinot] branch master updated: [TE] pom - add reflections dependency (#3628)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 5b8042e  [TE] pom - add reflections dependency (#3628)
5b8042e is described below

commit 5b8042e5e6776c606b7c6af213c8e4692265fd25
Author: Alexander Pucher <ap...@linkedin.com>
AuthorDate: Wed Jan 2 11:47:45 2019 -0800

    [TE] pom - add reflections dependency (#3628)
    
    fix potentially missing dependency for DetectionRegistry, DetectionAlertRegistry
---
 thirdeye/pom.xml                | 6 ++++++
 thirdeye/thirdeye-pinot/pom.xml | 4 ++++
 2 files changed, 10 insertions(+)

diff --git a/thirdeye/pom.xml b/thirdeye/pom.xml
index 45dd225..7a0a2c8 100644
--- a/thirdeye/pom.xml
+++ b/thirdeye/pom.xml
@@ -54,6 +54,7 @@
     <commons-cli.version>1.3</commons-cli.version>
     <commons-csv.version>1.3</commons-csv.version>
     <commons-dbcp2.version>2.1.1</commons-dbcp2.version>
+    <reflections.version>0.9.11</reflections.version>
     <mrunit.version>1.1.0</mrunit.version>
     <slf4j-api.version>1.7.12</slf4j-api.version>
     <jodatime.version>2.7</jodatime.version>
@@ -364,6 +365,11 @@
         <artifactId>json-path</artifactId>
         <version>${jsonpath.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.reflections</groupId>
+        <artifactId>reflections</artifactId>
+        <version>${reflections.version}</version>
+      </dependency>
 
       <!-- UI dependencies -->
       <dependency>
diff --git a/thirdeye/thirdeye-pinot/pom.xml b/thirdeye/thirdeye-pinot/pom.xml
index 4d00863..7e10669 100644
--- a/thirdeye/thirdeye-pinot/pom.xml
+++ b/thirdeye/thirdeye-pinot/pom.xml
@@ -127,6 +127,10 @@
       <groupId>org.eclipse.jetty</groupId>
       <artifactId>jetty-proxy</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.reflections</groupId>
+      <artifactId>reflections</artifactId>
+    </dependency>
 
     <!-- dataframe specific -->
     <dependency>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org