On Fri, Jul 11, 2008 at 5:53 AM, Brian Albers <[EMAIL PROTECTED]> wrote: > Maven gurus- > > I'm running into a problem which seems like it should be simple, but > I've had no luck in solving it with various Maven plugins. > > In a nutshell, I'm trying to use the assembly plugin to produce a .zip > file for my project, and as part of this I wish to include a full, > expanded version of Apache ActiveMQ. In particular, I'm trying to > include the version assembled by the ActiveMQ Maven and located in the > central repository at: > http://repo1.maven.org/maven2/org/apache/activemq/apache-activemq/5.1.0/ > > The catch is that I'm trying to include the fully-contained Windows > ZIP file ( apache-activemq-5.1.0-bin.zip ), and I have not found a way > to declare a dependency on it since it has been assembled end in > "-bin.zip" rather than ".zip". I figured that if I could declare a > dependency on it, I could use a few different options to extract it > into my own assembly. However, I haven't been able to configure Maven > to locate the .zip I want because of its name. > > Is there a way to declare a dependency on that specific .zip? Or am I > going at this entirely the wrong way. > > Thanks in advance!
Did you try to specify "bin" as the classifier? I think that should work, although I haven't tried using classifiers with the assembly plugin myself. -- - Jan Fredrik Wedén --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
