Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem with IVY. I configured the mvnrepository correctly in the config file, ivysettings.

Here is the config file:

<ibiblio name="maven" root="http://repo1.maven.org/maven2/" m2compatible="true" />

Here is the dep request:

<dependency org="net.sf.json-lib" name="Json-lib" rev="2.4" conf="default->compile"/>   

Here is the module:

http://mvnrepository.com/artifact/net.sf.json-lib/json-lib/2.4

Here is the POM file for json-lib:

http://repo1.maven.org/maven2/net/sf/json-lib/json-lib/2.4/json-lib-2.4.pom

So as you can see, everything is in its place and works properly.

BUT!!

It doesn't download this module. No files what so ever. :SSS

Do you have any advice on why is he doing this??

Thanks!!!!

EDIT: Was fixed by deleting cache which then led to the problem that it was looking for a wrong JAR file name.

share|improve this question
did you try the verbose (-v) mode of ant, this offers a detailed trace of the request – oers Aug 4 '11 at 12:50
Yeah I did. It says the the dep is found. But afterwards isn't listed under the download section. :( – Hannibal Aug 4 '11 at 13:02
1  
try deleting the ivy cache ${user.}/.ivycache, maybe something is broken there, happens sometimes when changing resolvers – oers Aug 4 '11 at 13:10
Thanks!! That lead me to the problem.. It was looking for a false JAR file, because the DAMN POM is pointing to a wrong JAR file name. DAMN IT!!!!!! Thanks, never the less... – Hannibal Aug 4 '11 at 13:24
This is duplicate of stackoverflow.com/questions/6942989/… – Mark O'Connor Aug 5 '11 at 6:31

closed as too localized by bmargulies, bažmegakapa, Robert Harvey Aug 6 '11 at 4:36

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Was fixed by deleting cache which then led to the problem that it was looking for a wrong JAR file name.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.