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 d8c44e26b77330e24e4e3015f5b4a5ce892ebad4 Author: Carsten Ziegeler <[email protected]> AuthorDate: Mon Jul 4 07:47:41 2011 +0000 Code cleanup - remove unused stuff. git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/maven/maven-launchpad-plugin@1142582 13f79535-47bb-0310-9956-ffa450edef68 --- .../projectsupport/AbstractBundleListMojo.java | 24 ---------------------- 1 file changed, 24 deletions(-) diff --git a/src/main/java/org/apache/sling/maven/projectsupport/AbstractBundleListMojo.java b/src/main/java/org/apache/sling/maven/projectsupport/AbstractBundleListMojo.java index 2810c41..6ec799a 100644 --- a/src/main/java/org/apache/sling/maven/projectsupport/AbstractBundleListMojo.java +++ b/src/main/java/org/apache/sling/maven/projectsupport/AbstractBundleListMojo.java @@ -25,34 +25,10 @@ import org.apache.maven.project.MavenProjectHelper; public abstract class AbstractBundleListMojo extends AbstractMojo { /** - * @parameter expression="${configDirectory}" - * default-value="src/main/config" - */ - protected File configDirectory; - - /** - * JAR Packaging type. - */ - protected static final String JAR = "jar"; - - /** - * WAR Packaging type. - */ - protected static final String WAR = "war"; - - /** * Partial Bundle List type */ protected static final String PARTIAL = "partialbundlelist"; - protected static boolean shouldCopy(File source, File dest) { - if (!dest.exists()) { - return true; - } else { - return source.lastModified() > dest.lastModified(); - } - } - /** * @parameter default-value="${basedir}/src/main/bundles/list.xml" */ -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
