SLING-7587 - Create a CLI-only tool to sync content

Update the Jenkinsfile to also build the CLI modules.
diff --git a/Jenkinsfile b/Jenkinsfile
index c040451..d37e9d6 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -18,6 +18,15 @@
             }
         }
 
+        stage ('Build CLI bundles') {
+            steps {
+                timeout(10) {
+                    sh 'mvn -f cli clean install'
+                }
+                junit 'shared/**/surefire-reports/*.xml'
+            }
+        }
+
         stage ('Build shared code P2 repository') {
             steps {
                 timeout(10) {