You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by st...@apache.org on 2018/01/05 19:54:50 UTC

deltaspike git commit: DELTASPIKE-1312 update Quartz to 2.3.0

Repository: deltaspike
Updated Branches:
  refs/heads/master 8e740e37a -> fc8b80bd0


DELTASPIKE-1312 update Quartz to 2.3.0

to disable the http phoning-home which is now opt-in


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/fc8b80bd
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/fc8b80bd
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/fc8b80bd

Branch: refs/heads/master
Commit: fc8b80bd0adb6ba46c8ae6f40a20bc08e2adacff
Parents: 8e740e3
Author: Mark Struberg <st...@apache.org>
Authored: Fri Jan 5 20:53:53 2018 +0100
Committer: Mark Struberg <st...@apache.org>
Committed: Fri Jan 5 20:53:53 2018 +0100

----------------------------------------------------------------------
 deltaspike/examples/scheduler-playground/pom.xml | 2 +-
 deltaspike/modules/scheduler/impl/pom.xml        | 2 +-
 documentation/src/main/asciidoc/scheduler.adoc   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/fc8b80bd/deltaspike/examples/scheduler-playground/pom.xml
----------------------------------------------------------------------
diff --git a/deltaspike/examples/scheduler-playground/pom.xml b/deltaspike/examples/scheduler-playground/pom.xml
index 5e7e430..a9d3281 100644
--- a/deltaspike/examples/scheduler-playground/pom.xml
+++ b/deltaspike/examples/scheduler-playground/pom.xml
@@ -143,7 +143,7 @@
         <dependency>
             <groupId>org.quartz-scheduler</groupId>
             <artifactId>quartz</artifactId>
-            <version>2.2.1</version>
+            <version>2.3.0</version>
         </dependency>
     </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/fc8b80bd/deltaspike/modules/scheduler/impl/pom.xml
----------------------------------------------------------------------
diff --git a/deltaspike/modules/scheduler/impl/pom.xml b/deltaspike/modules/scheduler/impl/pom.xml
index f142b88..9bb89b3 100644
--- a/deltaspike/modules/scheduler/impl/pom.xml
+++ b/deltaspike/modules/scheduler/impl/pom.xml
@@ -70,7 +70,7 @@
         <dependency>
             <groupId>org.quartz-scheduler</groupId>
             <artifactId>quartz</artifactId>
-            <version>2.2.1</version>
+            <version>2.3.0</version>
             <optional>true</optional>
         </dependency>
 

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/fc8b80bd/documentation/src/main/asciidoc/scheduler.adoc
----------------------------------------------------------------------
diff --git a/documentation/src/main/asciidoc/scheduler.adoc b/documentation/src/main/asciidoc/scheduler.adoc
index 2649ecf..4950bd3 100644
--- a/documentation/src/main/asciidoc/scheduler.adoc
+++ b/documentation/src/main/asciidoc/scheduler.adoc
@@ -48,7 +48,7 @@ By default, the Scheduler module looks to integrate with Quartz. If this is the
 <dependency>
     <groupId>org.quartz-scheduler</groupId>
     <artifactId>quartz</artifactId>
-    <version>2.2.1</version>
+    <version>2.3.0</version>
 </dependency>
 ----