This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag maven-launchpad-plugin-2.1.0 in repository https://gitbox.apache.org/repos/asf/sling-maven-launchpad-plugin.git
commit 5039e0f525bbe8bb83c78af6ad7b77381e869604 Author: Carsten Ziegeler <[email protected]> AuthorDate: Mon Jul 11 15:41:26 2011 +0000 SLING-2135 : Copying of resources should respect default includes git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/maven/maven-launchpad-plugin@1145208 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/sling/maven/projectsupport/PreparePackageMojo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/sling/maven/projectsupport/PreparePackageMojo.java b/src/main/java/org/apache/sling/maven/projectsupport/PreparePackageMojo.java index f0788bb..1d8c989 100644 --- a/src/main/java/org/apache/sling/maven/projectsupport/PreparePackageMojo.java +++ b/src/main/java/org/apache/sling/maven/projectsupport/PreparePackageMojo.java @@ -277,7 +277,7 @@ public class PreparePackageMojo extends AbstractLaunchpadFrameworkMojo { private void copyConfigurationFiles() throws MojoExecutionException { try { - FileUtils.copyDirectory(configDirectory, new File(getOutputDirectory(), CONFIG_PATH_PREFIX)); + FileUtils.copyDirectory(configDirectory, new File(getOutputDirectory(), CONFIG_PATH_PREFIX), null, FileUtils.getDefaultExcludesAsString()); } catch (IOException e) { throw new MojoExecutionException("Unable to copy configuration files", e); } -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
