I want to download the sources for wicket 1.4-rc7, they exists at maven repo

http://repo2.maven.org/maven2/org/apache/wicket/wicket/1.4-rc7/

The command is
mvn -X dependency:sources -DincludeGroupIds=org.apache.wicket

But they are skipped

$ mvn dependency:sources -DincludeGroupIds=org.apache.wicket -Dverbose=true
[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'dependency'.
[INFO]
------------------------------------------------------------------------
[INFO] Building CIP-DDA-Web
[INFO]    task-segment: [dependency:sources]
[INFO]
------------------------------------------------------------------------
[INFO] [dependency:sources]
[INFO]
[INFO] The following files have been resolved:
[INFO]    none
[INFO]
[INFO] The following files where skipped:
[INFO]    org.apache.wicket:wicket:java-source:sources:1.4-rc7
[INFO]    org.apache.wicket:wicket-auth-roles:java-source:sources:1.4-rc7
[INFO]    org.apache.wicket:wicket-datetime:java-source:sources:1.4-rc7
[INFO]    org.apache.wicket:wicket-extensions:java-source:sources:1.4-rc7
[INFO]    org.apache.wicket:wicket-ioc:java-source:sources:1.4-rc7
[INFO]    org.apache.wicket:wicket-spring:java-source:sources:1.4-rc7
[INFO]
[INFO]
------------------------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 5 seconds
[INFO] Finished at: Wed Jul 29 12:38:47 BRT 2009
[INFO] Final Memory: 15M/123M
[INFO]
------------------------------------------------------------------------

maven version is 2.0.10 

And I don't have any wicket sources previously downloaded
find /home/claudio/.m2 -name \*wicket\*source\* -type f

return no results

See the snipped of my pom related to the wicket dependency

<dependency>
            <groupId>org.apache.wicket</groupId>
            <artifactId>wicket</artifactId>
            <version>${wicket.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.wicket</groupId>
            <artifactId>wicket-extensions</artifactId>
            <version>${wicket.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.wicket</groupId>
            <artifactId>wicket-auth-roles</artifactId>
            <version>${wicket.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.wicket</groupId>
            <artifactId>wicket-spring</artifactId>
            <version>${wicket.version}</version>
            <!-- exclude spring framework that wicket pulls in -->
            <exclusions>
                <exclusion>
                    <groupId>org.springframework</groupId>
                    <artifactId>spring</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.apache.wicket</groupId>
            <artifactId>wicket-datetime</artifactId>
            <version>${wicket.version}</version>
        </dependency>

    <properties>
        <wicket.version>1.4-rc7</wicket.version>
    </properties>

Why are those files skipped ?

Thanks

Claudio Miranda

-----
Claudio Miranda
http://weblogs.java.net/blog/claudio
http://www.claudius.com.br/blog
-- 
View this message in context: 
http://www.nabble.com/dependency%3Asources-doesn%27t-download-source-files-tp24722349p24722349.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to