Index: src/main/java/org/apache/jackrabbit/filevault/maven/packaging/VaultMojo.java
===================================================================
--- src/main/java/org/apache/jackrabbit/filevault/maven/packaging/VaultMojo.java (revision 1816417)
+++ src/main/java/org/apache/jackrabbit/filevault/maven/packaging/VaultMojo.java (working copy)
@@ -297,7 +297,19 @@
/**
* Defines the content package type. this is either 'application', 'content', 'container' or 'mixed'.
* If omitted, it is calculated automatically based on filter definitions. certain package types imply restrictions,
- * for example, 'application' and 'content' packages are not allowed to contain sub packages or embedded bundles.
+ * for example, 'application' and 'content' packages are not allowed to contain sub packages or embedded bundles.
+ * Possible values:
+ *
application: An application package consists purely of application content. It serializes
+ * entire subtrees with no inclusion or exclusion filters. it does not contain any subpackages nor OSGi
+ * configuration or bundles.content: A content package consists only of content and user defined configuration.
+ * It usually serializes entire subtrees but can contain inclusion or exclusion filters. it does not contain
+ * any subpackages nor OSGi configuration or bundles.container: A container package only contains sub packages and OSGi configuration and bundles.
+ * The container package is only used as container for deployment.mixed: Catch all type for a combination of the above.