Gentoo Archives: gentoo-java

From: Scott Amort <jsamort@×××××.com>
To: gentoo-java@l.g.o
Subject: Re: [gentoo-java] contributing to Gentoo Java
Date: Fri, 22 Sep 2006 20:18:31
Message-Id: 1158956253.7524.5.camel@localhost
In Reply to: Re: [gentoo-java] contributing to Gentoo Java by Joshua Nichols
1 Hi Joshua,
2
3 On Fri, 2006-09-22 at 14:31 -0400, Joshua Nichols wrote:
4 > I'm not sure what you mean. Are you referring to ant scripts that
5 > download their dependencies? Is there a specific build.xml that you're
6 > not sure to handle? If so, please share and we can take a look at it.
7
8 Yes, here is an example:
9
10 </target>
11 <target name="get-deps" unless="noget" depends="init">
12 <!--Proxy settings works only with a JDK 1.2 and higher.-->
13
14 <setproxy>
15 </setproxy>
16 <get dest="${libdir}/avalon-logkit-2.1.jar" usetimestamp="true"
17 ignoreerrors="true"
18 src="http://www.ibiblio.org/maven/avalon-logkit/jars/avalon-logkit-2.1.jar">
19 </get>
20 </target>
21
22 What approach should I use to prevent the build from downloading this
23 jar and instead using one provided by the avalon-logkit ebuild?
24
25 Thanks!
26
27 Scott
28
29 --
30 gentoo-java@g.o mailing list

Replies

Subject Author
Re: [gentoo-java] contributing to Gentoo Java Vlastimil Babka <caster@g.o>