Tagged Questions
Apache Ivy is a subproject of Ant to simplify dependency management. Its primary use is to retrieve prerequisite JAR files from repositories and to publish new JAR files. A major feature of Ivy is that it integrates with normal Ant projects instead of requiring a new paradigm.
21
votes
8answers
8k views
Maven or Ivy for Managing Dependencies from Ant?
I was wondering about the best way to manage projects dependencies from ant. What are the pros and cons of the Maven Ant task and of Ivy?
20
votes
1answer
225 views
Promoting several modules (integration -> milestone) in ivy
Ivy is great for managing dependencies, but it isn't meant to handle the entire software lifecycle across many modules. That said, it does have several features that seem to support it (such as the ...
20
votes
8answers
1k views
Large Java System Dependency Management
We have a large (>500,000 LOC) Java system that depends on 40-50 OSS
packages. The system is built with Ant, and dependency management is
handled manually at present. I'm investigating Ivy and/or ...
17
votes
4answers
7k views
Can someone explain the ivy.xml dependency's conf attribute?
I can't find any thorough explanation of the ivy dependency tag's conf attribute:
<dependency org="hibernate" name="hibernate" rev="3.1.3" conf="runtime, standalone -> runtime(*)"/>
See ...
11
votes
3answers
2k views
how do I get sbt to use a local maven proxy repository (Nexus)?
I've got an sbt (Scala) project that currently pulls artifacts from the web. We'd like to move towards a corporate-standardized Nexus repository that would cache artifacts. From the Nexus ...
11
votes
3answers
6k views
How does ivy:publish work?
I'm completely at loss how the ant task ivy:publish is supposed to work.
I would expect that I do my normal build, which creates a bunch of jar files, then I would push those jars to the (local) ...
11
votes
3answers
252 views
How to display credits
I want to give credit to all open source libraries we use in our (commercial) application. I thought of showing a HTML page in our about dialog. Our build process uses ant and the third party libs are ...
10
votes
2answers
1k views
Source code of libraries downloaded with ivy
I use ivy with the ivy eclipse plugin to download dependencies. Works great. But how can I attach the source code for those libraries, in order to step into these libraries?
10
votes
2answers
19k views
Trouble getting Hibernate Core and Hibernate Annotations using Apache Ivy (but it's also Maven2 related.)
It's a long one! ;-)
There are a lot of copy pasted text in this question which makes it look
complicated. And to be honest, it's a lot of information! However to an experienced person a lot of it ...
9
votes
2answers
244 views
How to configure gradle to use a local repository only for certain dependency groups?
Working off the gradle dependency docs, we have a build.gradle with snippets like this.
repositories {
mavenCentral()
ivy {
name = 'localRepo'
artifactPattern ...
9
votes
3answers
6k views
good ivy tutorial for local repository?
Can anyone point me at a good tutorial for making & using a local repository with Ivy? (Please don't point me at the Ivy docs, the tutorials are rather confusing)
I need to make a local ...
8
votes
4answers
3k views
Ivy via Nexus proxy
does anyone knows how do I specify in Ivy something like mirror/mirrorOf in Maven? I'm working with a local Maven proxy (Nexus) and need the tool to specify which of the parent repositories should ...
7
votes
2answers
4k views
Proxy settings with ivy
I have an issue where in I have defined dependancies in ivy.xml on our internal corporate svn. I am able to access this svn site without any proxy task in ant. While my dependencies resides on ...
7
votes
3answers
252 views
Is there a pre-made Continuous Integration solution for .NET applications?
From my perspective, we're constructing our own 'flavour' of NAnt/Ivy/CruiseControl.Net in-house and can't help but get the feeling that other dev shops are doing exactly the same work, but then ...
7
votes
1answer
523 views
Where can I find a single example expressed in Ivy, Maven, Gant, and Gradle?
I'd like to find a simple, non-trivial Java project that is expressed in terms of Ant + Ivy, Maven, Gant, and Gradle. I'm not interested in each tool's varied sample demos.
Where can I find such an ...
7
votes
2answers
338 views
Ivy setup with Git?
I've used Ivy with SVN to manage dependencies for Actionscript projects in the past. The library I used was ivysvn.
It seemed to work pretty well, the svn repository hosted versioned binary .swc ...
7
votes
3answers
5k views
Ivy: how do I remove transitive dependencies?
I'm using Ivy to manage the dependencies on my project.
So far, I've specified a dependency on Hibernate and servlet-api. However, the hibernate jar itself has a lot of dependencies that aren't ...
5
votes
1answer
55 views
How do remote dependency managers for tools like grapes/maven/ivy manage to utilize the same underlying repositories …?
It seems as though ivy , maven, grapes , and other dependency managers link to the same integrated repositories.
1) What do these different dependency managers have in common in terms of the way ...
5
votes
1answer
213 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. ...
5
votes
6answers
435 views
Advice on a good Java build tool, well integrated with eclipse
I am working in a small team (3 persons) on several modules (about 10 currently). The compilation, integration and management of build versions is becoming more and more tedious.
I am looking for a ...
5
votes
5answers
661 views
How can I best share Ant targets between projects?
Is there a well-established way to share Ant targets between projects? I have a solution currently, but it's a bit inelegant. Here's what I'm doing so far.
I've got a file called ivy-tasks.xml hosted ...
5
votes
2answers
3k views
How to override the location of Ivy's Cache?
I am using Ivy as part of my continuous integration build system, but I need to override the default location that Ivy's local cache area is.
4
votes
3answers
94 views
Matlab dependency management
I am looking to apply dependency management to a large-scale Matlab project.
This project imports a large number of java libraries, as well as some compiled C++ code, to the extent that some ...
4
votes
1answer
467 views
The prefix “ivy” for element “ivy:cachepath” is not bound
I have downloaded build.xml from the link-> IVY Build link, when I run ant target I am getting following error:
\build.xml:92: The prefix "ivy" for
element "ivy:cachepath" is not bound.
...
4
votes
1answer
187 views
Examples of using a recursive Ivy deliver or publish
Does anyone have specific examples of using the Ivy <deliver> or <publish> tasks with the delivertarget attribute to do recursive deliveries? The official documentation is ...
4
votes
1answer
546 views
How can I access a secured Nexus with SBT?
I'm trying to access a Nexus repository manager which requires some basic authentication. Everything works fine from Maven2 but when I try to configure things in SBT it can't find the artifacts. It is ...
4
votes
1answer
224 views
Best ivy practice: Split code into multiple projects or use one project with multiple configurations?
At work we have a number of projects which need to share some common code. Some code is completely universal while some of the code is only shared by a subset of our projects. Should I split up the ...
4
votes
1answer
475 views
How to get sources for Grails dependencies
How can I get Ivy to download the sources for dependencies from within Grails?
I tried editing all the ivy.xml files I could find as per [1], but no luck.
...
4
votes
2answers
583 views
Can I use properties in an ivy.xml file to avoid repeating version numbers of dependencies?
Here's what part of my ivy.xml looks like right now:
<dependency org="org.springframework" name="org.springframework.core" rev="3.0.2.RELEASE" />
<dependency org="org.springframework" ...
4
votes
2answers
847 views
Hudson doesn't like Grails
I'm trying to get our CI-Server Hudson to run grails tasks and installed the Grails-Plugin, but it seems like the dependencies with ivy could not be resolved...
[projectx] $ ...
4
votes
2answers
2k views
How to include a file in ivy.xml?
I have a fairly large ivy.xml containing a number of configurations which are the same for a number of projects.
I would like to break out this large repetitive section in to a common include file. ...
4
votes
1answer
969 views
How do I use TestNG with Apache Ivy?
I tried to use TestNG with Apache Ivy, but was unsuccessful. Here is my ivy.xml:
<ivy-module version="2.0">
<info organisation="me" module="myproject"/>
<dependencies>
...
3
votes
1answer
117 views
Deploying Dependent Projects to Tomcat via WTP
We are currently using MyEclipse to deploy our projects to Tomcat during development. We would like to dump MyEclipse and switch to WTP. I am using Eclipse 3.7.
Our project layout has a 'web' ...
3
votes
2answers
35 views
Ivy: Resolving and Publishing JARs Locally
We have been using Ivy for a few months and have our own hosted "Ivy Repo" on a web server here in the office. All of our projects are configured to go to this repo to resolve dependencies.
We have ...
3
votes
1answer
67 views
How to build and unit test with Ivy?
When unit testing with Ivy, is it best practice to put the test dependencies into the Ivy.xml file for the target binary you are building? Or should they be in a separate Ivy.xml file for the test ...
3
votes
0answers
50 views
Generating Dependency Report Using Play Dependency Management
Play's dependency management uses ivy under the hood. Is there a way the play can be asked to generate a dependency report? This is typically done in ivy through ivy:report
3
votes
2answers
145 views
Where do I put my credentials when using Ivy and a private company repository?
I'm using Ant + Ivy, and my company has recently set up a Nexus server for our own private libraries. Ivy can get dependencies from the Nexus server by using a ibilio resolver and m2compatible=true, ...
3
votes
5answers
492 views
Ignore sources jar in Ivy retrieve
I would like to retrieve ONLY the library jar when I make use of a dependency entry in my ivy.xml for Red5 (or any project for that matter). No matter how I have configured it, I still get "sources" ...
3
votes
2answers
154 views
Is recursive publishing possible / easy in Gradle?
We have an Ant and Ivy-based build management system, which basically consists of a shared ant file and a set of conventions around directory structure.
One hurdle I'm trying to overcome is the ...
3
votes
1answer
494 views
How to exclude commons logging dependency of spring with ivy?
I have a project build with ant using ivy for dependency management. I have no ivysetting file, but an ivy.xml with the following dependency (I want to use spring with slf4j instead of commons ...
3
votes
2answers
524 views
How can I disable Ivy's SHA1 check of the downloaded .pom files?
My current Ivy configuration fails to resolve because of this error:
problem while downloading module descriptor:
...
3
votes
5answers
466 views
How does Archiva compare to Nexus?
There are a few similar questions already, but most are either focused on Nexus vs. Artifactory, or are a few years old.
I wanted to get a sense of where the two project stand these days. My ...
3
votes
5answers
517 views
JPA from Maven repository with Ivy
I'm converting an existing project using JPA + Hibernate to use Ivy for getting its dependencies. I can get almost everything, but have trouble getting JPA. This is my ivy.xml without JPA:
...
3
votes
2answers
237 views
getting error message: “unknown resolver XYZ”
while resolving my ivy.xml, I get a long list of errors, all stating "unknown resolver XYZ". I know the resolver, it is used in the same project but different task.
As far as I understand, the ...
3
votes
1answer
292 views
Ivy appears to fetch javadoc jars only
I'm using Ivy on my project, with the Ivy Eclipse plugin.
It appears that certain jars which are downloaded and added to my project are the javadoc jars, not the jars with the actual code. Note - ...
3
votes
2answers
380 views
Hudson plug-in not publishing all artifacts to Artifactory
I've got a small Java project setup to build continuously through a Hudson server. I'd like to publish the build artifacts to an Artifactory server as a post-build step so, naturally, I'm using the ...
3
votes
2answers
2k views
Use public maven repository with ivy
I have an ivy.xml containing
<dependencies>
<dependency org="commons-lang" name="commons-lang" rev="2.4"/>
<dependency org="foo-bar" name="superwidgets" rev="1.5"/>
...
3
votes
2answers
337 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 ...
3
votes
1answer
5k views
java.lang.NoSuchMethodError: javax.persistence.OneToMany.orphanRemoval()Z
I am getting this error:
java.lang.NoSuchMethodError: javax.persistence.OneToMany.orphanRemoval()Z
These are the jars in my classpath:
com.sun.faces/jsf-api/jars/jsf-api-2.0.0.jar
...
3
votes
3answers
725 views
Echoing out ant fileset to screen for Debugging
I have this:
<ivy:buildlist reference="build-path">
<fileset dir="${root.dir}">
<include name="*/build.xml" />
<include ...