Return-Path: Delivered-To: apmail-ant-ivy-user-archive@www.apache.org Received: (qmail 90236 invoked from network); 22 Feb 2010 13:52:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 22 Feb 2010 13:52:29 -0000 Received: (qmail 36116 invoked by uid 500); 22 Feb 2010 13:52:29 -0000 Delivered-To: apmail-ant-ivy-user-archive@ant.apache.org Received: (qmail 36045 invoked by uid 500); 22 Feb 2010 13:52:29 -0000 Mailing-List: contact ivy-user-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ivy-user@ant.apache.org Delivered-To: mailing list ivy-user@ant.apache.org Received: (qmail 36035 invoked by uid 99); 22 Feb 2010 13:52:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Feb 2010 13:52:29 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [195.159.241.226] (HELO mail.knowit.no) (195.159.241.226) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Feb 2010 13:52:20 +0000 Received: from cobra.dmz.unified.no (cobra.dmz.unified.no [192.168.20.29]) by mail.knowit.no (Postfix) with ESMTP id 6AA4D1888B6 for ; Mon, 22 Feb 2010 14:51:58 +0100 (CET) Received: from localhost (localhost.localdomain [127.0.0.1]) by cobra.dmz.unified.no (Postfix) with ESMTP id 53D9AC8005 for ; Mon, 22 Feb 2010 14:51:58 +0100 (CET) X-Virus-Scanned: amavisd-new at cobra.dmz.unified.no Received: from cobra.dmz.unified.no ([127.0.0.1]) by localhost (cobra.dmz.unified.no [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id kHrTdZejW8SO for ; Mon, 22 Feb 2010 14:51:54 +0100 (CET) Received: from [192.168.10.177] (unknown [192.168.10.3]) by cobra.dmz.unified.no (Postfix) with ESMTP id ACF47C8001 for ; Mon, 22 Feb 2010 14:51:53 +0100 (CET) Message-ID: <4B828BF6.8040105@knowit.no> Date: Mon, 22 Feb 2010 14:51:50 +0100 From: =?ISO-8859-1?Q?=22H=E5gen_P=2E_Hasle=22?= User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) MIME-Version: 1.0 To: ivy-user@ant.apache.org Subject: Re: Attach source in Eclipse References: <4B700933.8000100@knowit.no> <4B72B0FC.1010601@knowit.no> <37FAD4F0-4093-40F5-8478-564364FFA5BD@hibnet.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org Hi! Could you explain to me how you do this with 2 separate retrieves? I'm still struggling with the same problem. I haven't configured IvyDE to retrieve the jars at all, it refers to the jars directly in the ivy cache. But the sources are never copied into the cache.. regards, Haagen John skrev: > Is it possible to get get jars as "name"-"version".jar and sources as > "name"-"version"-source.jar within 1 retrieve statement? If yes, how? > How to do it in 2 separate retrieves is clear to me. > > 2010/2/13 : > >> Thank you for your answer. >> >> I have tried to put the sources in the same directory as the lib in the >> maven repo, and named them with "name"-"version"-source.jar. That didn't >> help. >> >> What I don't understand is how I can set the type of the artifact in the >> maven repo? In my ivy.xml files I've always written "compile->default" when >> I depend on a file in maven. I tried to write "compile->source", but then >> Ivy told me I had used a nonexisting type. >> >> I guess it would have been easier if I had used an Ivy-repo instead of a >> Maven-repo, but we use Maven in other projects, so I wanted to share the >> repo. >> >> Regards, H�gen >> >> Sendt fra min iPhone >> >> Den 13. feb. 2010 kl. 10.36 skrev Nicolas Lalev�e >> : >> >> >>> Le 10 f�vr. 2010 � 14:13, H�gen P. Hasle a �crit : >>> >>> >>>> Can nobody help me with this? Am I asking the wrong question, or not >>>> giving enough information? >>>> Or maybe I'm giving too much information. All I want is to attach source >>>> to a library in Eclipse that IvyDE resolves for me from a local filebased >>>> Maven repository. I'm sure there must be a way to do this..? >>>> >>> The sources are automatically attached based on the found artifacts of a >>> module. IvyDE will look for source artifacts which has the type "source" or >>> "src" or "sources" (configurable in the container configuration panel), and >>> it will try to make the name match with suffixes: for X.jar it will search >>> for X.jar, X-src.jar, X-sources.jar, X-source.jar, (also configurable). >>> >>> But there is an issue with transitive dependencies of source and javadoc >>> in the maven integration [1] which might get your case not working. >>> >>> Nicolas >>> >>> [1] https://issues.apache.org/jira/browse/IVY-1003 >>> >>> >>>> Regards, Haagen >>>> >>>> H�gen P. Hasle skrev: >>>> >>>>> Hi! >>>>> >>>>> I have rewritten a rather big project to use Ivy and IvyDE in Eclipse. >>>>> It's working good, but I'm not sure how to attach sourcecode to the >>>>> dependencies in Eclipse. >>>>> We are using a filebased Maven-repo on a network share, and I've built >>>>> this repo from our old (manual) dependencies. I've seen some suggestions as >>>>> to how you can attach sources in Eclipse, but if I understand correctly all >>>>> of them assume you use an Ivy repo. >>>>> >>>>> This is from the settings-file for the shared repo: >>>>> >>>>> >>>>> >>>>> >>>> pattern="L:\nsbesb\maven\repository/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" >>>>> /> >>>>> >>>>> >>>>> If I for example have a jar-file called X.jar in the repo, then I have >>>>> tried to add a x-sources.jar. This seems to be the way it is done in Maven, >>>>> and from the (rather sparse) documentation I've found for IvyDE, it seems to >>>>> be the way it's supposed to be done in Ivy(DE) too. >>>>> I've tried a couple of different approaches (adding a sources-conf, >>>>> adding another artifact to the settings-file for the shared repo, ++), but >>>>> so far without luck. Can anyone help me? >>>>> >>>>> >>>>> Regards, Haagen Hasle >>>>>