There is a similarity with my own debug log:

[DEBUG] [org.apache.maven.plugins:maven-clean-plugin].version=null
[DEBUG] [org.apache.maven.plugins:maven-clean-plugin].artifactVersion=null
[DEBUG] [org.apache.maven.plugins:maven-clean-plugin].effectiveVersion=null
[DEBUG] [org.apache.maven.plugins:maven-clean-plugin].specified=false
[DEBUG] [org.apache.maven.plugins:maven-clean-plugin].superPom.version=2.4.1

For you, it is the maven-clean-plugin that needs to be mentioned in the pom. See the update in my comment "04/Sep/13 7:22 AM". I did checkout your project and it failed with NPE. After adding this

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-clean-plugin</artifactId>
                <version>2.5</version>
            </plugin>
        </plugins>
    </build>

it worked.

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to