I just updated from svn again and I'm still having this problem. I've checked out the entire wicket trunk including jdk-1.4 and jdk-1.5. I just updated and did the following:
cd wicket/jdk-1.4/wicket mvn install -Dmaven.test.skip=true But this complains of dependencies missing versions. It works fine if I add versions to portlet-api and portals-bridges-common. Perhaps I'm not doing something I need to do with maven. I am fairly new to it. I've got it working by editing the POM to include versions. But it would be nice to not have to do this. How do others make this work? Any suggestions? Tauren On 10/11/07, John Patterson <[EMAIL PROTECTED]> wrote: > Have you checked out the entire wicket source tree - that contains > jdk14, jdk15 etc? If not then maybe the individual poms cannot find > the parent pom that defines those version variables. > > On 11 Oct 2007, at 22:46, Tauren Mills wrote: > > > I just updated wicket, wicket-extensions and wicket-examples from > > trunk. When I tried to run mvn install eclipse:eclpise, I got errors > > stating that there were dependencies missing versions. So I added > > versions to the pom.xml for wicket and wicket-examples. Now mvn runs. > > > > Am I doing something wrong, or do the pom.xml files in trunk need > > versions? Changing them to contain version params did the trick, but > > should it work without them? > > > > wicket/pom.xml: > > > > <dependency> > > <groupId>javax.portlet</groupId> > > <artifactId>portlet-api</artifactId> > > <version>1.0</version> > > <scope>provided</scope> > > <optional>true</optional> > > </dependency> > > <dependency> > > <groupId>org.apache.portals.bridges</groupId> > > <artifactId>portals-bridges-common</artifactId> > > <version>1.0.3</version> > > <scope>provided</scope> > > <optional>true</optional> > > </dependency> > > > > wicket-examples/pom.xml: > > > > <dependency> > > <groupId>javax.portlet</groupId> > > <artifactId>portlet-api</artifactId> > > <version>1.0</version> > > <scope>provided</scope> > > </dependency> > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
