Tagged Questions
The management of dependencies, for example third party libraries, that are used by a software project.
16
votes
4answers
4k views
Maven equivalent for python
I'm a java developer/python beginner, and I'm missing my maven features, particularly dependency management and build automation (I mean you don't build, but how to create a package for deployment?)
...
11
votes
2answers
2k views
How to deploy OSGi apps and dependencies?
OSGi seems to have an excellent benefit of having small deployable artifacts by not wrapping dozens of JAR dependencies into a lib directory. However, I can't find anything that tells me an easy, ...
11
votes
4answers
2k views
JavaScript dependency management
I am currently maintaining a large number of JS files and the dependency issue is growing over my head. Right now I have each function in a separate file and I manually maintain a database to work out ...
11
votes
6answers
957 views
How to do deployment for php application
I am currently developing a php-application for a charity organization and I am now in the stage of defining the deployment practices.
Our application is using both Zend Framework and Doctrine. The ...
11
votes
2answers
844 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 an MSBuild task to ...
9
votes
3answers
188 views
How should I manage binary dependencies for my gems in production?
Bundler does an awesome job of making sure all the right gems are installed when I deploy.
However, some gems depend on binaries (eg Paperclip depends on ImageMagick, PDFKit depends on wkhtmltopdf) ...
9
votes
2answers
562 views
Are there any good/automateable dependency management tools for managing application, database & external resources dependencies?
I would like to build an overview/map of as many of our applications dependencies as possible. Analyzing .NET application dependencies is fairly easy using tools such as NDepend (which I love!). But ...
8
votes
1answer
637 views
What is the meaning of type “bundle” in a maven dependency?
What is the meaning of "bundle" e.g in this dependency:
<dependency>
<groupId>org.apache.abdera</groupId>
<artifactId>abdera-core</artifactId>
...
8
votes
1answer
594 views
Creating Dependency Graphs in Python
I have inherited a huge codebase that I need to make some small changes into. I was wondering if there are utilities that would parse python code and give dependencies between functions, as in if I ...
7
votes
3answers
691 views
Dependency Injection vs Service Location
I am currently weighing up the advantages and disadvantages between DI and SL. However, I have found myself in the following catch 22 which implies that I should just use SL for everything, and only ...
7
votes
2answers
748 views
Source code dependency manager for C++
There are already some questions about dependency managers here, but it seems to me that they are mostly about build systems, while I am looking for something targeted purely at making dependency ...
6
votes
2answers
123 views
How to use leiningen to develop using local jars?
I realize that this question is pretty much the exact question found here. However, seeing as that question is 1.5 years old (or so), I would like to revisit it. How does one add local dependencies ...
6
votes
1answer
128 views
How to query from a Directed Acyclic Graph with exclusive subsets
Question in abstract terms:
I have a directed acyclic graph (DAG) which contains subsets of vertices which are exclusive when queried (only one item per subset should be present in the query's ...
6
votes
3answers
327 views
C++: Tool to reduce compile-time dependencies automatically
After reading about the pimpl idiom I was horrified!
Isn't there a tool out there that can inspect a .h/.cpp file and deduce what dependencies could be waivered?
6
votes
4answers
146 views
Keeping a library dependency-free
I have a small Utility library containing some useful utility methods which have been fully unit-tested. At the moment, my library has no external dependencies. I am toying with the idea of adding ...
6
votes
2answers
73 views
How to handle major framework/dependency upgrades?
Looking for some best practices on handling a major dependency upgrades within a project, assuming the use of a dependency management tool(e.g., Maven 2).
Specifically, I'm interested in:
How to ...
6
votes
5answers
2k 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 build the main ...
5
votes
2answers
68 views
clojure and leiningen - using a git repository as dependency
Is it possible to have leiningen pull a project directly from a git repository (on github) as a dependency?
Using Bundler with Ruby, it is possible to map a gem to a git repo, allowing for rapid ...
5
votes
2answers
78 views
Are there technical reasons to avoid creating highly tangled package dependencies in large Java projects?
I'm new to modern Java compilers and Virtual Machines, so I'm curious, what technical issues do large Java projects (5000+ sizable classes) encounter, during compilation and at runtime, as the gordian ...
5
votes
3answers
148 views
Finding out all conflicting packages/classes of referenced jars in an Eclipse project
I am currently dealing with a huge Eclipse project (not written by me). This project doesn't use any dependency management tools. It references hundreds of JARs.
Some of these JARs contain same ...
5
votes
1answer
125 views
Python dependency analyzer library
I need a way to find the dependencies for each of my Python package's sub-modules at runtime so I can initialize them in a proper order (see my current [EDIT: former] solution here, which doesn't work ...
5
votes
3answers
211 views
Are we heading for jar hell in java platform similar to dll hell?
Last night I was trying to put a simple tutorial to build an application using the stack - Spring (2.5) + JPA (1.0) + Hibernate (downloading for first time, so didn't know which version to use). ...
5
votes
2answers
438 views
How to break a maven build when there is a dependency conflict?
I ran mvn dependency:tree for a project and I saw output like the following:
[INFO] my:project:jar:1.0.0-SNAPSHOT
[INFO] +- some.other:library:jar:2.0.0:compile
[INFO] | \- ...
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
2answers
128 views
Managing internal 3rd Party Dependencies
We have a lot of different solutions/projects which are managed by different teams. Our solution needs to reference several projects that another team owns. We don't want to add these dependencies as ...
5
votes
3answers
72 views
Checking that all libs and dlls are from the same build?
I am developing a program in VS C++ 2008.
Right now, I have a huge list of dll and lib dependencies and I am adding some more. I worry that when I need to update a dependency by building from source ...
5
votes
5answers
660 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 ...
4
votes
2answers
94 views
Consolidating ASP.NET MVC Controller Dependencies (StructureMap)
I'm looking at the controllers in my website, and most of their constructors look like this:
public SomeController(
IServiceOne serviceOne,
IServiceTwo serviceTwo,
ILoggingService ...
4
votes
2answers
91 views
Automating Leiningen local dependency management
I am using a local maven repository to house some code I am using to develop a project. I have cited this repository in my project.clj file, and am now able to rely on local jars in this way (how to ...
4
votes
2answers
272 views
iPhone Project Dependency Management
Has anyone had any success in finding a reliable, generalised solution for managing dependencies for iPhone projects? I'm looking to split my iPhone applications up into reusable components and then ...
4
votes
1answer
97 views
Dealing with legacy django project in new localized projects
I am right now in the situation to plan the internationalization of a django project that contains mainly legacy code. The old project itself has different applications which have a strong dependency ...
4
votes
1answer
220 views
Node.js - module caching, partially done objects, and cyclical dependencies?
In the node.js documentation regarding module caching, the following statement is made:
Multiple calls to require('foo') may not cause the module code to be executed multiple times. This is an ...
4
votes
3answers
91 views
Product depencencies: trigger reinstallation
I'm developing a product for Plone, say foo.core. Besides that core product, there are also several related products. like foo.optional. These releated products may be available in the instance and if ...
4
votes
4answers
281 views
How to remove the dependency on a Java enum's values?
[Mind the gap: I know that the best solution would be to get rid of the enum completely, but that's not an option for today as mentioned in the comments, but it is planned for the (far) future.]
We ...
4
votes
1answer
290 views
Visual Studio 2010 Ultimate Layer Diagram - Open Source Equivalent?
I really like the feature of having a dependency diagram and preventing certain assemblies from having references to other assemblies - ensuring other developers adhere to good programming practices.
...
4
votes
3answers
126 views
PowerShell dependency management
Scenario
My PowerShell folder contains a library of utility scripts. I have it shared and version controlled with GitHub between my work and home computers. At work I now have a number of projects ...
4
votes
1answer
193 views
Tools / best practices for managing application dependencies?
What tools or best practices are available for tracking and managing dependencies of the software I'm developing? I'm using Python / Django, and to date all my software requirements are open source.
...
4
votes
1answer
379 views
Gradle Test Dependency
I have two projects, project A and Project B. Both are written in groovy and use gradle as their build system.
Project A requires project B.
This holds for both the compile and test code.
How can ...
4
votes
4answers
241 views
What if Dependency Injection is not possible?
After much kicking and screaming, I'm starting to accept DI despite how much cleaner SL may seem as dependencies grow.
However, IMO there's still a significant show-stopper with regards to DI:
DI is ...
4
votes
2answers
78 views
Maven : Should I keep or remove declared dependencies that are also transitives dependencies?
Do you think it is a good practice to remove every transitive dependencies that can be found in a maven pom?
Example:
My project depends on A and B.
B is also a transitive dependency of A.
Should I ...
4
votes
2answers
486 views
How to check pom.xml for updated dependencies
I am fairly new to Maven and pom.xml. Is there a way I can find out which of my dependencies that are outdated, so that I can update version numbers in my pom.xml.
In other languages, for instance, ...
4
votes
5answers
324 views
What are the CS fundamentals behind package/dependency management?
Often I hear about situations where companies are developing extensable in house software (the dreaded enterprise 'framework') which is supposed to support multiple 'plugins' from diffirent teams. ...
4
votes
3answers
433 views
Is there an .NET alternative for Java artifact repositories like Nexus or Artifactory? Where do you store versioned DLL's?
Where to store binaries needed for automatic builds on Team System?
Are you storing them along with the code in the SCM or someplace else? Is having a big amount of binaries in SCM causing any ...
4
votes
1answer
721 views
How can I use different JARs for compiling and testing in maven?
I compile my programm against javaee-api. But for Junit testing I must use a specific implementation like glassfish's javaee.jar to avoid errors like java.lang.ClassFormatError: Absent Code attribute ...
4
votes
3answers
516 views
How do you handle library dependencies during deployment using PHP?
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 (production) servers?
A more ...
4
votes
4answers
307 views
How do you package external libraries in your .Net projects?
A lot of my projects contain the Castle/NHibernate/Rhino-Tools stack. What's confusing about this is that Castle depends on some NHibernate libraries, NHibernate depends on some Castle libraries, and ...
4
votes
5answers
1k views
3
votes
1answer
160 views
Javascript templating library that infers used variables and dependencies
Is there a Javascript templating library that automatically infers the variables used in the template and the possible dependencies among them? If I for example have a template that looks like this ...
3
votes
6answers
359 views
Are there good tips or tools for removing third party C and C++ libraries from a codebase? (OS X or Linux)
I am in the process of reducing and quarantining my usage of some libraries. Many existing programs I've written use these libraries directly. I would like the compiler (GCC and/or Clang in this case) ...
3
votes
2answers
59 views
Verify dependencies in a Maven build
Is there a way to write a test that checks Maven dependencies?
In our project, we found these problems:
Some parts of the project use commons-io:commons-io, others used ...