On Sun, 2003-07-20 at 13:05, Dave Ford wrote: > What dependency types does maven support besides jar files?
Currently any type is supported for downloading but other than that there is no support. By this I mean you can specify something like the following: <dependency> <groupId>foo</groupId> <artifactId>bar</artifactId> <type>war</type> <version>1.0</version> </dependency> And maven will look for foo/wars/bar-1.0.war in the remote repository and put it in your local repository but any support further than that is not implemented. For example there is no way to put an arbitrary type into the classpath and no way to generate a dependency path in Jelly for artifacts other than JARs. Michal has implemented a mechanism that is in the maven-new code and I will backport it into Maven but currently full and completel support for arbitrary artifact types is limited. > Dave Ford > Smart Soft - The Developer Training Company > http://www.smart-soft.com > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] -- jvz. Jason van Zyl [EMAIL PROTECTED] http://tambora.zenplex.org In short, man creates for himself a new religion of a rational and technical order to justify his work and to be justified in it. -- Jacques Ellul, The Technological Society --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
