28
votes
16answers
3k 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 wil …
6
votes
5answers
865 views
How to programmatically get DLL dependencies
How can I get the list of all DLL dependencies of a given DLL or EXE file?
In other words, I'd like to do the same as the "Dependency walker" tool, but programmatically.
What is …
6
votes
10answers
2k 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 …
4
votes
4answers
72 views
find pom dependencies by classname
How can I found the dependency by classname?
In particular, I want to include this class org.mortbay.jetty.testing.ServletTester in my project, how do I do that? And how did you f …
4
votes
5answers
827 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 th …
3
votes
3answers
221 views
Depedency injection: injecting partially-initialized objects
Hi!
This question is about Unity Container but I guess it is applicable to any dependency container.
I have two classes with circular dependencies:
class FirstClass
{
[Depen …
3
votes
3answers
550 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 inte …
3
votes
1answer
371 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 co …
3
votes
2answers
195 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 …
3
votes
8answers
475 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 …
3
votes
6answers
2k views
How to exclude all transitive dependencies of a Maven dependency
Hi,
Right now, in Maven2, to exclude a single transitive dependency, I have to do something like:
<dependency>
<groupId>sample.group</groupId>
<artifact …
3
votes
2answers
215 views
Circular Dependencies in Ruby
Let's say we have two classes, Foo and Foo Sub, each in a different file, foo.rb and foo_sub.rb respectively.
foo.rb:
require "foo_sub"
class Foo
def foo
FooSub.SOME_ …
3
votes
7answers
901 views
circular dependencies between dlls with visual studio
I have a circular dependency between two functions. I would like each of these functions to reside in its own dll. Is it possible to build this with visual studio?
foo(int i)
{
…
3
votes
4answers
4k views
Error: The Side-by-Side configuration information in “BLAH.EXE” contains errors.
This is the error Dependency Walker gives me on an executable that I am building with VC++ 2005 Express Edition. When trying to run the .exe, I get:
This application has failed to …
3
votes
6answers
1k 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. …
