diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2f7896d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+target/
diff --git a/pom.xml b/pom.xml
index 9e8c8b3..9189654 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@
org.99soft.guice
guartz
- 1.4-SNAPSHOT
+ 1.5-SNAPSHOT
jar
99soft:: Guartz
@@ -88,39 +88,38 @@
org.quartz-scheduler
quartz
- 2.0.0
+ 2.3.0
compile
com.google.inject
guice
- 3.0
+ 4.1.0
compile
com.google.inject.extensions
guice-multibindings
- 3.0
+ 4.1.0
compile
junit
junit
- 4.8.2
+ 4.12
test
org.slf4j
slf4j-api
- 1.6.1
+ 1.7.25
test
ch.qos.logback
logback-classic
- 0.9.28
+ 1.2.3
test
-
-
+
\ No newline at end of file
diff --git a/src/main/java/org/nnsoft/guice/guartz/QuartzModule.java b/src/main/java/org/nnsoft/guice/guartz/QuartzModule.java
index 7df5d88..c403487 100644
--- a/src/main/java/org/nnsoft/guice/guartz/QuartzModule.java
+++ b/src/main/java/org/nnsoft/guice/guartz/QuartzModule.java
@@ -17,8 +17,8 @@
*/
import static com.google.inject.Scopes.SINGLETON;
-import static com.google.inject.internal.util.$Preconditions.checkNotNull;
-import static com.google.inject.internal.util.$Preconditions.checkState;
+import static com.google.common.base.Preconditions.checkNotNull;
+import static com.google.common.base.Preconditions.checkState;
import static com.google.inject.multibindings.Multibinder.newSetBinder;
import static java.util.TimeZone.getTimeZone;
import static org.nnsoft.guice.guartz.Scheduled.DEFAULT;