Apache IvyDE is the Eclipse plugin which integrates Apache Ivy's dependency management into Eclipseâ„¢. https://ant.apache.org/ivy/ivyde/
0
votes
2answers
19 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
13 views
ivyde copying local jars into .ivy2
While everything seems to be working, I've noticed an odd behavior of the IvyDE eclipse plugin.
First, I've configured a resolve in ivysettings.xml to publish (and find) my projects artifacts in a ...
0
votes
1answer
26 views
FileResolver, environment variable and ivyde
I have an ant/ivy project that I'm also using in Eclipse. The problem is that in eclipse, ivyde is complaining about the FileResolver in my ivysettings.xml, claiming that the path must be absolute. ...
1
vote
1answer
54 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
0answers
36 views
Ivy test configuration in eclipse
I have an ivy dependency management to work both under eclipse and with ant.
How should I configure the test dependencies to be available for eclipse?
my current configuration is:
...
0
votes
1answer
75 views
Why can IvyDE use the source for scala-library but not the source for scalaz-core_2.10.0-RC3-7.0.0-M5?
I'm using IvyDE with Eclipse Indigo. I've got an ivy.xml file that looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0" ...
1
vote
1answer
101 views
Why doesn't Google Eclipse Plugin GWT compiler recognise Ivy dependency classpathentry?
At present, I have an ANT build which takes care of integrating Ivy dependency for both Javac and GWT compile very well.
What puzzles me is, why doesn't the GPE GWT compiler recognise the eclipse ...
0
votes
1answer
606 views
Spring Security 3.1 xsd and jars mismatch issue
I'm Trying to migrate from spring framework 3.0.5 to 3.1 and spring-security 3.0.5 to 3.1 (not to mention hibernate 3.6 to 4.1). Using Apache IVY.
I'm getting the following error trying to start ...
1
vote
1answer
50 views
ivyde isn't triggered to resolve on ivy.xml update from source control
When I refresh my project from source control (e.g., perforce), and I get an updated ivy.xml file, ivyde isn't triggered to do a "resolve". So as a workaround, I do both a project refresh, and a ...
0
votes
1answer
65 views
How do I include an Ivy Dependency in subversion repo
So, since I've been unable to find a way to resolve our dependency issues by including everything from external sources I've turned to Eclipse / IvyDE for ant / Ivy integration.
With that said, I ...
1
vote
1answer
108 views
Shared ivy cache but separate resolution caches in eclipse
In our environment, we end up with multiple workspaces (runk plus multiple branches).
We wish to separate our resolution caches, but share the actual cache.
So far, this is easy, but it requires ...
1
vote
0answers
322 views
Eclipse including multiple jars from apache ivy IDE plugin in web deployment assembly
I recently updated my project setting to resolve a resource problem between my groovy plugin and ivy plugin.
I use apache ivy IDE plugin 2.2.0 final & eclipse Helios Service Release 1 on a 64bit ...
1
vote
2answers
201 views
How can I get Eclipse to use my IVY_HOME variable when downloading ivy dependencies?
My company uses extensive use of ivy to download dependencies. Some of these dependencies are huge (~500MB) and take a while to download from the remote repositories.
To build our application we have ...
1
vote
1answer
224 views
IvyDE Resolve Dependencies in workspace with a Dynamic Web project in Eclipse
I have a large application with many eclipse (actually using Spring Source Toolsuite) projects with ivy managed dependencies for each project. We currently have it setup and working where you can ...
0
votes
1answer
391 views
Ivy resolves jersey-servlet from Ant but not IvyDE
I'm trying to build a restful server using Apache Jersey. I'm developing in Eclipse Indigo and using Ivy for dependency management with this ivy.xml file
<?xml version="1.0" encoding="UTF-8"?>
...
7
votes
4answers
1k views
How to attach sources to SBT managed dependencies in Scala IDE?
I'm using Scala IDE 2.0.1 and SBT 0.11.2 to start with Akka 2.0.1. My build.sbt looks like this:
name := "akka"
version := "0.1"
scalaVersion := "2.9.2"
resolvers += "Typesafe Repository" at ...
0
votes
1answer
192 views
Ivy resolving POM dependency where version comes from POM parent
Using Ivy 2.2 and IvyDE 2.2 from Eclipse (Helios)....
Want to pull in the spring-data-neo4j and it's default dependencies from:
...
3
votes
3answers
1k views
How to get Ivy to download sources from Nexus repo
I have been searching around for ages trying to find a solution to my problem, but all of the other posts I have come across either don't work or don't match my situation, so hopefully someone can ...
0
votes
2answers
339 views
How IvyDE can coexist with command-line Ant and Ivy?
I have problems running Ivy->Resolve from Eclipse IDE with IvyDE installed. Meanwhile, ant target
<target name="retrieve" unless="library.installed" description="Retrieves the libraries if ...
4
votes
2answers
737 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' ...
1
vote
3answers
309 views
Ant task to refresh IvyDE Eclipse libraries
I use Ivy for dependency management with the IvyDE Eclipse plugin and I have dependent libraries that change quite frequently and Eclipse doesn't seem to refresh the libraries when I refresh the ...
1
vote
2answers
848 views
Add Ivy managed dependencies to Android build path
Using Eclipse and Ivy, I'm successfully able to download and manage dependencies. These dependencies are added to Eclipse's build path using IvyDE's container.
However, Android does not find the ...
3
votes
1answer
135 views
Why doesn't ivyde see one of my dependencies?
Hi guys I have an Eclipse build, using ivyde, that doesn't see one of my dependencies.
The build works fine in normal ant from the commandline.
The particular missing dependency is one of our own ...
1
vote
1answer
838 views
Setting up projects with IvyDE
Are there any good sample projects with IvyDE or tutorials on setting up projects with IvyDE in Eclipse?
4
votes
1answer
259 views
Ivy downloading more jars than expected
Summary:
Ivy is downloading more jars than I expect and I don't know why.
Details:
I'm converting my project from using Maven Ant Tasks for dependency management to Ivy.
So far, I have done the ...
1
vote
1answer
2k views
resolving javadoc files with Ant and Ivy
I'd like Ivy to fetch both the log4j .jar and JavaDocs. Right now, I am at a dead end. When If I use this in my ivy.xml ...
<dependency org="log4j" name="log4j" rev="1.2.16"/>
... then I just ...
0
votes
2answers
644 views
Clarification On And Resolution Of 'Java EE Module Dependencies'
I'm attempting to set up a web project's dependency on a utility project. My utility project is set up with the 'Utility Module' project facet and 'Java 5'. When I select 'Java EE Module ...
2
votes
1answer
189 views
Alternatives for ivyDE
I have huge project that is totally dependent on ivyDE and we are now looking forward to move from it.
Are there any other better options that can replace ivy stuff?
Any advice?
0
votes
1answer
255 views
Ivy libs in WAS deployment
I have a war attached to an ear in RAD. I'm using Ivy to manage my project dependencies. My only problem is that when I deploy the ear to my dev instance of WAS through RAD, the deployment doesn't ...
3
votes
2answers
762 views
IvyDE + WTP: How to workaround that ivy library is ignored by WTP?
I have found IvyDE which allows me to solve an outstanding problem of having a frozen core version of a web application, which needs to be able to pull in extra code from an update library so it is on ...
16
votes
2answers
4k 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?