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.

learn more… | top users | synonyms

0
votes
0answers
12 views

“impossible to get artifacts when data has not been loaded.”

In a Java play 2.1.1 app I get the following error: [myproject] $ update [info] Updating {file:/C:/path/myproject/}myproject... [info] Resolving ... [error] impossible to get artifacts when data has ...
0
votes
0answers
19 views

Grails - How to make ivy-cache folder structure the same as maven repository folder structure?

Is it possible to make ivy-cache folder structure the same as maven's repository folder structure? I am planning to use the same location (path,folder) as maven repository and ivy-cache. I'm getting ...
0
votes
1answer
14 views

Setting location of Grape configuration file

How do you configure Grape to look for a custom configuration file at a location other than the default of ~/.groovy/grapeConfig.xml? Unfortunately the official documentation at ...
0
votes
2answers
13 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 ...
0
votes
0answers
21 views

External project dependency in Vaadin

I have a Vaadin project and an external Java project. I would like call code in the external project from Vaadin. I have both project imported in Eclipse and the Vaadin project references the external ...
1
vote
1answer
10 views

Ivy: How can I find out which resolver provided a dependency?

I have a configuration with local, shared, public resolvers. I would like to create a report after resolving a module that tells me which resolver actually satisfied each dependency. Say my module ...
0
votes
1answer
31 views

Ivy used to retrieve guava, now it does not

Related question: Ivy cached a dependency file, but not copy to my lib My situation is nearly identical, except that this has been working for quite a while until recently. Ivy retrieves other jars: ...
0
votes
1answer
24 views

Ivy cached a dependency file, but not copy to my lib

I got a strange problem. I added Guava to my ivy.xml as the following: <dependency org="com.google.guava" name="guava" rev="14.0.1" conf="test"/> When I run ant, I can see it's resolved: ...
0
votes
1answer
30 views

Creating a maven repository that downloads and stores jars from another maven repository

We have a maven repository setup on a computer (host is http://repository:8280). Jars are uploaded to the repository and we use IVY to pull relevant jars for development. We have an office in another ...
1
vote
2answers
79 views

sbt: publish to corporate Nexus repository unauthorized

Quick resolution The required credential expects the exact realm as defined by nexus. See below how to find the one you have defined, but most certainly is "Sonatype Nexus Repository Manager". Add ...
0
votes
2answers
24 views

add local jars to ivy build script

I am working on an existing application that uses ivy to manage dependencies, and the source comes with ivy.xml and ivysettings.xml files. I am trying to add my own jar to the build. What would be ...
1
vote
1answer
29 views

Use Ivy to get latest X.X.X.Final Hibernate

I am using IvyDE in Eclipse and getting unresolved dependency: org.hibernate#hibernate-core;final: not found using code: ivysettings.xml <ivysettings> <settings ...
0
votes
1answer
26 views

Ivy project can't get the latest Maven snapshot (with assembly plugin)

When a Ivy project depends a maven project (using assembly plugin), there will be problems. For example: Maven project: Suppose the maven project will deploy 2 snapshot packages: for exmaple, one is ...
0
votes
1answer
11 views

Spring-Tool-Suite (STS) cannot find ivy.jar while it is installed in ~/.ant/lib, and command line build succeed

I cloned a new repo which has a build.xml, which begins with <?xml version="1.0"?> <project name="mbark" basedir=".." xmlns:ivy="antlib:org.apache.ivy.ant"> But this line when I run in ...
0
votes
1answer
16 views

Ivy Retrieve with Classifiers

I have the following ivy.xml: <ivy-module version="1.0" xmlns:maven="http://maven.apache.org"> <configurations> ... </configurations> <dependencies> ...
0
votes
2answers
18 views

ivy and ivyde and FileSystem resolvers

I'm having an issue getting an ant/ivy build and eclipse/ivyde build to work well with each other. Here's my setup, where 'git_root' is different for each developer: /{git_root} | ...
0
votes
1answer
25 views

NoClassDefFoundError XmlSchema with IVY dependency

In my Java Wicket application with Apache Ivy and JBoss I'm using a dynamic web project (Axis2). On the method populateAxisService() throws org.apache.axis2.AxisFault I get the following error: ...
0
votes
1answer
50 views

The svn client 'svnkit' is not available

I have been using svnant 1.3.0 to create tags from branches in my SVN repository. Now I have upgraded from SVN 1.6 to 1.7 and there is no released svnant binary that supports it. But I have downloaded ...
0
votes
0answers
38 views

Grails 1.3.7 with Ant and Ivy - Can't see classpath?

I'm working with Grails 1.3.7 and Ant with our Ivy installation. Since we build with Jenkins, and Jenkins can run multiple builds, and we like to clean the Ivy cache with each build, we normally ...
0
votes
1answer
15 views

ivy module.xml doesn't contain all artifacts when gradle publish is used

I believe this may be related to publish artifact overwrite other artifact in Gradle if I have a set of publications such as publishing { publications { serverpub(IvyPublication) { ...
0
votes
0answers
30 views

Grails 1.3.7- Want to move default location of work area. Issues with Ivy/Ant integration

I have a Grails project which we wanted to integrate with our Ivy/Maven repository. This is Grails 1.3.7. We will upgrade to Grails 2.2.1, but that will take some time. Right now, we're stuck with ...
0
votes
1answer
30 views

ant, ivy, multiple projects and transitive dependencies

I have two projects, A and B, with B being a webapp. Project B depends on A, so A's ivy.xml looks something like: <ivy-module version="2.0"> <info organisation="com.confused" module="B" ...
0
votes
1answer
13 views

Ivy: How to set cache policy for SNAPSHOT dependencies?

I'm using Ivy Ant and would like to create a policy such that the build checks for the most recent update to a dependency on every build. This is because we're developing in partnership and want to ...
0
votes
1answer
26 views

Ivy - Specifying compile/runtime classpath with Ivy

I have a project that has two different jars with both containing some of the same classes. What I need is for it to use the classes from Jar "A" before Jar "B". In normal Java compilation (and with ...
0
votes
1answer
43 views

Ant Build: Extract class files from a Ivy dependency war file in the class folder

I have a project with a dependency to some other Java classes from another project. In eclipse the two projects are running without any errors. Now I want to build the project with the dependency ...
1
vote
1answer
31 views

Grails 1.3.7 -Where's the build.xml?

This is Grails 1.3.7, and not Grails 2.x. Very important because there are all sorts of nice features in Grails 2.x that would really help us out, but don't seem to be available in this version. The ...
0
votes
1answer
54 views

SQLite JDBC Class Not Found Exception

I've been trying to make use of the SQLite jdbc class from Xerial. Every time I try to run what I have, it fails, giving me the following error: java.lang.ClassNotFoundException: org.sqlite.Driver ...
1
vote
1answer
43 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 ...
0
votes
0answers
27 views

How to auto Increment Ivy revision number when publishing to Artifactory

Can someone please help me figure out how to increment revision number using IVY when publishing to artifactory. After web search I found buildnumber can be used to do that but it does not work, am ...
0
votes
1answer
64 views

having problems to create a vaadin 7 project while disconnected from internet

struggling to create a project using the vaadin eclipse plugin, eclipse doesn't find the version of vaadin, can't create the pre-configurations in the web.xml file automaticallyhave have to do it ...
0
votes
1answer
28 views

Ivy: Using dynamic revisions

I'm having problems understanding how I to use dynamic revisions of Ivy effectively in my Java projects. Currently, I have the following layout: lib-a revision: 1.0.0 status: release dependencies: ...
1
vote
2answers
56 views

How do you handle multiple versions of same jar?

I use Apache_Gora_0.2.1 and Apache Nutch_2.1 . Nutch depends on Gora. Gora have modules gora-core and gora-hbase. gora-hbase depends on gora-core. All the modules of Gora use avro_1.3.3.jar . I ...
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 ...
6
votes
1answer
88 views

Using Bintray maven repository with Ivy

I'm considering using using bintray to host some project dependencies in a maven repository. My problem is I'm using Ivy and I can't seem to figure out how to take this maven configuration (supplied ...
0
votes
1answer
241 views

Class not found with Ant, Ivy and JUnit - error in build.xml?

I am trying to get a simple(?) test project working with Ant, Ivy and JUnit. The basic idea is that Ivy will download junit.jar and then Ant will use it. Note that the junit jar is on the classpath ...
0
votes
1answer
36 views

Jenkins [ERROR] - XTrigger exception - windows

I get the below trigger exception for Ivy trigger, So i checked the xml it is complaining about (in the temp folder). I found the xml is not valid, its because of some path strings with double quotes ...
0
votes
1answer
59 views

How to correctly exclude slf4j-jdk14 when using slfj-log4j12?

I am using Ivy for dependency management in my project. I want to use SLF4J for logging. I added <dependency org="org.slf4j" name="slf4j-log4j12" rev="1.7.5" /> And it downloads both ...
0
votes
1answer
48 views

ivy cannot resolve org.springframework dependencies

I want to use the Ivy Eclipse plugin to reolve the spring-oxm dependency. <dependency org="org.springframework" name="spring-oxm" rev="3.2.2.RELEASE" /> But I got below error: Some ...
0
votes
4answers
73 views

publish artifact overwrite other artifact in Gradle

I am experimenting with Gradle to build a few jars, rather than maintain a list of classes that hold EJBs so that I can deploy them separately I thought it might be neat to scan the classes when ...
0
votes
1answer
17 views

Can Ivy download multiple versions of the same dependency?

I am well aware of the fact that this is not good idea, but I need to define a dependency with multiple versions. I would also like to know if it is possible to resolve all transitive dependencies of ...
1
vote
1answer
102 views

How does Gradle Integrate with a Shared Ivy or Maven Repository?

I've been reading up on Gradle and its repository support features. The docs indicate it supports Ivy or Maven repos. The implications of this are not entirely clear to me. In the case of a Maven ...
0
votes
1answer
41 views

Publishing Ivy SNAPSHOTS with Maven metadata

I have an Ivy project that publishes its artifacts to a Nexus Maven repository. I then need other Maven projects to be able to use those jars as dependencies. I have been able to get Ivy to create and ...
1
vote
1answer
52 views

How to add dependencies from Ivy to the Eclipse PDE Target Platform?

I can add in external OSGi bundles into my PDE project and I can get them to show up in the Target Platform (although I need to perform a reload once I have added a new one), I do this with a "lib" ...
0
votes
1answer
30 views

Grails: Ivy: Google Code: How do I add a Google Code dependency to Grails?

I'd like to get grails to automatically resolve dependencies for a Google Code project: https://code.google.com/p/google-api-java-client/ Maven example looks as such: <project> ...
0
votes
1answer
25 views

How to use the ivy local repository as a maven respository

The ivy local repository is in ~/.ivy2, and I'd like to use it as my local maven respoitory. Is there any easy way like setting to do it ?
0
votes
1answer
42 views

Configure IDEA to deploy using ivy

I have a project that uses IVY. My build script resolves the dependencies well. I have a library (lets call it Project_libs) configured in IntelliJ iml file so that when I deploy the application the ...
1
vote
2answers
70 views

How do I add a dependency to an SBT build file

I have an SBT build file like with lots of lines like this: "org.apache.mahout" % "mahout-math" % "0.5" Specifying dependencies. I have a new Jar that I want to add to my dependencies. How do I ...
0
votes
2answers
97 views

Simplest Ivy code to programmatically retrieve dependency from Maven Central

I find the Ivy API to be immensely complicated. What is the simplest possible snippet to retrieve an artifact from Maven Central into a specific local directory using Ivy 100% programmatically (no ...
3
votes
1answer
119 views

Maven or Ivy? Which one is better with a system already in production? And the other differences? [closed]

I know that this is a complicated question, but I would like know which one is better in the case of a system that it's already in production, with a lot of bugs and really bad design at all. A really ...

1 2 3 4 5 14