On Thursday 18 Sep 2003 21:10, Ciramella, EJ wrote: > Like I have said in an earlier help doc, I'm using the latest (B10) version > of maven, the online documentation says I can do this: > <dependency> > <id>commons-jelly</id> > <version>SNAPSHOT</version> > </dependency> > > but when I try: > > <dependency> > <id>castor</id> > <version>SNAPSHOT</version> > </dependency> > > I get the following error: > > Attempting to download castor-SNAPSHOT.jar. > Error retrieving artifact from > [http://www.ibiblio.org/maven/castor/jars/castor-SNAPSHOT.jar]:
That is correct behaviour. The commons-jelly-SNAPSHOT.jar exists on Ibiblio, whereas the castor-SNAPSHOT.jar does NOT exist, so Maven is behaving correctly. Go to http://www.ibiblio.org/maven/castor/jars and have a look You can retrieve a SNAPSHOT jar IF ONE EXISTS in the repository. -- Andy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
