SLING-10808 - Generate scripting capabilities from Jackrabbit FileVault content packages

* documented the priority of the bundled scripts over resource tree scripts
diff --git a/examples/org-apache-sling-scripting-content-package-with-bundle-attached/README.md b/examples/org-apache-sling-scripting-content-package-with-bundle-attached/README.md
new file mode 100644
index 0000000..3f32655
--- /dev/null
+++ b/examples/org-apache-sling-scripting-content-package-with-bundle-attached/README.md
@@ -0,0 +1,9 @@
+Precompiled Bundled Scripts - extracting capabilities from content packages
+====
+
+This project showcases how the [`scriptingbundle-maven-plugin`](https://sling.apache.org/components/scriptingbundle-maven-plugin/)
+can be used to extract capabilities from a [FileVault](https://jackrabbit.apache.org/filevault/) content package.
+Although both the content package and the generated bundle will be deployed during build-time to the instance,
+the rendering for the resource types handled by the scripts available in this project will be performed via the
+generated bundle. The servlets instantiated for this bundle will [have priority](https://sling.apache.org/documentation/bundles/scripting.html#script-resolution-order) over scripts from the resource tree
+for the same resource type/selectors combinations.
diff --git a/examples/org-apache-sling-scripting-content-package-with-bundle-attached/src/main/content/META-INF/vault/filter.xml b/examples/org-apache-sling-scripting-content-package-with-bundle-attached/src/main/content/META-INF/vault/filter.xml
index 530f9a2..49515db 100644
--- a/examples/org-apache-sling-scripting-content-package-with-bundle-attached/src/main/content/META-INF/vault/filter.xml
+++ b/examples/org-apache-sling-scripting-content-package-with-bundle-attached/src/main/content/META-INF/vault/filter.xml
@@ -18,9 +18,6 @@
   ~ under the License.
   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
 <workspaceFilter version="1.0">
-    <!-- 
-        Do not pack the apps folder!
-        <filter root="/apps/sling/scripting/example-cp"/>
-    -->
+    <filter root="/apps/sling/scripting/example-cp"/>
     <filter root="/content/bundled-scripts/example-cp"/>
 </workspaceFilter>