You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2015/05/15 05:06:51 UTC

[39/50] [abbrv] incubator-kylin git commit: KYLIN-762 remove quartz dependency

KYLIN-762 remove quartz dependency


Project: http://git-wip-us.apache.org/repos/asf/incubator-kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-kylin/commit/386e0c4e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kylin/tree/386e0c4e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kylin/diff/386e0c4e

Branch: refs/heads/streaming-localdict
Commit: 386e0c4e02893820b956c8e7ddad736bb04962af
Parents: e1e1aea
Author: qianhao.zhou <qi...@ebay.com>
Authored: Wed May 13 11:31:21 2015 +0800
Committer: qianhao.zhou <qi...@ebay.com>
Committed: Wed May 13 12:22:56 2015 +0800

----------------------------------------------------------------------
 job/pom.xml                                           |  9 ---------
 pom.xml                                               | 14 --------------
 .../apache/kylin/rest/controller/CubeController.java  |  1 -
 3 files changed, 24 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/386e0c4e/job/pom.xml
----------------------------------------------------------------------
diff --git a/job/pom.xml b/job/pom.xml
index 2809323..c468cf9 100644
--- a/job/pom.xml
+++ b/job/pom.xml
@@ -97,15 +97,6 @@
         </dependency>
 
         <dependency>
-            <groupId>org.quartz-scheduler</groupId>
-            <artifactId>quartz</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.quartz-scheduler</groupId>
-            <artifactId>quartz-jobs</artifactId>
-        </dependency>
-
-        <dependency>
             <groupId>commons-daemon</groupId>
             <artifactId>commons-daemon</artifactId>
         </dependency>

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/386e0c4e/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index e750154..cb091a9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -91,9 +91,6 @@
         <!-- Metrics Codahale Version -->
         <metrics.version>3.0.1</metrics.version>
 
-        <!-- Quartz Version -->
-        <quartz.version>2.2.1</quartz.version>
-
         <!-- Curator.version Version -->
         <curator.version>2.6.0</curator.version>
 
@@ -387,17 +384,6 @@
             </dependency>
 
             <dependency>
-                <groupId>org.quartz-scheduler</groupId>
-                <artifactId>quartz</artifactId>
-                <version>${quartz.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.quartz-scheduler</groupId>
-                <artifactId>quartz-jobs</artifactId>
-                <version>${quartz.version}</version>
-            </dependency>
-
-            <dependency>
                 <groupId>org.apache.curator</groupId>
                 <artifactId>curator-framework</artifactId>
                 <version>${curator.version}</version>

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/386e0c4e/server/src/main/java/org/apache/kylin/rest/controller/CubeController.java
----------------------------------------------------------------------
diff --git a/server/src/main/java/org/apache/kylin/rest/controller/CubeController.java b/server/src/main/java/org/apache/kylin/rest/controller/CubeController.java
index 78b4f79..556e21b 100644
--- a/server/src/main/java/org/apache/kylin/rest/controller/CubeController.java
+++ b/server/src/main/java/org/apache/kylin/rest/controller/CubeController.java
@@ -52,7 +52,6 @@ import org.apache.kylin.rest.response.HBaseResponse;
 import org.apache.kylin.rest.service.CubeService;
 import org.apache.kylin.rest.service.JobService;
 import org.apache.kylin.storage.hbase.coprocessor.observer.ObserverEnabler;
-import org.quartz.SchedulerException;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;