0
votes
2answers
14 views

Apache Ivy and configurations

I'm using Ivy to manage my dependencies, with some problems on provided jars This is my ivy.xml file <configurations> <conf name="local" visibility="private" /> <conf ...
1
vote
1answer
45 views

Does Ivy dependency resolver same as Maven dependency resolver?

I read official manuals about dependency resolution in Maven and Ivy: http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html ...
1
vote
1answer
36 views

ivy: resolve only compatible release with version range

I have a common component that is under constant development. many projects depend on this component. Right now, i use rev="latest.release" for the dependency. But that might break the build, consider ...
0
votes
1answer
26 views

Finding dependecies between modules of a legacy ANT project for migration to IVY

I am dealing with a project using using ANT to build the source code into a EAR. The project over couple of years has grown to a mammoth size, more than fifty modules, and not surprisingly it takes 2 ...
0
votes
2answers
97 views

How to specify which Ivy resolver to use

My understanding is that <ivy:resolve/> copies dependencies from the configured repo into the local Ivy cache (rooted under ${USER_HOME}/.ivy2). But after looking at the task's docs, I was ...
1
vote
0answers
50 views

Runtime dependencies for GAE web app

After downloading the GAE SDK (1.7.1) I have a massive amount of JARs under my ${GAE_HOME}/lib/ directory: I am in the process of setting up a build for my GAE web app on my local machine but also ...
0
votes
1answer
35 views

caller priority for Ivy dependency versions [duplicate]

Possible Duplicate: A way to control dependencies ranges for upstream dependencies using Ivy? My Ivy repository contains: libAbc version 2.4 and 2.5 – no dependencies libXyz ...
0
votes
1answer
62 views

Add resolver in Ivy

I'm new to Ivy and I'm just trying to add a resolver to my ivysettings.xml : <?xml version="1.0"?> <ivysettings> <settings defaultResolver="maven" /> <resolvers> <chain ...
0
votes
0answers
76 views

Ivy conflict resolution not working

My module A depends on modules B and C, which both depend on different versions of module D. My Ivy dependencies look like this: <ivy-module> <info organisation="com.a" module="A"/> ...
0
votes
1answer
81 views

Grails project does not resolve dependencies during runtime from libraries inside its own lib directory

Ladies and Gents, I have a very simple grails app from which I need to invoke our company's platform API via straight class dependency API call. I have a pending question here on Stack. It relates ...
1
vote
1answer
138 views

How to use corporate Ivy instance for grails dependency management to resolve internal artifacts

All, I have a straightforward out-of-the-box Grails project without any customizations. I have a simple page, simple controller, simple service; no problem. Problem: I would like to interact with ...
0
votes
0answers
17 views

How does one depend on all the publications of an Ivy module?

As is probably obvious, I'm an Ivy newb. I have one module that publishes several jars. I have another module that I want to depend on all those jars. How would I do that? I expected that, ...
3
votes
2answers
334 views

How to download artifacts from ivy repository using maven

We are moving from ivy to maven. We have lots of artifacts in artifactory which were published using ivy and hence the artifact folder/path structure is similar to ...
1
vote
1answer
130 views

How to use Ivy to get artifacts other than JARs?

There is a Java library I want to use as part of my build, but it contains an external resources/ directory that has to be visible to the runtime classpath in order to work. I'd like to be able to ...
2
votes
4answers
324 views

Is there a .Net equivalent of Ivy?

We use Ivy for dependency management within our office. It resolves our list of dependencies for any of list of projects and does it very well too, to be fair. It also publishes released dependencies ...
0
votes
1answer
65 views

Overriding an individual Ivy dependency

Application A uses log4net version 1.2.10.0 and is built using my CI process, and as a result, is stored in my Ivy Shared folder. (No problems here) Application B references Application A, as well as ...
1
vote
1answer
198 views

Ivy - get a flat list of modules and their revisions across multiple projects

We use Ivy to manage our library dependencies and we need to create a report of all the modules and their revisions in certain configurations and combine this across about 30 projects. Just a simple ...
2
votes
1answer
570 views

IVY: Cannot resolve restlet dependency

I have a java project setup and wanted to use ivy as dependency management tool. However, I could not get the simplest one to work. Here is the code I have: ivy.xml <?xml version="1.0" ...
2
votes
2answers
525 views

Defining the behavior of “latest.integration” in Ivy

I'm having problems understanding how latest.integration works. I have an example that is not giving the output mentioned in: ...
5
votes
2answers
322 views

Ivy - output the results of a resolve to an ivy file

Having resolved my ivy.xml file, I'd like to create a new resolved-ivy.xml file consisting of all of the transitive dependencies found in the resolve. Is it possible to do this? This is different to ...
2
votes
1answer
405 views

Using Ivy/Maven for C++ binary dependancy management in Visual C++ environment

I am looking to provide a better way of managing the distribution and storage of binary dependencies for a large VC++ project. Currently we have the situation where externally and internal built ...
1
vote
1answer
558 views

Ivy can't resolve log4j from Maven Central

New to Apache Ivy, and can't get it to resolve the latest log4j jar from Maven Central. I'm using IvyDE to manage all of my dependencies and using all of its defaults, which I believe configure it to ...
6
votes
1answer
681 views

How to set up an IntelliJ Idea Scala project to recognize local Ivy2 cache?

As you probablu know, new versions of SBT (as 0.11) are designed to maintain a common libraries cache in ~/.ivy2/cache instead of copying the full set of dependencies inside a project directory. But ...
0
votes
3answers
179 views

Where to find Ivy descriptors for Artifactory repo

I'm setting up my first "managed" Ivy repository via Artifactory and am wondering if I have to hand-write all the Ivy descriptors (XMLs) for each artifact I deploy. This would be painful. What do ...
2
votes
1answer
352 views

How to get CXF jars with Ivy [duplicate]

Possible Duplicate: Which maven2 artifacts are necessary to build a WS with CXF and Spring? I am using an ivy.xml file to get dependencies I need. So to get some dependencies, I write e.g. ...
3
votes
1answer
805 views

Ivy doesn't find my artifact in filesystem

I've got an artifact in my local filesystem, but Ivy doesn't resolve it unless I put the <filesystem> resolver inside a <chain>. And it renames the artifact extension when it resolves it. ...
3
votes
1answer
135 views

Synching Version Control & Artifact Repository

Although we are a Java camp using SVN for source control and Apache Ivy for dependency management, this question broadly applies to any platform/language, SCM and artifact repository tool. My tech ...
1
vote
1answer
930 views

Spring Framework dependency not resolved in Ivy

I am trying to download Spring Batch and Spring Framework using Ivy, and I'm not getting very far. Dependencies in ivy.xml: <dependency org="org.springframework.batch" ...
1
vote
1answer
265 views

Is there a way to configure Ivy to get dependencies from a branch without editing every dependency concerned?

I have a number of projects here that have dependencies between each other as well as to external libraries. Dependency management is done with ivy and our own repository. We recently had to branch ...
0
votes
1answer
145 views

How does one consolidate version management in Ivy, like parent-pom <dependencyManagement> in Maven?

We have many projects that need to use common version numbers. What is best practice for doing this with Ant/Ivy? Do you just inherit a wad of properties from Ant that have the version numbers in ...
0
votes
2answers
436 views

Grails dependencies neo4j

I'm suffering from grails dependencies with only pom.xml in the jar files at the moment. Basically, I'm trying to use grails dependencies to include neo4j which the main file only contain pom.xml ...
0
votes
1answer
378 views

Grails dependencies or Maven

I'm using STS latest version (2.7) and latest grails as well. After I created a freshly grails project in STS it freezes in the updating grails dependencies for a long time and it comes out as a ...
2
votes
1answer
147 views

How do I declare a dependency on jboss in SBT?

I have a project that depends on JBoss(specifically 5.1.0.GA) and I was playing around with trying to set this project up using SBT. What I was wondering is if there is a way to say "this project ...
3
votes
3answers
3k views

Ivy not installing some JARs

I'm using Ivy for project dependency management and it's been working well aside from one issue which I've always had. There are certain dependencies that Ivy is downloading but it's not installing ...
3
votes
1answer
195 views

Is there an ivy/ant equivalent to mvn jar-with-dependencies?

With maven-assembly-plugin it's possible to package a project into a single jar w all the dependencies.
3
votes
1answer
475 views

What are the similarities, differences and tradeoffs between Ivy, Maven and Archiva?

I'm confused regarding Ivy, Maven and Archiva - they all seem to be trying to solve similar problems. I think that I'm right in thinking that Ivy retrofits Maven-like functionality to Ant (i.e. Ant + ...
1
vote
1answer
282 views

Do ivy dependency revisions have anything to do with svn's?

With no background on ivy dependencies I'm trying to build nutch with solr 4.0, but I'm not sure how to change the nutch ivy dependency on solr in the ivy.xml: <dependency org="org.apache.solr" ...
1
vote
2answers
3k views

Find hidden dependencies in Ivy

I'm using Apache Ivy + IvyDE for getting my project's dependencies, which are: <dependency org="com.google.guava" name="guava" rev="r08" /> <!-- logging --> <dependency ...
3
votes
3answers
557 views

What is the Ivy equivalent of Maven's versions:display-dependency-updates?

I have an ivy.xml file where I specify my dependencies explicitly. Is there any functionality built into Ivy that will let me discover or automatically update my dependencies which are out of date? I ...
3
votes
2answers
692 views

Ivy publish to repository doesn't update local cache

Given: Building using Hudson/Ant. Ivy cache timeout is set to 5 min. Ivy repository contains has Project A version 2.2.2 and Project B version 1.1.1. Project B relies on Project A. Events: API ...
1
vote
2answers
702 views

Why is Ivy unable to resolve spring-test dependency that is visible in my web browser?

I have an ivy.xml that can successfully resolve all of its dependencies, except the following one. <dependency org="org.springframework" name="spring-test" rev="3.0.2.RELEASE" force="true" ...
1
vote
1answer
591 views

ivy simple shared repository

I am trying to compile all sub projects of one big project at my company into many jars with managed dependencies, so that not everybody who works at one project only needs to download the latest jars ...
1
vote
1answer
1k views

Using Ivy, Maven and the Issue with POMs

I have been looking at and playing around with IVY of late for a new project. I know that there are two camps on this topic and a lot of reasons people choose one or the other. This question is not ...
6
votes
1answer
480 views

Need presentation materials for convincing a customer to use Maven

My customer needs a more organized inventory of all 3rd-party libraries (such as JAR files) that are used in production for their projects. I am involved with a number of their Java-based projects. ...
4
votes
3answers
2k views

Maven POM dependencies to ivy.xml file

Is there a maven plugin which i can use to convert the maven pom dependencies including transitive dependencies to an ivy.xml file?
0
votes
1answer
237 views

Dependency management by external tools versus IDE sugar

I'm using Intellij IDEA IDE. Instead of using it's internal build and dependency management tools I prefer external tools (ant+ivy if it matters). I want IDEA be able somehow catch on the flylibraries ...
2
votes
1answer
1k views

Ivy custom url resolver

I am trying to create custom resolver in my ivysettings.xml file: <ivysettings> <settings defaultResolver="default"/> <resolvers> <chain name="default"> ...
1
vote
1answer
220 views

How should I use ivy in a CI environment?

I am using ant and Apache Ivy, and i have multiple plans in my CI server building the same source code, executing different types of tests. Ivy must be deleting myorg-myproject-runtime.xml file in my ...
3
votes
1answer
1k views

How do I get Ivy to copy the dependencies to the lib directory when using it from the command line?

I have the following command: java -jar ...\ivy-2.2.0-rc1.jar -ivy ...\ivy.xml Which I am expecting to resolve the dependencies and copy them to the lib folder of my project. Ivy seems to resolve ...
0
votes
1answer
857 views

In Gradle, How do ignore the cache for a local ivy repository?

In my Gradle script (version 0.8), I have a local ivy repository which I use to publish a library, and I can't seem to get Gradle to ignore its cache. I'm accessing the local ivy repo. based on the ...

1 2