A dependency exists between two elements if changes to the definition of one element may cause changes to the other.
8
votes
3answers
8k views
Xcode: Running a script before every build that modifies source code directly
What I did:
I have a script that
Read some configuration files to generate source code snippets
Find relevant Objective-C source files and
Replace some portions of the source code with the ...
18
votes
2answers
22k views
NUnit “missing” GPSVC.DLL on Windows 7/64
I recently upgraded from Vista/32 to Win7/64. On my old machine, everything was working fine.
Unfortunately, on my new machine NUnit won't load my unit tests, with the error message ...
12
votes
3answers
6k views
Discovery of Dynamic library dependency on Mac OS & Linux
On Windows there is a tool Depends.exe to discover dependency of an EXE/DLL file on other DDLs. Which commandline tool is equivalent on Mac OS and Linux? Please kindly advise. Thank you!
7
votes
1answer
2k views
Automatically generating a diagram of function calls in MATLAB
Anybody knows of a tool that can be used to automatically build diagrams of function calls in MATLAB?
E.g. For a given function, the tool would recursively go through function calls and build a 2D ...
7
votes
7answers
474 views
How to tell which PHP files are actually used and which are not?
I got a large PHP website which I'm now about to take care of. It contains hundreds of separate PHP files, but I suspect only less than a half is really being used. Most of them probably can be ...
19
votes
2answers
8k views
Maven: how to override the dependency added by a library
Here's my generic problem:
My project P depends on A which depends on B which depends on C which depends on version 1.0.1 of D.
There's a problem with version 1.0.1 of D and I want to force the use ...
10
votes
3answers
2k views
How do I change the order in which Meteor loads Javascript files?
When you make a project with the Meteor framework, it packages all the files together, but there doesn't seem to be a way to explicitly say "I want this file to be loaded before that one".
Let's say, ...
6
votes
7answers
7k views
How can I build a 'dependency tree diagram' from my .NET solution
I can get easily see what projects and dlls a single project references from within a Visual Studio .NET project.
Is there any application or use of reflection that can build me a full dependency ...
2
votes
1answer
8k views
How To: Eclipse Maven install build jar with dependencies
I am using Eclipse Maven (m2e) inside Eclipse and I am running my project like this:
My pom.xml looks like this:
<project xmlns="http://maven.apache.org/POM/4.0.0" ...
10
votes
4answers
7k views
How do I stop Maven 2.x from trying to retrieve non-existent pom.xml files for dependencies every build?
In my project, there are a number of dependencies that are transitively included from other dependencies that do not have pom.xml files available in any of our corporate repositories. These are ...
8
votes
2answers
10k views
Maven - add dependency on artifact source
I have two maven modules, one that ends up as a jar, and one war that depends on that jar.
I want the jar module to package it's source code together with the compiled classes in the jar, so that ...
7
votes
4answers
1k views
Tools to generate unit dependencies for Delphi
Are there any tools that can generate dependency diagrams for Delphi units taking into account conditional compilation directives. I'd like to emphasize that this should be unit dependency diagram, ...
7
votes
2answers
1k views
How to sort based on dependencies?
I have an class that has a list of "dependencies" pointing to other classes of the same base type.
class Foo(Base):
dependencies = []
class Bar(Base):
dependencies = [Foo]
class Baz(Base):
...
7
votes
3answers
587 views
Best practices for referencing 3rd party assemblies
I have been wondering what are best practices when it comes to referencing 3rd party assemblies. A while ago I asked a question "Dependencies and references: what exactly should I reference" and ...
6
votes
1answer
127 views
Eclipse RCP - all possibilities to define dependencies?
Is there somewhere a list of all possibilities, to define dependencies in an Eclipse RCP project? maybe filtered by resources?
Possible dependencies:
from other Eclipse RCP Plugins
by package, ...
5
votes
3answers
2k views
Is it possible to have version-independent DLL references in a class?
I would like to create a class that compiles into a single DLL. This DLL would add functionality to an existing product.
To make this work, the custom class references DLLs contained in the ...
4
votes
1answer
2k views
How to distribute C run-time (CRT) Libraries
I'm building an application after converting VC++ 6 workspace on Visual C++ 2008 express. Build in itself goes successfully but real problem I have is with the generated manifests which looks like ...
4
votes
3answers
2k views
ASP.NET Custom Control - What is the best way to include embedded CSS reference only once?
The problem: I am embedding a CSS file into a custom control library with several controls. I want to share the same CSS file for all of the controls regardless of how many instances of them are on a ...
4
votes
8answers
1k views
In C++, how can I avoid #including a header file when I need to use an enumeration?
In my C++ header files I try to use forward declarations (class MyClass;) instead of #including the class header, as recommended in many C++ coding standards (the Google C++ Style Guide is one).
...
3
votes
2answers
549 views
Automatically generate object file (linker) dependencies for C/C++ executables
I am currently working on a flexible C/C++ build framework that I'll (hopefully) open source fairly soon. (see this question for some background).
I am using the below command to generate the ...
3
votes
2answers
659 views
Erlang Release Best Practices?
I'm an Erlang noob, and I've been checking out Faxien+Sinan and Rebar, and the basic philosophy of Erlang OTP seems to be, install applications and releases on a single Erlang image instance. What ...
16
votes
1answer
5k views
Ruby Gemspec Dependency: Is possible have a git branch dependency?
Is possible have a git branch dependency, inside mygem.gemspec ?
I'm thinking something similar to the following:
gem.add_runtime_dependency 'oauth2', :git => 'git@github.com:lgs/oauth2.git'
...
11
votes
5answers
4k views
Order of static constructors/initializers in C#
While working on a C# app I just noticed that in several places static initializers have dependencies on each other like this:
static private List<int> a = new List<int>() { 0 };
static ...
11
votes
9answers
3k views
How to track System Dependencies?
Introduction
In my current organisation, we have many desktop and web applications all feeding into each other at some point. When looking after older applications or creating new applications, it's ...
10
votes
1answer
534 views
Is it possible to trick pip install --find-links into using a downloaded sdist for --editable requirements?
Using the following command:
pip install -r requirements.txt -d sdists/
You can easily create an archive of requirements for distributing with your project. This works great if your requirements ...
10
votes
3answers
7k views
Maven : OSGI, bundles and multi-modules projects
I'm currently developing an OSGi based application (using Equinox) by trying to mavenize a web tutorial I've found on OSGi+Equinox. In this project, there are bundles depending on other bundles ...
9
votes
9answers
7k views
How can I manage OSGi build dependencies?
We've embedded an OSGi runtime (Equinox) into out custom client-server application to facilitate plugin development and so far things are going great. We've been using Eclipse to build plugins due to ...
8
votes
1answer
309 views
Identifying dependencies of R functions and scripts
I am sifting through a package and scripts that utilize the package, and would like to identify external dependencies. The goal is to modify scripts to specify library(pkgName) and to modify ...
8
votes
3answers
5k views
Maven failing to resolve recursive dependencies with multiple repositories
I'm new to maven so there must be something I don't understand. But, I've added multiple repositories to resolve multiple dependencies in my POM file. For some reason its failing while pulling a ...
8
votes
6answers
2k views
Cost of Including Header Files in Objective-C
This may seem like a really stupid question, but what is the cost of including (actually, calling #import) a header file in Objective-C? I get tired of constantly including the same headers in various ...
7
votes
4answers
2k views
In what order prerequisites will be made by the GNU make?
Assuming we have the rule:
a: b c d e
and b, c, d and e are independent of each other.
Is the order of making b, c, d, e defined? It seems that generally they will be made in order b, c, d, e, but ...
6
votes
2answers
144 views
algorithm to resolve version scope based dependency
I have a problem on a dependency algorithm, the dependency is similar to maven dependency, except it's strict version scope based.
For example:
component A, version 1 depends on: component B, ...
6
votes
2answers
205 views
How to avoid #include dependency to external library
If I'm creating a static library with a header file such as this:
// Myfile.h
#include "SomeHeaderFile.h" // External library
Class MyClass
{
// My code
};
Within my own project I can tell the ...
6
votes
3answers
1k views
Call graph generation from matlab src code
I am trying to create a function call graph for around 500 matlab src files. I am unable to find any tools which could help me do the same for multiple src files.
Is anyone familiar with any tools or ...
6
votes
2answers
8k views
How to fix visual studio 'projects out of date' message each time I run it
I have a visual studio (2005) solution file with 70 projects.
Each time I press F5 to run it, it tells me that 4 of the projects are out of date, and asks me if I want to rebuild them. It does this ...
6
votes
6answers
799 views
LINUX: Is it possible to write a working program that does not rely on the libc library?
I wonder if I could write a program in the C-programming language that is executable, albeit not using a single library call, e.g. not even exit()?
If so, it obviously wouldn't depend on libraries ...
5
votes
3answers
740 views
Tool for discovering dependencies of .NET code (not VS2010)
Given a really big .NET codebase. Some parts in sources and some parts in binaries. It's all .NET code.
I'd like to have a tool for discovering dependencies in that code base. By assemblies and by ...
5
votes
7answers
1k views
How do I get a diagram of the dependencies between my C# projects
I have a fairly complex application which has been broken up into multiple components. Each component has a solution file which contains a bunch of projects. So I like to think of this as a component ...
5
votes
2answers
155 views
What is a quick way to run a single script to automatically install missing modules using only Perl core?
I inherited a project which is supposed to be able to be deployed to other servers. This project has a number of simple module dependencies which however might not be present on all target machines.
...
5
votes
2answers
804 views
What are the open source alternatives to Lattix?
I have gotten the opportunity to work with Lattix in the past. I believe the paradigm it represents (a hierarchical dependency matrix) is the future of large-scale system architecture management.
...
5
votes
3answers
2k views
Specifying a subproject's Configuration in XCode
I have an XCode project (A) referencing another project (B). By default (as far as I understand it) XCode will implicitly build the configuration for the B dependency that matches the configuration of ...
5
votes
4answers
3k views
How to make maven place all jars common to wars inside the same EAR to EAR root?
We have a solution with numerous wars. Wars are similar in the sense they all use hibernate and spring. This means that we have a number of same jars inside each war. This is becoming a problem, ...
5
votes
5answers
2k views
Detect .NET Framework 3.5 SP1 Dependency (cmp. 3.5 w/o SP1)
I'm using 3.5 SP1 on my machine, while our customers currently use 3.5 without SP1.
I don't know any way in VS2008 to target the solution or project to 3.5 without SP1, only the 3.5 with SP1 I have ...
4
votes
5answers
415 views
Domain Driven Design and IoC/Dependency Injection
I'm trying to apply now what I learned about DDD and I'm a little bit confused about the flow of dependencies in the Domain model.
My questions are:
Should an Entity be aware of Factories, ...
4
votes
2answers
658 views
MsBuild does not look in the good directory for custom task's second-level dependencies
I wrote a MsBuild Task : MyTask. In my solution, I have the Task project and others projects. MyTask references a project (say ProjA) which references third assemblies, say (dep1 and dep2).
The ...
4
votes
4answers
687 views
Can someone show me what a good dependency matrix looks like and specify why?
I would like to start using DSM, but not sure how to get started.
What does a good dependency matrix look like and why? How does it work?
4
votes
9answers
724 views
Javascript object dependencies
In complex client side projects, the number of Javascript files can get very large. However, for performance reasons it's good to concatenate these files, and compress the resulting file for sending ...
4
votes
7answers
1k views
C++ Buildsystem with ability to compile dependencies beforehand
I'm in the middle of setting up an build environment for a c++ game project. Our main requirement is the ability to build not just our game code, but also its dependencies (Ogre3D, Cegui, boost, ...
4
votes
2answers
1k views
Including a non-Mavenized dependency so it works with maven-shade-plugin
I want to include GData Client, which doesn't use Maven, as a dependency into my Maven project. It ships as a bunch of JAR files.
Additionaly, I use Maven Shade Plugin to build an executable JAR ...
4
votes
8answers
4k views
How to determine a windows executables DLL dependencies programatically?
How to determine what DLL's a binary depends on using programmatic methods?
To be clear, I am not trying to determine the DLL dependencies of the running exec, but of any arbitrary exec (that may ...

