diff --git a/_ci/build.sh b/_ci/build.sh
index 285c1061..0c9c18f9 100644
--- a/_ci/build.sh
+++ b/_ci/build.sh
@@ -8,8 +8,11 @@ pushd "$(dirname "${BASH_SOURCE[0]}")/../"
# Always build the image, but only publish from the "master" branch
[ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_BRANCH}" = "master" ] && PROFILE="internal" || PROFILE="local"
+# If the branch is "master" and the commit is not a Pull Request then deploy the JAR SNAPSHOT artifacts
+[ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_BRANCH}" = "master" ] && DEPLOY="deploy" || DEPLOY="install"
+
mvn -B -U \
- clean install \
+ clean ${DEPLOY} \
-DadditionalOption=-Xdoclint:none -Dmaven.javadoc.skip=true \
"-P${PROFILE},docker-it-setup"
diff --git a/alfresco-docker-tika/pom.xml b/alfresco-docker-tika/pom.xml
index e797e61c..819b9f42 100644
--- a/alfresco-docker-tika/pom.xml
+++ b/alfresco-docker-tika/pom.xml
@@ -75,6 +75,11 @@
org.bouncycastle
bcmail-jdk15on
+
+
+ org.quartz-scheduler
+ quartz
+