-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi,
> <repositories> > <repository> > <id>Private maven2 snapshots repository</id> > <url>http://jwebunit.sourceforge.net/m2-repo-snapshots</url> > </repository> > </repositories> (...) > <dependency> > <groupId>net.sourceforge.jwebunit</groupId> > <artifactId>jwebunit-core</artifactId> > <version>1.3-SNAPSHOT</version> > </dependency> > > However, I get the following error when I run "mvn compile": > > [INFO] snapshot > net.sourceforge.jwebunit:jwebunit-core:1.3-SNAPSHOT:checking for > updates from Private maven2 snapshots repository > Downloading: > http://jwebunit.sourceforge.net/m2-repo-snapshots/net/sourceforge/jwebunit/jwebunit-core/1.3-SNAPSHOT/jwebunit-core-1.3-SNAPSHOT.pom > > [WARNING] Unable to get resource from repository Private maven2 snapshots > repository (http://jwebunit.sourceforge.net/m2-repo-snapshots) To be able to access snapshots you should add the following to your repositores section: <repository> <id>Private maven2 snapshots repository</id> <url>http://jwebunit.sourceforge.net/m2-repo-snapshots</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> Then your dependency should work... HTH Thorsten -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (MingW32) iD8DBQFElm/ZQvObkgCcDe0RAjwAAJ4hRroChiwG3U+8B8yKuvJpyYXdKgCgkEIP rrkFOUo7BcxnsoE6ull8ryc= =h72r -----END PGP SIGNATURE----- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
