I'm sure this has come up before, so I'm hoping there's a quick and easy 
answer.  It seems that the javamail jars are not available on ibiblio, so I 
created my own repository.  There's a number of them that I would like to use:

activation.jar
imap.jar
mail.jar
mailapi.jar
pop3.jar
smtp.jar

I'm porting a project to Maven and it requires these jars, as well as ftp.jar 
(any idea where I can find this?).

It's be awesome if I could do something like the fragment below, but it only 
picks up the last one in the list, implying that I have to create 6 different 
<dependencies> - is this correct?

        <dependency>
            <id>javamail</id>
            <jar>activation.jar</jar>
            <jar>imap.jar</jar>
            <jar>mail.jar</jar>
            <jar>mailapi.jar</jar>
            <jar>pop3.jar</jar>
            <jar>smtp.jar</jar>
            <url>http://java.sun.com/products/javamail</url>
        </dependency>


Thanks,

Matt

-- Web: http://www.raibledesigns.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to