First i found many posts and many solutions for my problem here but no one works.
I have this error message when I update snapshot in my project
18/04/11 09:23:13 CEST: Missing artifact org.apache.commons.monitoring:commons-monitoring-core:jar:1.0-SNAPSHOT:compile
and in my pom.xml file I have the great dependency
<dependency> <groupId>org.apache.commons.monitoring</groupId> <artifactId>commons-monitoring-core</artifactId> <version>1.0-SNAPSHOT</version> </dependency>
jar file is on the server and i can find it in command line
If anybody have an idea for this pb, he save my day
thx
code<repository> <id>apache.snapshots</id> <url>http://the_link</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </snapshots> </repository>but it's didn't work – user712974 Apr 18 '11 at 13:14