You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tuscany.apache.org by Meeraj Kunnumpurath <m....@hotmail.co.uk> on 2007/01/15 19:45:17 UTC

non mvn artifacts

Hi,

How do we handle dependencies on artifacts that are not maintaiend in mvn 
repos. I have a requirement to use the 2.4.1 release for jxta, however, they 
don't maintain the artifacts in any repos.

One option I thought was to download it as part of the build and install it 
to the local repo. I think we do something similar with sun jars for celtix.

Ta
Meeraj

_________________________________________________________________
Be the first to hear what's new at MSN - sign up to our free newsletters!  
http://www.msn.co.uk/newsletters


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


Re: non mvn artifacts

Posted by Meeraj Kunnumpurath <m....@hotmail.co.uk>.
I have done that as well, in fact, I am thinkining about volunteering to do 
the mavenisation.

Meeraj


>From: "Raymond Feng" <en...@gmail.com>
>Reply-To: tuscany-dev@ws.apache.org
>To: <tu...@ws.apache.org>
>Subject: Re: non mvn artifacts
>Date: Mon, 15 Jan 2007 11:01:26 -0800
>
>Why don't we ask the JXTA folks to publish the latest versions into maven2 
>repo if possible :-)?
>
>Thanks,
>Raymond
>
>----- Original Message ----- From: "Meeraj Kunnumpurath" 
><m....@hotmail.co.uk>
>To: <tu...@ws.apache.org>
>Sent: Monday, January 15, 2007 10:45 AM
>Subject: non mvn artifacts
>
>
>>Hi,
>>
>>How do we handle dependencies on artifacts that are not maintaiend in mvn 
>>repos. I have a requirement to use the 2.4.1 release for jxta, however, 
>>they don't maintain the artifacts in any repos.
>>
>>One option I thought was to download it as part of the build and install 
>>it to the local repo. I think we do something similar with sun jars for 
>>celtix.
>>
>>Ta
>>Meeraj
>>
>>_________________________________________________________________
>>Be the first to hear what's new at MSN - sign up to our free newsletters! 
>>http://www.msn.co.uk/newsletters
>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
>>For additional commands, e-mail: tuscany-dev-help@ws.apache.org
>>
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
>For additional commands, e-mail: tuscany-dev-help@ws.apache.org
>

_________________________________________________________________
MSN Hotmail is evolving – check out the new Windows Live Mail 
http://ideas.live.com


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


Re: non mvn artifacts

Posted by Raymond Feng <en...@gmail.com>.
Why don't we ask the JXTA folks to publish the latest versions into maven2 
repo if possible :-)?

Thanks,
Raymond

----- Original Message ----- 
From: "Meeraj Kunnumpurath" <m....@hotmail.co.uk>
To: <tu...@ws.apache.org>
Sent: Monday, January 15, 2007 10:45 AM
Subject: non mvn artifacts


> Hi,
>
> How do we handle dependencies on artifacts that are not maintaiend in mvn 
> repos. I have a requirement to use the 2.4.1 release for jxta, however, 
> they don't maintain the artifacts in any repos.
>
> One option I thought was to download it as part of the build and install 
> it to the local repo. I think we do something similar with sun jars for 
> celtix.
>
> Ta
> Meeraj
>
> _________________________________________________________________
> Be the first to hear what's new at MSN - sign up to our free newsletters! 
> http://www.msn.co.uk/newsletters
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: tuscany-dev-help@ws.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


Re: non mvn artifacts

Posted by Meeraj Kunnumpurath <m....@hotmail.co.uk>.
Thanks Bert, I will take a look.


>From: "Bert Lamb" <al...@pobox.com>
>Reply-To: tuscany-dev@ws.apache.org
>To: tuscany-dev@ws.apache.org
>Subject: Re: non mvn artifacts
>Date: Mon, 15 Jan 2007 13:50:21 -0500
>
>I do something similar to this in the helloworldjsonrpc sample, the
>sample uses the dojo toolkit and downloads it and installs it into the
>local maven repo if it isn't there already.  Have a look at
>samples/sca/helloworldjsonrpc/pom.xml and build.xml to see how it
>works.
>
>-Bert
>
>On 1/15/07, Meeraj Kunnumpurath <m....@hotmail.co.uk> wrote:
>>Hi,
>>
>>How do we handle dependencies on artifacts that are not maintaiend in mvn
>>repos. I have a requirement to use the 2.4.1 release for jxta, however, 
>>they
>>don't maintain the artifacts in any repos.
>>
>>One option I thought was to download it as part of the build and install 
>>it
>>to the local repo. I think we do something similar with sun jars for 
>>celtix.
>>
>>Ta
>>Meeraj
>>
>>_________________________________________________________________
>>Be the first to hear what's new at MSN - sign up to our free newsletters!
>>http://www.msn.co.uk/newsletters
>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
>>For additional commands, e-mail: tuscany-dev-help@ws.apache.org
>>
>>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
>For additional commands, e-mail: tuscany-dev-help@ws.apache.org
>

_________________________________________________________________
MSN Hotmail is evolving – check out the new Windows Live Mail 
http://ideas.live.com


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


Re: non mvn artifacts

Posted by Bert Lamb <al...@pobox.com>.
I do something similar to this in the helloworldjsonrpc sample, the
sample uses the dojo toolkit and downloads it and installs it into the
local maven repo if it isn't there already.  Have a look at
samples/sca/helloworldjsonrpc/pom.xml and build.xml to see how it
works.

-Bert

On 1/15/07, Meeraj Kunnumpurath <m....@hotmail.co.uk> wrote:
> Hi,
>
> How do we handle dependencies on artifacts that are not maintaiend in mvn
> repos. I have a requirement to use the 2.4.1 release for jxta, however, they
> don't maintain the artifacts in any repos.
>
> One option I thought was to download it as part of the build and install it
> to the local repo. I think we do something similar with sun jars for celtix.
>
> Ta
> Meeraj
>
> _________________________________________________________________
> Be the first to hear what's new at MSN - sign up to our free newsletters!
> http://www.msn.co.uk/newsletters
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: tuscany-dev-help@ws.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org