Hello, First, the Dojo zip file must be in a maven remote repository somewhere. If it isn't, you could just put it in private remote repository and point your project at it using the <repositories> element. There are lots of docs on setting up your own repository. It's just a directory structure like what you see on ibiblio. You don't even need a webserver if you're working alone; just give your pom a file:// <url> pointed at the repository root.
Second, you can tell maven that the dependency is a zip and not a jar using <type>zip</type> in your <dependency> section. Paul -- View this message in context: http://www.nabble.com/Downloading-a-non-jar-dependancy-tf2503103.html#a6981477 Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
