What part of wicketstuff do you want to use in your project? The "wicketstuff-core" artifact is not a JAR artifact. You have to specify the actual JAR you need, like "annotation", for example:
<dependency> <groupId>org.wicketstuff</groupId> <artifactId>annotation</artifactId> <version>1.4.2-SNAPSHOT</version> </dependency> Warren Bell-2 wrote: > > I am trying to retrieve wicketstuff-core from repository and am getting > the following "Missing artifact". > > Missing artifact > org.wicketstuff:wicketstuff-core:jar:1.4.2-SNAPSHOT:compile > > my pom > > ... > <repository> > <id>wicket-snaps</id> > <url>http://wicketstuff.org/maven/repository</url> > <snapshots> > <enabled>true</enabled> > </snapshots> > <releases> > <enabled>true</enabled> > </releases> > </repository> > ... > > <dependency> > <groupId>org.wicketstuff</groupId> > <artifactId>wicketstuff-core</artifactId> > <version>1.4.2-SNAPSHOT</version> > </dependency> > ... > > > What am I doing wrong? > > Thanks, > > Warren > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > > -- View this message in context: http://old.nabble.com/Maven-problem-with-wicketstuff-tp27332061p27332549.html Sent from the Wicket - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
