Hi viktor, this one probably belongs on the turbine-maven-user list, but anyway :)
[EMAIL PROTECTED] wrote on 29/10/2002 10:43:22 PM: > hi, > > On Mon, 28 Oct 2002 19:03:08 +1100, [EMAIL PROTECTED] said: > > Done.... > > > > See http://www.ibiblio.org/maven/tapestry/jars/ and > > http://www.ibiblio.org/maven/ognl/jars/ > > i have a maven/tapestry related problem.. > > http://www.ibiblio.org/maven/tapestry/jars/ has both > net.sf.tapestry-2.2.jar and net.sf.tapestry.contrib-2.2.jar > > how can i use them at the same time? > > in project.xml tried using both > > <dependency> > <id>tapestry</id> > <jar>net.sf.tapestry-2.2.jar</jar> > <jar>net.sf.tapestry.contrib-2.2.jar</jar> > </dependency> > > and > > <dependency> > <id>tapestry</id> > <jar>net.sf.tapestry-2.2.jar</jar> > </dependency> > <dependency> > <id>tapestry</id> > <jar>net.sf.tapestry.contrib-2.2.jar</jar> > </dependency> Try: <dependency> <id>tapestry</id> <jar>net.sf.tapestry-2.2.jar</jar> </dependency> <dependency> <id>tapestry+contrib</id> <jar>net.sf.tapestry.contrib-2.2.jar</jar> </dependency> > any thoughts? Let me know how it goes... -- dIon Gillard, Multitask Consulting Work: http://www.multitask.com.au Developers: http://adslgateway.multitask.com.au/developers ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Tapestry-developer mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/tapestry-developer
