I'm using the ceylon copy command of ceylon version 1.2.3 to download a dependency:
./bin/ceylon copy --rep "http://repo.maven.apache.org/maven2/" -out outdir "joda-time:joda-time/2.9.4"
Why is the result that the tools skips downloading it?
Module joda-time:joda-time/2.9.4 [1/1]) Skipped.
The tool looks - among others - for:
http://repo.maven.apache.org/maven2//joda-time:joda-time/2.9.4/joda-time:joda-time-2.9.4.jar
... but it should look for:
http://repo.maven.apache.org/maven2/joda-time/joda-time/2.9.4/joda-time-2.9.4.jar
Logically the following should then work:
./bin/ceylon copy --rep "http://repo.maven.apache.org/maven2/" --out here --verbose --jvm "joda-time/2.9.4"
... but it tells me:
... Module joda-time/2.9.4 not found ...
... similarily with:
./bin/ceylon copy --rep "http://repo.maven.apache.org/maven2/" --out here --verbose --jvm "joda-time-2.9.4.jar"
... and with:
./bin/ceylon copy --rep "http://repo.maven.apache.org/maven2/" --out here --verbose --jvm "joda-time-2.9.4"
How can I make the copy tool construct the url correctly and get the module downloaded to my local repository?