filevault-package:generate-cnd
Full name:
org.apache.jackrabbit:filevault-package-maven-plugin:1.3.7-SNAPSHOT:generate-cnd
Description:
Attributes:
- Requires a Maven project to be executed.
- Requires dependency resolution of artifacts in scope:
compile
. - The goal is thread-safe and supports parallel builds.
- Since version:
1.3.0
. - Binds by default to the lifecycle phase:
generate-sources
.
Required Parameters
Name | Type | Since | Description |
---|---|---|---|
<excludes> |
Set<String> |
- |
The file name patterns to exclude (in addition to the default ones mentioned at addDefaultExcludes . The format of each pattern is described in org.codehaus.plexus.util.DirectoryScanner . The comparison is against the path relative to the according filter root. Since this is hardly predictable it is recommended to use only filename/directory name patterns here but not take into account file system hierarchies!
Each value is either a regex pattern if enclosed within Default value is: **/.vlt,**/.vltignore,**/.gitignore,**/.gitattributes .User property is: vault.excludes . |
<jcrRootSourceDirectory> |
File[] |
- |
The directory that contains the jcr_root of the content. Multiple directories can be specified as a comma separated list, which will act as a search path and cause the plugin to look for the first existing directory.
This directory must be outside the Default value is: ${project.basedir}/jcr_root,${project.basedir}/src/main/jcr_root,${project.basedir}/src/main/content/jcr_root,${project.basedir}/src/content/jcr_root,${project.build.outputDirectory} .User property is: vault.jcrRootSourceDirectory . |
<metaInfVaultDirectory> |
File[] |
- |
The directory that contains the META-INF/vault. Multiple directories can be specified as a comma separated list, which will act as a search path and cause the plugin to look for the first existing directory.
This directory is added as fileset to the package archiver before the the This directory must be outside the Default value is: ${project.basedir}/META-INF/vault,${project.basedir}/src/main/META-INF/vault,${project.basedir}/src/main/content/META-INF/vault,${project.basedir}/src/content/META-INF/vault .User property is: vault.metaInfVaultDirectory . |
<workDirectory> |
File |
- |
The output directory for goal generate-metadata and additional input directory containing the metadata to be packaged up into the content package for goal package . The directory name is suffixed with -<classifier> in case a classifier is used. In case of the package goal this falls back to the non-suffixed directory name in case the one with suffix does not exist.
This directory must not contain any other files/directories than those being generated by the Default value is: ${project.build.directory}/vault-work . |
Optional Parameters
Name | Type | Since | Description |
---|---|---|---|
<addDefaultExcludes> |
boolean |
1.1.0 |
By default certain metadata files are excluded which means they will not be copied into the package. If you need them for a particular reason you can do that by setting this parameter to false . This means all files matching the following Ant patterns won't be copied by default.
See also: org.codehaus.plexus.util.AbstractScanner.DEFAULTEXCLUDES Default value is: true . |
<additionalInputCndUrls> |
List<String> |
- |
List of URLs pointing to a CND which define the additional namespaces and node types potentially used in this package apart from the default ones defined in JCR 2.0. If a URI is pointing to a JAR it will leverage all the node types being mentioned in the Sling-Nodetypes manifest header. Apart from the standard protocols the scheme tccl can be used to reference names from the Thread's context class loader. In the Maven plugin context this is the plugin classloader.User property is: vault.inputCndUrls . |
<builtContentDirectory> |
File |
- |
Deprecated. The directory containing the content to be packaged up into the content package. |
<classifier> |
String |
1.1.4 |
Optional classifier to add to the generated package. If given, the artifact will be attached as a supplemental artifact having this classifier. Also all generated metadata will be pushed to <workDirectory>-<classifier> and will preferably be looked up from there. In addition the embedded file names will be exchanged leveraging a classifier specific property.User property is: vault.classifier . |
<outputTimestamp> |
String |
1.1.0 |
Timestamp for reproducible output archive entries, either formatted as ISO 8601 yyyy-MM-dd'T'HH:mm:ssXXX or as an int representing seconds since the epoch (like SOURCE_DATE_EPOCH).Default value is: ${project.build.outputTimestamp} . |
<prefix> |
String |
- |
Adds a path prefix to all resources. Useful for shallower source trees. This does not apply to files in workDirectory nor metaInfVaultDirectory but e.g. is relevant for the default filter and for the jcr_root of the package. Must start with "/" if not empty. As separator only forward slashes are allowed. The trailing slash is automatically appended if not there.User property is: vault.prefix . |
Parameter Details
<addDefaultExcludes>
false
. This means all files matching the following Ant patterns won't be copied by default.
- Misc: **/*~, **/#*#, **/.#*, **/%*%, **/._*
- CVS: **/CVS, **/CVS/**, **/.cvsignore
- SVN: **/.svn, **/.svn/**
- GNU: **/.arch-ids, **/.arch-ids/**
- Bazaar: **/.bzr, **/.bzr/**
- SurroundSCM: **/.MySCMServerInfo
- Mac: **/.DS_Store
- Serena Dimension: **/.metadata, **/.metadata/**
- Mercurial: **/.hg, **/.hg/**
- GIT: **/.git, **/.git/**
- Bitkeeper: **/BitKeeper, **/BitKeeper/**, **/ChangeSet, **/ChangeSet/**
- Darcs: **/_darcs, **/_darcs/**, **/.darcsrepo, **/.darcsrepo/****/-darcs-backup*, **/.darcs-temp-mail
See also: org.codehaus.plexus.util.AbstractScanner.DEFAULTEXCLUDES
- Type:
boolean
- Since:
1.1.0
- Required:
No
- Default:
true
<additionalInputCndUrls>
Sling-Nodetypes
manifest header. Apart from the standard protocols the scheme tccl
can be used to reference names from the Thread's context class loader. In the Maven plugin context this is the plugin classloader.- Type:
java.util.List<java.lang.String>
- Required:
No
- User Property:
vault.inputCndUrls
<builtContentDirectory>
jcrRootSourceDirectory
instead.- Type:
java.io.File
- Required:
No
<classifier>
<workDirectory>-<classifier>
and will preferably be looked up from there. In addition the embedded file names will be exchanged leveraging a classifier specific property.- Type:
java.lang.String
- Since:
1.1.4
- Required:
No
- User Property:
vault.classifier
<excludes>
addDefaultExcludes
. The format of each pattern is described in org.codehaus.plexus.util.DirectoryScanner
. The comparison is against the path relative to the according filter root. Since this is hardly predictable it is recommended to use only filename/directory name patterns here but not take into account file system hierarchies!
Each value is either a regex pattern if enclosed within %regex[
and ]
, otherwise an Ant pattern.
- Type:
java.util.Set<java.lang.String>
- Required:
Yes
- User Property:
vault.excludes
- Default:
**/.vlt,**/.vltignore,**/.gitignore,**/.gitattributes
<jcrRootSourceDirectory>
This directory must be outside the workDirectory
.
- Type:
java.io.File[]
- Required:
Yes
- User Property:
vault.jcrRootSourceDirectory
- Default:
${project.basedir}/jcr_root,${project.basedir}/src/main/jcr_root,${project.basedir}/src/main/content/jcr_root,${project.basedir}/src/content/jcr_root,${project.build.outputDirectory}
<metaInfVaultDirectory>
This directory is added as fileset to the package archiver before the the workDirectory
. This means that files specified in this directory have precedence over the one present in the workDirectory
. For example, if this directory contains a properties.xml
it will not be overwritten by the generated one. A special case is the filter.xml
which will be merged with inline filters if present.
This directory must be outside the workDirectory
.
- Type:
java.io.File[]
- Required:
Yes
- User Property:
vault.metaInfVaultDirectory
- Default:
${project.basedir}/META-INF/vault,${project.basedir}/src/main/META-INF/vault,${project.basedir}/src/main/content/META-INF/vault,${project.basedir}/src/content/META-INF/vault
<outputTimestamp>
yyyy-MM-dd'T'HH:mm:ssXXX
or as an int representing seconds since the epoch (like SOURCE_DATE_EPOCH).- Type:
java.lang.String
- Since:
1.1.0
- Required:
No
- Default:
${project.build.outputTimestamp}
<prefix>
workDirectory
nor metaInfVaultDirectory
but e.g. is relevant for the default filter and for the jcr_root of the package. Must start with "/" if not empty. As separator only forward slashes are allowed. The trailing slash is automatically appended if not there.- Type:
java.lang.String
- Required:
No
- User Property:
vault.prefix
<workDirectory>
generate-metadata
and additional input directory containing the metadata to be packaged up into the content package for goal package
. The directory name is suffixed with -<classifier>
in case a classifier
is used. In case of the package
goal this falls back to the non-suffixed directory name in case the one with suffix does not exist.
This directory must not contain any other files/directories than those being generated by the generate-metadata
goal.
- Type:
java.io.File
- Required:
Yes
- Default:
${project.build.directory}/vault-work