Tagged Questions

1
vote
6answers
122 views

Should I use Eclipse plug-ins (or OSGi Bundles) as a plain dependency management tool?

Heya, once again it has happened... I joined a new project, composed of several plain Eclipse Java Projects, with interdependencies, all managed through the Project build path. I …
1
vote
1answer
45 views

How do you handle library dependencies during deployment using PHP?

Hey guys - this is a question on PHP mainly. I was wondering: How do you make sure that all necessary libaries are packaged with your application when you do a deployment to (prod …
2
votes
1answer
45 views

Choosing the right version of Apache Commons Logging

I've got dependencies on several Apache TLPs (Top Level Projects) like Apache Axis, Commons HttpClient, Commons DBCP, Commons Transaction etc. Each of these projects has a depende …
4
votes
5answers
252 views

Maven-like dependency management for C++?

Say I have a C++ project that is split in several subprojects. The subproject all produce a DLL and different teams of developers work on each of the subproject. Now if I want to b …
0
votes
1answer
314 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 pattern="http://repository.springsource.com/ivy/bundles/external/[ …
6
votes
1answer
290 views

What’s the best way to manage a dependency tree in .NET?

In my last project we used MSBuild as a scripting language. (yeah, really!) We also wrote hundreds of custom MSBuild tasks, for the parts that made more sense in C#. (I even wrote …
1
vote
2answers
147 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 be …