You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2017/08/22 09:10:45 UTC

svn commit: r1805735 - /sling/trunk/bundles/commons/scheduler/pom.xml

Author: cziegeler
Date: Tue Aug 22 09:10:45 2017
New Revision: 1805735

URL: http://svn.apache.org/viewvc?rev=1805735&view=rev
Log:
SLING-5965 : Metrics and a Health-Check for Scheduler to detect long-running Quartz-Jobs

Modified:
    sling/trunk/bundles/commons/scheduler/pom.xml

Modified: sling/trunk/bundles/commons/scheduler/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/bundles/commons/scheduler/pom.xml?rev=1805735&r1=1805734&r2=1805735&view=diff
==============================================================================
--- sling/trunk/bundles/commons/scheduler/pom.xml (original)
+++ sling/trunk/bundles/commons/scheduler/pom.xml Tue Aug 22 09:10:45 2017
@@ -149,6 +149,18 @@
             <scope>provided</scope>
         </dependency>
         <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.hc.core</artifactId>
+            <version>1.0.6</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>io.dropwizard.metrics</groupId>
+            <artifactId>metrics-core</artifactId>
+            <version>3.1.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
             <groupId>org.quartz-scheduler</groupId>
             <artifactId>quartz</artifactId>
             <version>2.2.3</version>
@@ -181,17 +193,5 @@
             <version>1.0.10</version>
             <scope>test</scope>
         </dependency>
-        <dependency>
-          	<groupId>org.apache.sling</groupId>
-          	<artifactId>org.apache.sling.hc.core</artifactId>
-         	<version>1.0.6</version>
-         	<scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>io.dropwizard.metrics</groupId>
-            <artifactId>metrics-core</artifactId>
-            <version>3.2.3</version>
-            <scope>provided</scope>
-        </dependency>
     </dependencies>
 </project>