A dependency exists between two elements if changes to the definition of one element may cause changes to the other.
72
votes
5answers
30k views
How do I tell Maven to use the latest version of a dependency?
In Maven, dependencies are usually set up like this:
<dependency>
<groupId>wonderful-inc</groupId>
<artifactId>dream-library</artifactId>
...
69
votes
12answers
126k views
The located assembly's manifest definition does not match the assembly reference
I am trying to run some unit tests in a C# Windows Forms application (Visual Studio 2005) and I get the following error:
System.IO.FileLoadException: Could not load file or assembly 'Utility, ...
49
votes
12answers
18k views
Tools for finding unused references
Are there any good tools or tricks for determining if there are any referenced but unused dependencies (such as dlls) in a project?
My specific case is C# .net3.5.
44
votes
19answers
8k views
How should I detect unnecessary #include files in a large C++ project?
I am working on a large C++ project in Visual Studio 2008, and there are a lot of files with unnecessary #include's. Sometimes the #include's are just artifacts and everything will compile fine with ...
43
votes
16answers
5k views
C/C++: Detecting superfluous #includes?
I often find that the headers section of a file get larger and larger all the time but it never gets smaller. Throughout the life of a source file classes may have moved and been refactored and it's ...
43
votes
10answers
35k views
force Maven2 to copy dependencies into target/lib
How do I get my project's runtime dependencies copied into the target/lib folder?
As it is right now, after 'mvn clean install' the target folder contains only my project's jar, but none of the ...
40
votes
9answers
9k views
How do I tell cpan to install all dependencies?
How do I tell cpan to install all dependencies?
Edit:
After following Sinans link.
I tried setting these in cpan:
cpan> o conf prerequisites_policy follow
cpan> o conf commit
I still had to ...
32
votes
4answers
9k views
Maven: add a dependency to a jar by relative path
I have a proprietary jar that I want to add to my pom as a dependency.
But I don't want to add it to a repository. The reason is that I want my usual maven commands such as mvn compile, etc, to work ...
27
votes
10answers
3k views
Unit testing code with a file system dependency
I am writing a component that, given a ZIP file, needs to:
Unzip the file.
Find a specific dll among the unzipped files.
Load that dll through reflection and invoke a method on it.
I'd like to ...
26
votes
14answers
17k views
Good tool to generate dependency diagram?
Any good tool to generate dependency diagram?
Input: any simple format (not always source code) to describe dependency relation of several items. E.g. A depends on B, C; C depends on D, E ...
...
25
votes
17answers
6k views
Why do so few people use Maven? Are there alternative tools?
I am new to Java, and when I started my development, my friends recommended Maven for project management. I almost immediately realized that it is an indispensable tool, and at that time I was ...
23
votes
9answers
2k views
Should I link to Google API's cloud for JS libraries?
I'm looking for the pros/cons of pulling jQuery & other JS libraries from Google API's cloud as opposed to downloading files and deploying directly.
What say you?
My decision
The likelihood ...
22
votes
3answers
5k views
Adding project as dependency in XCode 4.x
With the revamp of XCode I am having a lot of trouble working out how to add make one xcodeproj dependent on another. It was hard enough to work out before but now I am just stuck.
If I drag ...
22
votes
15answers
2k views
How to stop Visual Studio adding assemblies to my web.config?
Every time i build, or publish, a web-site, Visual Studio attempts to check out the web.config file so that it can add numerous assemblies that are not required.
In other words:
web.config before:
...
21
votes
8answers
8k views
Maven or Ivy for Managing Dependencies from Ant?
I was wondering about the best way to manage projects dependencies from ant. What are the pros and cons of the Maven Ant task and of Ivy?
20
votes
2answers
5k views
differences between dependencymanagement and dependencies of maven
Hi:
What is the differences between dependencymanagement and dependencies?
I have seen the docs at apache maven web site.However I got nothing.
It seems that a dependency defined under the ...
20
votes
8answers
1k views
Large Java System Dependency Management
We have a large (>500,000 LOC) Java system that depends on 40-50 OSS
packages. The system is built with Ant, and dependency management is
handled manually at present. I'm investigating Ivy and/or ...
19
votes
1answer
3k views
How can I generate a list of function dependencies in MATLAB?
In order to distribute a function I've written that depends on other functions I've written that have their own dependencies and so on without distributing every m-file I have ever written, I need to ...
18
votes
7answers
21k views
How can I use Maven to get the latest Hibernate release?
I am having trouble getting the latest release of Hibernate via Maven dependency. It appears that the latest I can fetch from a Maven central repository is 3.2.6.GA, and I am interested in using ...
17
votes
9answers
23k views
How to exclude all transitive dependencies of a Maven dependency
Right now, in Maven2, to exclude a single transitive dependency, I have to do something like:
<dependency>
<groupId>sample.group</groupId>
...
17
votes
5answers
9k views
Add a dependency in Maven
How do I take a jar file that I have and add it to the dependency system in maven 2? I will be the maintainer of this dependency and my code needs this jar in the class path so that it will compile.
17
votes
2answers
6k views
Different dependencies for different build profiles in maven
Is it possible to have a different set of dependencies in a maven pom.xml file for different profiles?
e.g.
mvn -P debug
mvn -P release
I'd like to pick up a different dependency jar file in one ...
15
votes
5answers
3k views
Using npm to install or update required packages just like bundler for rubygems
I love Bundler, it's great at dependency management. I love npm, installing node packages is easy! I have a nodejs app and would love to be able to specify my apps dependencies and easily install / ...
15
votes
5answers
11k views
maven for .net
what do people use instead of maven for C# winforms projects. We have developers all over the world and are trying to come up with some dependency management system that is clean simple and fast
15
votes
5answers
2k views
Best practices for file system dependencies in unit/integration tests
I just started writing tests for a lot of code. There's a bunch of classes with dependencies to the file system, that is they read CSV files, read/write configuration files and so on.
Currently the ...
14
votes
2answers
13k 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 ...
14
votes
3answers
4k views
Maven: remove a single transitive dependency
My project includes a jar file because it is listed as a transitive dependency.
However, I have verified not only that I don't need it but it causes problems because a class inside the jar files ...
14
votes
5answers
10k views
List of dependency jar files in Maven
Using Maven 2, is there a way I can list out the jar dependencies as just the file names?
mvn dependency:build-classpath
can list the jar files, but that will include the full path to their ...
14
votes
6answers
10k views
How do I determine the dependencies of a .NET application?
Does Dependency Walker work with managed apps? I've downloaded the latest and tried profiling the app, but it just exits without much of an explanation. If it doesn't work with .NET, then is there ...
13
votes
4answers
246 views
Best practice for documenting javascript library dependencies
So you're creating a bunch of code in an external .js file that requires jQuery and a few of its plugins, or MooTools, or perhaps some more esoteric libraries. Obviously the actual "include" is done ...
13
votes
2answers
4k views
HintPath vs ReferencePath in Visual Studio
What exactly is the difference between the HintPath in a .csproj file and the ReferencePath in a .csproj.user file? We're trying to commit to a convention where dependency DLLs are in a "releases" svn ...
13
votes
2answers
5k views
Circular import dependency in Python
Let's say I have the following directory structure:
a\
__init__.py
b\
__init__.py
c\
__init__.py
c_file.py
d\
__init__.py
...
13
votes
8answers
8k views
Dependency graph of Visual Studio projects
I'm currently migrating a big solution (~70 projects) from VS 2005 + .NET 2.0 to VS 2008 + .NET 3.5. Currently I have VS 2008 + .NET 2.0.
The problem is that I need to move projects one by one to new ...
13
votes
5answers
3k views
How to find all dependencies of a .NET project?
Basically, what I need is something like Dependecy Walker, but it should work with .NET applications. Is there anywhere such tool?
13
votes
4answers
611 views
What is a good reference for how calculation engines such as Excel work?
I am interested in learning how dependency-based calculation engines work in practice. Of course, I can make up my own algorithm, but I was curious if there were any well explained algorithms that are ...
12
votes
1answer
309 views
“Deep” header dependency analysis
I work on a mid-sized C/C++ project to which I've already applied Doxygen+Graphviz. Its header graphs are useful, but they only show relationships based on #include. I'm interested in finding a ...
12
votes
2answers
667 views
Hg sub-repository dependencies
There have been a couple of questions about Hg sub-repo dependencies in the past (here and here) but the accepted answers don't seem to address the problem for me.
A project of mine has 4 ...
12
votes
10answers
512 views
Is testability alone justification for dependency injection?
The advantages of DI, as far as I am aware, are:
Reduced Dependencies
More Reusable Code
More Testable Code
More Readable Code
Say I have a repository, OrderRepository, which acts as a repository ...
12
votes
4answers
273 views
What happens when two Java frameworks need third one but each of the two need different version of third one?
In my Java project I'm using two different frameworks (let's say A.jar and B.jar) and both of them require one common framework (let's say Log4j.jar) but in two different versions. How it is treated ...
12
votes
7answers
7k views
How can I have a Makefile automatically rebuild source files that include a modified header file? (In C/C++)
I have the following makefile that I use to build a program (a kernel, actually) that I'm working on. Its from scratch and I'm learning about the process, so its not perfect, but I think its powerful ...
11
votes
5answers
282 views
Android Dependencies
If I create an app that depends on another app or apps (eg: the Facebook and Twitter apps), yet they are not installed, is there a method of checking for those dependencies and installing them at the ...
11
votes
3answers
188 views
Binding to time-dependent properties
Some time ago i wrote a small widget-like application which was supposed to keep track of tasks, each task had a deadline specified as a DateTime, now if you want to display how much time is left ...
11
votes
2answers
2k views
Maven: Packaging dependencies alongside project JAR?
I've like Maven to package a project with run-time dependencies. I expect it to create a JAR file with the following manifest:
.....
Main-Class : com.acme.MainClass
Class-Path : lib/dependency1.jar ...
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
5answers
10k views
MS C++ 2010 and mspdb100.dll
Microsoft's C++ compiler and linker seem to have an odd relationship with mspdb100.dll. When run from the IDE, of course, the compiler and linker work fine. When running either one from the command ...
11
votes
1answer
2k views
CMake & CTest : make test doesn't build tests
I'm trying CTest in CMake in order to automatically run some of my tests using make test target. The problem is CMake does not "understand" that the test I'm willing to run has to be built since it is ...
11
votes
3answers
1k views
Is there a good dependency analysis tool for Python?
Dependency analysis programs help us organize code by controlling the dependencies between modules in our code. When one module is a circular dependency of another module, it is a clue to find a way ...
11
votes
3answers
252 views
How to display credits
I want to give credit to all open source libraries we use in our (commercial) application. I thought of showing a HTML page in our about dialog. Our build process uses ant and the third party libs are ...
10
votes
2answers
82 views
Creating a Java application that downloads its own dependencies
I'm interested in how to distribute a Java application that has a lot of dependencies (specified in a pom.xml in Maven).
Obviously it would be possible to just package everything in one big .jar ...
10
votes
2answers
143 views
Can a Perl script install its own CPAN dependencies?
I have a Perl script that has two dependencies that exist in CPAN. What I'd like to do is have the script itself prompt the user to install the necessary dependencies so the script will run properly. ...