Tagged Questions
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 ...
1
vote
1answer
135 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 ...
0
votes
1answer
146 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 ...
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
198 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.
0
votes
0answers
343 views
Dependency project jar (maven) into common project in netbeans
i have a java project in maven, and some other projects in netbeans that aren't maven. The project that is in maven is used by all other projects. But, they are common projects and can't include a ...
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 ...
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">
...
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
3answers
1k views
Get ivy:retrieve to not copy a jar into two configurations?
I'm trying to set up my ant build so that the targets which run Ivy functions are completely separated from the ones that the continuous build and most developers run. I want one target to download ...
6
votes
4answers
1k 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 ...
1
vote
1answer
3k views
How does Apache Ivy resolve the variables in artifact patterns provided in the ivysettings.xml file?
If my ivysettings.xml file includes:
<url name="com.springsource.repository.bundles.external">
<ivy ...
1
vote
2answers
431 views
What's the best way to define dependencies between multiple ant build files?
I have a bunch of modules which I'd like to all have their own ant build files. However, modules have dependencies on other modules. What's the best way to define dependencies between build files?
...