Re: Cannot download artifacts from a package repository on Gitlab

2022-11-01 Thread Archie Cobbs
Not sure if this is the problem, but sometimes after fixing things you need to rm -rf ~/.ivy2/cache/com.company.my to make ivy forget the earlier invalid state. If that doesn't fix it, then there should be an error/exception displayed when ivy tries to download it. On Tue, Nov 1, 2022 at 8:57 AM

Re: Any Ivy Committer able to check-in suggested patch?

2016-02-18 Thread Archie Cobbs
Hi, I would do it but for some reason my Apache ID ("archie") is no longer permitted to commit to the Ivy repository (it used to work). If whoever is in charge of that can fix it, I'll commit it for you... -Archie On Wed, Feb 17, 2016 at 6:41 AM, Markus Schlegel wrote: > Are there any commit

Re: latest-revision strategy selects no revision

2015-06-02 Thread Archie Cobbs
This may not be related, but if whatever web server ivy is pulling from does not generate directory listings (that ivy can parse) then ivy can't discover what revisions exist, so it then can't resolve revision ranges. -Archie On Tuesday, June 2, 2015, Geißler, Daniel wrote: > Hello, > > I am us

Re: conflict-managers

2014-07-08 Thread Archie Cobbs
Try using .. this works for me. -Archie On Tue, Jul 8, 2014 at 1:26 PM, wolfgang häfelinger wrote: > Hello there, > > I'm about to download certain dependencies in a local folder (M2 layout). > For example: > > == ivy.xml == > > > >rev="4.0.6.RELEASE" /> >rev="3.2.9

Re: help w/ oracle jars

2013-09-10 Thread Archie Cobbs
See also https://code.google.com/p/ivyroundup/wiki/ManuallyDownloadedSoftware which documents how to solve this problem. On Tue, Sep 10, 2013 at 8:51 AM, Tjeerd Verhagen wrote: > These javax.* as well as oracle jars, are not available through public > (Maven) repositories. > > Not sure if you ha

Maven blocking ivy

2013-08-26 Thread Archie Cobbs
FYI, Maven is blocking access to the scala-library module for any HTTP client with UserAgent containing "Java" due to some (unspecified) abuse. When I resolve scala-library via Ivy RoundUp, it fails due to this problem. Note this is using the packager resolver. So I filed IVY-1435

Re: IvyDE and packager resolver

2012-12-31 Thread Archie Cobbs
erties->Java Build Path and find your ivy > library (ie the reference to your ivy.xml file) and edit it > Pick the settings tab, enable project specific settings. In the ivy > settings path I put in this: > ${workspace_loc:madura-date-time-google/ivysettings.xml} > (change the project n

IvyDE and packager resolver

2012-12-28 Thread Archie Cobbs
I'm new to Eclipse and trying to get IvyDE working with Ivy's packager resolver. It doesn't seem to be working. IvyDE is unable to download artifacts for some reason, but the Ivy console doesn't show any explanation for the error except "null". Everything is fine (ivy.xml files are downloaded OK,

Re: Ivy in C/C++ environment

2012-12-07 Thread Archie Cobbs
The C/C++ world does have a de-facto standard for dependency management and builds. It's called RPM (or .deb, etc.). For example, check out the openSUSE build service. You have a pile of C/C++ code and need to define dependency meta-data? OK, then create an RPM spec fi

Re: 2 Questions for ivyIDE

2012-03-23 Thread Archie Cobbs
FYI, You can tell IvyDE to link sources and javadocs explicitly using custom attributes in your ivy.xml. See http://ant.apache.org/ivy/ivyde/history/trunk/cpc/jarmapping.html -Archie On Fri, Mar 23, 2012 at 6:28 AM, David Sills wrote: > All: > > Many thanks to all who answered. I can finally p

Re: Ivyde, ivy-roundup and 'source'

2012-02-28 Thread Archie Cobbs
Le 26 févr. 2012 à 21:56, Archie Cobbs a écrit : > > > 2012/2/25 Nicolas Lalevée > > > >> Le 24 févr. 2012 à 23:03, Archie Cobbs a écrit : > >>> People have complained about this for a long time. > >> > >> The semantic of the types in an ivy.xml

Re: Ivyde, ivy-roundup and 'source'

2012-02-26 Thread Archie Cobbs
2012/2/25 Nicolas Lalevée > Le 24 févr. 2012 à 23:03, Archie Cobbs a écrit : > > People have complained about this for a long time. > > The semantic of the types in an ivy.xml is specified by the one writing > them. So for each repository there could probably be as many mappi

Re: Ivyde, ivy-roundup and 'source'

2012-02-24 Thread Archie Cobbs
People have complained about this for a long time. I may be biased but in my opinion this is clearly an IvyDE problem: IvyDE should be associating sources to JARs using ivy configurations, not filenames. In fact, ivy does not define filenames, the user of ivy does (see this discussion

Re: workaround to consume legacy Ivy modules

2011-10-18 Thread Archie Cobbs
Just a thought... maybe instead you could write a resolver that contains a nested, normal resolver, and applies a configured XLST stylesheet to all of the ivy.xml files it downloads. Then what you want to do would be an easy specific case. -Archie On Tue, Oct 18, 2011 at 12:27 PM, Mitch Gitman w

Re: Publication Question: reference globs in artifact list

2011-10-05 Thread Archie Cobbs
I don't think there's any way to define "wildcard" artifacts. So either define a single large artifact that the user is required to unpack, or else have the packager resolver unpack it. In the latter case, you must update the ivy.xml file (and possibly the packager.xml file too) when a new versio

Re: circular dependency not detected

2011-08-08 Thread Archie Cobbs
On Mon, Aug 8, 2011 at 3:40 AM, Magnus Grimsell < magnus.grims...@idainfront.se> wrote: > I do have circularDependencyStrategy set to error in my ivy settings file. Oops, I missed that line of your email... now it makes more sense. > Doesn't that mean that Ivy should fail the build when I res

Re: circular dependency not detected

2011-08-04 Thread Archie Cobbs
Ha! I'd call that a feature, not a bug... :-) On Thu, Aug 4, 2011 at 2:34 AM, Magnus Grimsell < magnus.grims...@idainfront.se> wrote: > I'm working on integrating Ivy into our existing ant based build system. > I've only been working with this for a short period of time so I might have > missed s

Re: container supplied jars excluded in ivy

2011-07-24 Thread Archie Cobbs
On Sun, Jul 24, 2011 at 10:12 AM, Steve Prior wrote: > It occurs to me that which jars are installed standard on the servers is a > site wide configuration and shouldn't really be the concern of the > individual projects. I was thinking of defining a war configuration which > extends the runtime

Re: Building a Repo -- Excludes Question

2011-05-25 Thread Archie Cobbs
Some thoughts, not sure all are relevant... (not sure exactly what the goal is) You could create (and commit to SVN) your own private copy of the Ivy RoundUp repository. Since it doesn't contain artifacts, you won't be checking in large files. But, you could pre-load all of the archive files into

Re: Resolving Maven source jars to distinct folders

2011-05-19 Thread Archie Cobbs
Just include a [type]s directory in your retrieval pattern... all source JARs should have type "source". -Archie On Thu, May 19, 2011 at 9:19 AM, Carlton Brown wrote: > All, > > My users are requesting that source jars be retrieved into their own > distinct folder. We already use the config a

Re: Ivy Roundup Cobertura 1.4.X depends upon org.apache.oro which is now retired

2011-05-09 Thread Archie Cobbs
Fixed in r1601... will regenerate repo soon. On Mon, May 9, 2011 at 12:52 PM, Alan Chaney wrote: > Subject says it all. > > The link: > > http://www.apache.org/dist/jakarta/oro is now inoperative - there is an > archive link at: > > http://archive.apache.org/dist/jakarta/oro/ > > please could so

Re: How to add a complex project such as Spring or Hibernate to an ivy private Repository?

2011-04-14 Thread Archie Cobbs
On Thu, Apr 14, 2011 at 12:15 AM, Gareth Collins wrote: > I am curious (and I hope this does not sound rude) - what problem are you > really trying to solve with Ivy Roundup? > Ivy RoundUp was created because there wasn't any good repository for ivy users. Simply piggy-backing ivy off of maven r

Re: IVY design opinion

2011-04-06 Thread Archie Cobbs
What about just setting up an authenticated, HTTP-based ivy repository and using the Apache server logs as your audit trail? -Archie On Wed, Apr 6, 2011 at 1:07 PM, Shawn Castrianni < shawn.castria...@halliburton.com> wrote: > I have been using IVY for 3 years now and love it. I use the filesys

Re: Just the artifact I want...

2011-03-23 Thread Archie Cobbs
Try adding transitive="false" to your definition. I use this often to define a "javac" configuration (here's an example ). -Archie On Wed, Mar 23, 2011 at 8:43 AM, Richard_Senior wrote: > > Hello, > > Sorry for spamming the forum, but this

Re: Packager resolver log="quiet" doesn't supress download progress dots

2011-02-11 Thread Archie Cobbs
The quiet="true" setting on the settings element should be suppressing this output but a simple test shows that it does not. Sounds like a bug... please file one in JIRA . -Archie On Fri, Feb 11, 2011 at 10:25 AM, Jonathan Williams < spamhammer1...@gma

Re: repreport XSL?

2011-01-27 Thread Archie Cobbs
Apologies, I thought you were referring to ivy:report but you are talking about ivy:repreport. I've never run that report actually. I'd be interested to see what it looks like too :-) -Archie On Thu, Jan 27, 2011 at 10:05 AM, Archie Cobbs wrote: > No... I always just use the HTM

Re: repreport XSL?

2011-01-27 Thread Archie Cobbs
No... I always just use the HTML report that ivy:report generates.. i.e., I get these files produced automatically: build.graphml build.html build.xml ivy-report.css -Archie On Thu, Jan 27, 2011 at 9:58 AM, Kirby Files wrote: > Archie, does IvyRoundup have an xsl stylesheet for transforming

Re: Publishing C-module artifacts from different platforms

2011-01-12 Thread Archie Cobbs
I don't know of any way to "partially publish". You might need a two-step process, where the second step gathers the artifacts built on the various platforms together (and temporarily stored somewhere) and then does the actual ivy publishing. -Archie 2011/1/12 Felix Drueke > Hi, > > I'd like to

Re: Hello and a quick proposition

2011-01-11 Thread Archie Cobbs
The intersection of OSGi and Ivy is definitely an interesting area but I'm not sure any one person understands exactly what that means (at least, I don't :-) Presumably you have seen the bushel project... ? Currently ivy doesn't

Re: Problem with Xalan-2.7.1 and ivyroundup

2011-01-07 Thread Archie Cobbs
oth versions are pulled in. > > Any suggestions as to what I might do to fix this? > > Thanks in advance > > Alan > > > > On 1/6/2011 9:53 AM, Archie Cobbs wrote: > >> On Thu, Jan 6, 2011 at 11:33 AM, a...@mechnicality.com< >> a...@mechnicality.co

Re: Problem with Xalan-2.7.1 and ivyroundup

2011-01-06 Thread Archie Cobbs
On Thu, Jan 6, 2011 at 11:33 AM, a...@mechnicality.com < a...@mechnicality.com> wrote: > Also, looking at > http://ivyroundup.googlecode.com/svn/trunk/repo/modules/org.apache.xml/xalan-j/2.7.1/ivy.xmlwhy > are the xml-api jars showing up at all? the conf 'interp' should only > pull in xalan? > N

Re: Conflict Manager / Latest Strategy

2011-01-06 Thread Archie Cobbs
Try adding force="true" to all of the tags in the "A" project... We use this as a workaround for this bugin the latest-compatible conflict manager. -Archie On Thu, Jan 6, 2011 at 12:23 AM, Maurer Philipp < philipp.mau...@rheinmetall-ad.com> wrote:

Re: introducing Ivy to Maven users--ideas?

2011-01-04 Thread Archie Cobbs
On Tue, Jan 4, 2011 at 11:51 AM, Mitch Gitman wrote: > I know one area I'd like to touch on is the role of repository managers. > Are there use > cases or lessons learned from experience you’d like me to share? > I think a nice feature of Ivy (via packager resolver) is that your repositories don

Re: Ivy Roundup failing

2011-01-03 Thread Archie Cobbs
I think all of google hosting was having this problem earlier today.. it seems to be fixed now. -Archie On Mon, Jan 3, 2011 at 11:22 AM, Alan Chaney wrote: > Hi Andre > > I was getting the same problem in two browsers and also my ivyde in eclipse > but it seems to be working in all of them now.

Re: Exception when using package resolver

2010-12-23 Thread Archie Cobbs
It's a bug, but you can safely ignore it. This is occurring while the packager resolver is attempting to delete the temporary build directory it uses. However, the bug can only occur (according to the Javadocs) if an I/O error has occurred while attempting to delete some file(s). This probably inc

Re: Question about documentation

2010-10-05 Thread Archie Cobbs
On Tue, Oct 5, 2010 at 12:03 PM, David Sills wrote: > > conf="javac,test->default"/> > conf="base->runtime-xpp3,extras;bind->bind"/> > conf="javac->default"/> > > > I understand that this means: > > 1. There are 3 dependencies for the module. > 2. The JAR file log4j

Re: Question about documentation

2010-10-05 Thread Archie Cobbs
Maybe a simple example would help? If you are familiar with ant, then you should be able to decode this little project . All it does is use ivy to pull in a few JARs during the build, test, etc. phases. It uses some included ant macros to simp

Re: Please vote: changing the default conflict manager

2010-09-27 Thread Archie Cobbs
On Fri, Sep 24, 2010 at 9:32 AM, Mitch Gitman wrote: > But Archie, can you or anyone else articulate in your own words the rules > of > latest-compatible? The current brief description in the documentation can > be > interpreted to mean anything. I would find it troubling if the maintainers > of

Re: Please vote: changing the default conflict manager

2010-09-24 Thread Archie Cobbs
On Fri, Sep 24, 2010 at 9:32 AM, Mitch Gitman wrote: > But Archie, can you or anyone else articulate in your own words the rules > of > latest-compatible? The current brief description in the documentation can > be > interpreted to mean anything. I would find it troubling if the maintainers > of

Re: Please vote: changing the default conflict manager

2010-09-24 Thread Archie Cobbs
On Thu, Sep 23, 2010 at 11:17 AM, Niklas Matthies wrote: > > will choose Y=1.0 and everything is fine. Now suppose a few months > > later version 2.0 of Y is released and added to the repository. The > > next time A is resolved, ivy will choose version Y=2.0... even though > > the dependency in mo

Re: Please vote: changing the default conflict manager

2010-09-23 Thread Archie Cobbs
Glad to hear people are thinking about this and have opinions. On Thu, Sep 23, 2010 at 11:11 AM, Mitch Gitman wrote: > Frankly, I'm very happy that "latest-revision" is the default. I like it > when a framework or component does the "dumb" or literal thing rather than > the "smart" or magical th

Re: Please vote: changing the default conflict manager

2010-09-23 Thread Archie Cobbs
to 1.0 if 2.0 was available. > > James Davis * QA Engineer II/Software Engineer > Applied Technical Systems, Inc. * Information Engineering > web: www.atsid.com * e-mail: james.da...@atsid.com > (p) 360.698.7100 x241 * (f) 360.698.7200 > > -Original Message- > From: archi

Please vote: changing the default conflict manager

2010-09-23 Thread Archie Cobbs
In my opinion, the default behavior of ivy is very non-intuitive and violates POLA . I'm referring specifically to the default conflict manager being "latest-revision" instead of "latest-compatible". For a concrete example of what thi

Re: Beginner question

2010-08-29 Thread Archie Cobbs
First set up a resolver that points to the place you want to publish, e.g. /usr/local/repo. Then use ivy:publish to put your artifacts (and ivy.xml metadata) in there. FWIW here are a couple of ant macros that I use for this...

Re: ICY GWT Compile error

2010-08-19 Thread Archie Cobbs
I'd guess this is probably due to some change in the javac classpath before/after using ivy. I would edit your ant files to dump the classpath, so you can compare to see what changed. -Archie On Thu, Aug 19, 2010 at 12:34 PM, Ben Cuthbert wrote: > All > > I had some ant scripts and decided to i

Re: making an SCM managed copy of your external artifacts

2010-08-10 Thread Archie Cobbs
Here's what I do... 1. Set up a normal internal ivy repository. On the main/build server, a "publish" ant task publishes a built project to the internal repo (version number automatically includes SVN revision). 2. On the main server, SVN checkout Ivy RoundUp and publish this tree on the internal

Re: doxygen publication through ivy

2010-07-24 Thread Archie Cobbs
Ivy can only handle normal files as artifiacts. So you would want to ZIP up your doxygen directory into a file first, then publish that. -Archie On Fri, Jul 23, 2010 at 3:18 AM, Rupal Desai wrote: > Is there a way for me to publish doxygen directory through ivy? If so how? > > Rupal > -- A

Re: OSGI and IVY

2010-07-20 Thread Archie Cobbs
On Tue, Jul 20, 2010 at 12:53 PM, Shawn Castrianni < shawn.castria...@halliburton.com> wrote: > Has anybody researched the relationship between OSGI and IVY? I have a > large build system running on IVY and is working great. However, > development wants to move towards an OSGI runtime framework

Re: ivy issue

2010-07-15 Thread Archie Cobbs
cess calling to ivy is this ant script. > > On Thu, Jul 15, 2010 at 4:55 PM, Archie Cobbs wrote: > > > Then they must have gotten there some other way. In UNIX it's (normally) > > not > > possible for a non-root user to create files owned by root. > >

Re: ivy issue

2010-07-15 Thread Archie Cobbs
u let us know how ivy is being called? > >> > >> Andrew > >> > >> On 07/15/10 15:49, David Wink wrote: > >> > The problem is that I want them to named as the user I am running as. > >> The > >> > user is engserv. Most of the file

Re: ivy issue

2010-07-15 Thread Archie Cobbs
Whatever UNIX process is running ivy when it downloads those files must be running as root. This causes any files it creates to be owned by root. -Archie On Thu, Jul 15, 2010 at 2:14 PM, David Wink wrote: > I am trying to get a new build platform up and running. However when I run > my ivy res

Re: [ANNOUNCE] Apache Ivy 2.2.0-rc1 released

2010-07-12 Thread Archie Cobbs
tps://issues.apache.org/jira/browse/IVY-1179 > > As far as I understood, this was a bug in the XSL. > Or did I miss something here? > > Maarten > > > > > ----- Original Message > From: Archie Cobbs > To: ivy-user@ant.apache.org > Sent: Tue, July 13, 2010 12:47:

Re: [ANNOUNCE] Apache Ivy 2.2.0-rc1 released

2010-07-12 Thread Archie Cobbs
Looks like something has broken with the packager resolver in ivy 2.2.0. If you checkout Ivy Roundup and run ant -Dresolve.mod=xerces -Dresolve.rev=2.9.1 clean resolve, it will generate this error: [ivy:resolve] /home/archie/projects/ivyroundup/trunk/build/resolve/build/workspace/org.apache.xerce

Re: ivy url against zip with necessary jars

2010-07-12 Thread Archie Cobbs
rwrite > > About right? Using the same organisation as the Resteasy project just a > totally difference module name. > > > / matthew > > -Ursprungligt meddelande- > Från: archie.co...@gmail.com [mailto:archie.co...@gmail.com] För Archie > Cobbs > Skickat: den 12 ju

Re: ivy url against zip with necessary jars

2010-07-12 Thread Archie Cobbs
One common strategy is to create your own local repository with exactly what you want (creating ivy.xml files as necessary). Alternately if you are feeling open-sourcey then submit bug requests to Ivy RoundUp with the modules/revisions you

Re: Ivy Roundup Fork at GitHub

2010-06-23 Thread Archie Cobbs
On Wed, Jun 23, 2010 at 7:13 AM, Robert Buck wrote: > Have a gander. I posted an issue at the existing roundup project > requesting the merge of the changes to it, how much makes its way back > into the original project remains to be seen. Hope this helps those > interested in RoundUp but were una

Re: Issue with Ivy custome resolver

2010-06-08 Thread Archie Cobbs
On Tue, Jun 8, 2010 at 11:34 AM, Shaikh Almas wrote: > *Issue #4* > > I am using packager resolver and that packager resolver resolves the zip > file, unzip it, extracts the jar file from it in temp build file, but it > stays temporarily and only the jar file which i specified as a module name >

Re: Problem Installing With com.sun.mail jars From Sun Maven Repository

2010-05-21 Thread Archie Cobbs
Yes... with Ivy RoundUp you have to manually download the archives (after clicking through the licenses, etc.) and put them in a local directory as described here . -Archie On Fri, May 21, 2010 at 9:22 AM, Gareth Collins wrote:

Re: Not able to ignore checksum event when i set ivy.checksums variable as ""

2010-05-20 Thread Archie Cobbs
This is a little confusing, but the ivy.checksums property is not related to the checksum that the package resolver verifies. The former is for e.g. downloaded ivy.xml files and artifacts (using any resolver); the error message you are seeing however is coming from the package resolver's attempt to

Re: conf mapping documentation contradicts itself

2010-05-04 Thread Archie Cobbs
ing the ivy file where the relationship to the > dependency is defined whereas I was reading it as the ivy file defining the > artifact of the dependency (i.e. the other ivy.xml file). > > I think that is where my disconnect was. > > I am probably just being a dumb ass, it happens on occas

Re: conf mapping documentation contradicts itself

2010-05-04 Thread Archie Cobbs
On Tue, May 4, 2010 at 4:01 PM, mjparme wrote: > The reason the current verbiage of "master configuration (i.e. the > configuration of the module defining the dependency)" is confusing because > it reads like it is talking about the ivy file that defines the dependency. > Whereas the first senten

Re: conf mapping documentation contradicts itself

2010-05-04 Thread Archie Cobbs
On Tue, May 4, 2010 at 11:54 AM, mjparme wrote: > > The documentation regarding the syntax of the -> operator for conf mapping > is > unnecessarily confusing and in fact contradicts itself. IMHO, it needs to > better define what it means by the master configuration and what is the > dependency co

Re: Ivy with multi modules

2010-05-03 Thread Archie Cobbs
On Mon, May 3, 2010 at 6:55 PM, Mike Goodwin wrote: > The second thing is, is it possible to create a resolver which will > checkout and build a dependency from source control? Is it possible to > configure such a resolver inside the dependee project/ivy.xml so that > it can be versioned with the

Re: example ivy & build.xml file for spring/jsf/hibernate project

2010-04-30 Thread Archie Cobbs
On Fri, Apr 30, 2010 at 10:00 AM, infinity2heaven wrote: > You are now asking me to learn these things which has nothing to do with my > original problem -- new macros (500 page macrodef file), Ivy 2.0 features > called packager (apart from the already existing concepts around ivy). > > Think for

Re: example ivy & build.xml file for spring/jsf/hibernate project

2010-04-29 Thread Archie Cobbs
For what it's worth, here is a setup I've used a few times. It requires a little bit of infrastructure (see macros.xml for where to put ivy.jar and ant-contrib.jar) but once you've got that configuring what you want is pretty straightforward. You can view this example

Re: CVS Resolver

2010-04-28 Thread Archie Cobbs
If space is an issue, you might consider an "artifact-less" repository using the packager resolver, where the ivy.xml and packager.xml files are stored in CVS but the actual artifacts are stored elsewhere on a separate server as plain files. -Archie On Wed, Apr 28, 2010 at 7:39 AM, wrote: > Tha

Re: Request to update link for IvySvn

2010-04-27 Thread Archie Cobbs
Thanks! -Archie On Mon, Apr 26, 2010 at 5:01 PM, Maarten Coene wrote: > Done! > It should be online within several hours... > > > Maarten > > > - Original Message ---- > From: Archie Cobbs > To: ivy-user@ant.apache.org > Sent: Sat, April 24, 2010 10:48:17 PM

Re: Request to update link for IvySvn

2010-04-24 Thread Archie Cobbs
Is it not possible to update the Ivy links pagewithout waiting for the next Ivy release? -Archie On Tue, Apr 20, 2010 at 4:34 PM, Maarten Coene wrote: > I've updated the documentation in SVN. The online documentation will get > updated on the next release. >

Re: problems with ivyroundup and oro and 'exclude'

2010-04-21 Thread Archie Cobbs
On Wed, Apr 21, 2010 at 1:46 PM, Alan Chaney wrote: > Could well be, but as Archie has so promptly fixed the problem in the > repository, its difficult to test it! Thanks for the suggestion, though, and > I'll try and replicate the problem later. > You can still easily test it, just tweak your r

Re: problems with ivyroundup and oro and 'exclude'

2010-04-21 Thread Archie Cobbs
On Wed, Apr 21, 2010 at 9:30 AM, Alan Chaney wrote: > I've been trying to use ivy roundup to get cobertura. This has a dependency > upon apache oro. Sadly, the site referenced in the packager file ( > http://www.urlstructure.com) appears to be dead. > This is not an answer to your actual questio

Re: ivy:install task - Comments/Criticisms/Bugs

2010-04-09 Thread Archie Cobbs
ublic Ivy > repos just as, well, there are for public Maven repos. > > On Thu, Apr 8, 2010 at 7:41 PM, Archie Cobbs > wrote: > > > On Thu, Apr 8, 2010 at 11:02 AM, Jeff Evans (IT) < > > jeffrey.ev...@morganstanley.com> wrote: > > > > > > 1) The Mav

Re: ivy:install task - Comments/Criticisms/Bugs

2010-04-08 Thread Archie Cobbs
On Thu, Apr 8, 2010 at 11:02 AM, Jeff Evans (IT) < jeffrey.ev...@morganstanley.com> wrote: > > 1) The Maven 2 repository has more than a little crap in it. > I'll say one more thing about Ivy RoundUp and then shut up... :-) The whole point of Ivy RoundUp is to create a *sane* repository with re

Re: ivy:install task - Comments/Criticisms/Bugs

2010-04-08 Thread Archie Cobbs
ges I want (Axis2, in this case). Apart from that it looks > quite nice. But given the number of packages I need, it's not > appropriate for me at this stage. > > Thanks, > > - Andrew > > On Fri, Apr 9, 2010 at 4:49 AM, Archie Cobbs > wrote: > > O

Re: ivy:install task - Comments/Criticisms/Bugs

2010-04-08 Thread Archie Cobbs
On Thu, Apr 8, 2010 at 11:02 AM, Jeff Evans (IT) < jeffrey.ev...@morganstanley.com> wrote: > Even better would be if there was a pure-Ivy way of starting out, that > didn't rely on going to public Maven repositories, then adopting POMs > into Ivy files, to get a custom repository with locally-fetc

Re: Ivy adding unnecessary dependencies?

2010-03-30 Thread Archie Cobbs
t; Do I need to specify a single configuration and add [conf='jar->default'] > for each jar? > > On Tue, Mar 30, 2010 at 11:58 AM, Archie Cobbs >wrote: > > > You're not specifying any configuration mappings, so you're getting the > > default

Re: Ivy adding unnecessary dependencies?

2010-03-30 Thread Archie Cobbs
You're not specifying any configuration mappings, so you're getting the default, which is every possible artifact that might be needed in any scenario. -Archie On Tue, Mar 30, 2010 at 8:34 AM, pablo fernandez wrote: > Hi, > > I have this ivy.xml file: > http://pastie.org/895294 > > And I get th

Re: Dealing with Large/Complex Dependencies (e.g. Windows Platform SDK)

2010-03-22 Thread Archie Cobbs
I don't know from Windows so this may be a dumb question... do you have a tools issue or a data entry issue? In other words, if you have to type in 3000 things by hand, it doesn't really matter what tool you're using, it's going to suck. On the other hand, if you have the dependency information al

Re: Why should I use a dependencies manager?

2010-02-08 Thread Archie Cobbs
On Mon, Feb 8, 2010 at 3:56 AM, Ben Evans wrote: > There's no better teacher than having to manually sort out the mess that > occurs from a project which was "too simple" to need automated dependency > management. (See also: "Too simple to need source control"). > Ha! So true. -Archie -- Arch

Re: info.license

2010-01-29 Thread Archie Cobbs
On Fri, Jan 29, 2010 at 2:10 PM, Michael Shea wrote: > I've seen this: > http://ant.apache.org/ivy/history/latest-milestone/ivyfile/license.html > > I'm now wondering how best to use it. Presumably, I should modify the > ivy.xml for all the modules that have licenses, and add in the tag > as a f

Re: How to add a packager resolver without overriding existing defaults?

2010-01-04 Thread Archie Cobbs
On Mon, Jan 4, 2010 at 2:38 AM, Yesudeep wrote: > [ivy:retrieve] :: problems summary :: > [ivy:retrieve] WARNINGS > [ivy:retrieve] module not found: com.google.gwt#gwt-servlet;2.0.0 > [ivy:retrieve] ivyroundup: tried > For one, there is no module named "gwt-servlet" in either Ivy Round

Re: IvyRoundup: Problem with packager resolver

2009-09-09 Thread Archie Cobbs
On Tue, Sep 8, 2009 at 4:52 PM, efe4itcc wrote: > The URLs is this file won't work on Windows, as they should be in the > following form: file:///${java.io.tmpdir} (3 dash instead of 2) > Just to be clear, this is only a problem with Ivy RoundUp, not with ivy itself. I've changed the "file://"

Re: help! I can not reply the email for anti-spam

2009-08-01 Thread Archie Cobbs
There are many possible reasons, and these should be documented somewhere on Google's web site. For example, does your domain have an SPF DNS record? Etc. Also, check with the list owner to make sure they haven't accidentally blacklisted you. -Archie On Friday, July 31, 2009, Sky Ao wrote: > hi

Re: Problem with javax.transaction.jta and ivy roundup

2009-07-16 Thread Archie Cobbs
.org/maven2/[organisation]/[module]/[revision]/[module]-[revision].jar<http://repo1.maven.org/maven2/%5Borganisation%5D/%5Bmodule%5D/%5Brevision%5D/%5Bmodule%5D-%5Brevision%5D.jar> > ", > but I just can't figure it out. Can I use maven2? How? > Thanks, > Dave > > >

Re: Problem with javax.transaction.jta and ivy roundup

2009-07-16 Thread Archie Cobbs
On Thu, Jul 16, 2009 at 2:27 PM, dgodbey wrote: > Do you know how I can force ivy to get the jta libraries from ibilio where > manual clicking is not necessary and ignore packager? > You can make ibiblio higher precedence in ivy's resolver list, but of course then that would apply to all modules

Re: Problem with javax.transaction.jta and ivy roundup

2009-07-16 Thread Archie Cobbs
I'm not sure why you are getting that particular error.. however, for one thing, your resourceURL attribute is not valid and is only slowing you down by causing download attempts that will always fail. http://ant.apache.org/ivy/history/latest-milestone/resolver/packager.html You also know about

Re: Ivy confs masquerading as dependencies' revisions

2009-06-26 Thread Archie Cobbs
D'oh! I stand corrected... sorry for the misinformation. -Archie On Fri, Jun 26, 2009 at 4:16 PM, Niklas Matthies wrote: > On Fri 2009-06-26 at 15:42h, Archie Cobbs wrote on ivy-user: > > On Fri, Jun 26, 2009 at 2:42 PM, Garima Bathla >wrote: > : > > > And let

Re: Ivy confs masquerading as dependencies' revisions

2009-06-26 Thread Archie Cobbs
On Fri, Jun 26, 2009 at 2:42 PM, Garima Bathla wrote: > Archie, thanks for taking a stab at this. Let's follow the example of Foo > depending on Bar depending on JUnit. > > And let's follow your suggestion and put the dependency on JUnit directly > in > Foo's ivy.xml: > /> > > Now, the questio

Re: Ivy confs masquerading as dependencies' revisions

2009-06-26 Thread Archie Cobbs
Suppose FOO is your module that depends on the intermediate module BAR, and BAR is the module that depends loosely (i.e., will accept either version) on junit. If FOO only works with 3.8.2, then the solution is to just include a strict dependency on junit 3.8.2 in FOO's ivy.xml. -Archie On Fri,

Re: Configuration not found

2009-06-26 Thread Archie Cobbs
That does seem weird. Try flushing your cache (rm -rf ~/.ivy2/cache) and verify that you are really pulling jaxb from the repository that you think you are. -Archie On Fri, Jun 26, 2009 at 3:06 AM, Dima, Alina < alina.d...@immobilienscout24.de> wrote: > Hi all, > > > > I have a problem with my c

Re: inline resolve mode

2009-06-23 Thread Archie Cobbs
t; dependencies found in the ivy.xml file > > --- > Shawn Castrianni > > -Original Message- > From: Archie Cobbs [mailto:archie.co...@gmail.com] > Sent: Tuesday, June 23, 2009 9:41 AM > To: ivy-user@ant.apache.org > Subject: Re: inline resolve mode > > Hmm

Re: publishing war/ear files...

2009-06-23 Thread Archie Cobbs
Sounds like a great idea to me... just say type="js" :-) -Archie On Tue, Jun 23, 2009 at 9:22 AM, Richard Hauswald < richard.hausw...@googlemail.com> wrote: > I've thought about using ivy to resolve JavaScript frameworks. Is this > a bad idea? > --

Re: inline resolve mode

2009-06-23 Thread Archie Cobbs
Hmm First of all, every module must have an ivy.xml file to describe it. If what you want to resolve is a module, then you can do that with the inline ant tasks. Then you are specifying the module name and letting ivy (using your ivy settings) locate the corresponding ivy.xml file, process th

Re: Migrating to Ivy

2009-06-18 Thread Archie Cobbs
At my previous company we were in the same situation. For a long time we managed our own extensive ivy respository. In the repository was a lot of open source software that we used. We also contributed many changes back to those open source projects, as much to relieve our own maintenance burden as

Re: Ivy cache TTL not working

2009-06-15 Thread Archie Cobbs
See http://ant.apache.org/ivy/history/2.1.0-rc1/settings/caches/ttl.htmlparticularly the reference to "resolve mode". I would guess resolve operates in "resolve mode". -Archie On Mon, Jun 15, 2009 at 8:26 AM, Dima, Alina < alina.d...@immobilienscout24.de> wrote: > Hi, > > > > I am trying to use

Re: ivy resolve for different configurations

2009-06-15 Thread Archie Cobbs
story/2.1.0-rc1/settings/caches/ttl.html -Archie On Mon, Jun 15, 2009 at 3:50 AM, Dima, Alina < alina.d...@immobilienscout24.de> wrote: > It is the ttl (Time To Live) attribute for the cache. > > -Ursprüngliche Nachricht- > Von: Archie Cobbs [mailto:archie.co...@gmail.com] &

Re: ivy resolve for different configurations

2009-06-12 Thread Archie Cobbs
On Wed, Jun 10, 2009 at 6:04 AM, Alina Dima wrote: > And yet another question: the TTL, how does the resolve handle this? I was > thinking to set a TTL for the external libraries, but, I am not sure how > this would make the resolve faster? If the TTL is set, does it mean that > for > that time,

Re: ivy resolve for different configurations

2009-06-09 Thread Archie Cobbs
On Tue, Jun 9, 2009 at 9:18 AM, Alina Dima wrote: > I am just starting with Ivy on an already existing, relatively complicated, > build system and I am working on increasing the performance of the > resolve/retrieve Ivy operations. I would like to ask for your advice, what > do you think would be

Re: Looking for jboss-javaee.jar

2009-05-29 Thread Archie Cobbs
Calm down please, this is not a place for political bickering. Thanks for your understanding. -Archie On Friday, May 29, 2009, Jeff Glatz wrote: >> >> Mark Thomas >> spatialguru@gmail.com >> 205.529.9013 >> >> "Commit to the Lord whatever you do, >>    and your plans will succeed." - Proverb

Re: Looking for jboss-javaee.jar

2009-05-28 Thread Archie Cobbs
Slightly off-topic but... this sounds like a good opportunity to consolidate effort: if someone wanted to contribute their working jboss ivy files to Ivy RoundUp then all can benefit from them (right now Ivy RoundUp doesn't have any jboss modules yet). -Archi

Re: Configurations and Ivy file confusion

2009-04-22 Thread Archie Cobbs
Think of it this way: Rule #1: A configuration is just a name for some subset of a module's artifacts. Rule #2: A dependency defind in module A's ivy.xml that looks like: simply states that "when someone is asking for the artifacts in configuration 'foo' of module A, then we'll also ne

  1   2   >