I am trying to debug some rather complex dependencies within a closed-source application that I am running inside of a custom app, and am looking for a tool to watch the application while it is running, so that I know which files and registry entries are utilized. Is there such a product available? Commercial or opensource are welcome, a...
Hi,
I'm trying to figure out the proper tools for managing dependencies between JARs. I have a Play Framework app, which imports a JAR (based on another project I'm writing). This JAR imports other JARs, some of which have dependencies for yet other JARs.
This far, I've gotten by with adding stuff to the build path in Eclipse. But when...
I'm interesting in modeling relations between documents in CouchDB. Let say that i have three documents A,B and C. These documents may refer to each other, but there is an application constraint that cyclic dependency must not occur.
Lets take a example (-> is a marker for dependency):
A -> B
C
Two clients (C1, C2) try concurrent mo...
I have a large makefile which builds several libraries, installs them, and then keeps on building objects which link against those installed libraries. My trouble is that I want to use "-lfoo -lbar" as g++ flags to link against the two installed libraries, but the dependencies get messed up. If I change a header "42.h" which the librar...
I have a CMake C++ project that is rapidly growing and often changing. I'm trying to reduce compile times to a minimum.
Often, when I rebuild the project, especially after a header change, I'm surprised at how many compilation units need to be recompiled. I'm trying to identify #includes that can possibly be avoided, for example by usin...
Hi all
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 the dependencies between functions.
This I would like to automate. For instance if I have the function f
Array.prototype.f = fun...
I have a C# project, built using VS2008. It has a number of third party dependencies. However, when I create a set-up project for it, the “Detected Dependencies” folder is empty. How do I either force it to detect these dependencies, or manually add them?
...
With maven1 I was using the extend tag to tell my children project to use their parent configuration.
All dependencies declared in the parent were available in extending (children) projects.
Now with maven2 I'm using the inheritance/composition feature and I have to redeclare my dependencies (minus the version number) in every child pr...
I want to associate a text or xml file with my project. So when the applications gets published this text file should tag along. How do you do this in visual studio?
...
I am building an application that calls upon a compiled executable. Said executable's source code project file is referenced by the solution file for the parent application. The child executable is a stand alone command line application. The parent is a effectively a GUI wrapper to the console application. When I compile the console appl...
I have a setup project in .NET. When I save the project and the other projects to subversion, the setup project no longer compiles. I get the error "Unable to update dependencies of the project."
Any ideas why?
...
I want to disable the additional dependency check generated for an XCode project (and possibly also the CMake cache update verification), since this increase very very much the entire build time (about three times in my case). With Visual C++ is sufficient to set the flag
SET(CMAKE_SUPPRESS_REGENERATION TRUE)
but in XCode it does not...
I am developing a Grails application along with a Grails plugin used by that application. In Intellij, I have defined two modules: one for the application, and one for the plugin. In my application's BuildConfig.groovy, I have defined the plugin dependency as a maven dependency, because when it is built/deployed to the production server,...
Does anyone know of a tool, or any solution (preferably free), to automatically generate editable assembly dependency graphs (such as Visio diagrams)?
I have found similar threads online, but the several tools recommended (.Net Reflector Graph add-in, Dependency Visualizer, GraphViz, etc) generate only image files (PNG, JPG, SVG, etc).
...
Hi, I have one problem with the ALTER TABLE in postgre. I want to change size of the varchar column. When I try to do this, It says that the view is dependent on that column. I can't drop the view because comething else is dependent on it. Is there any other way than to drop everything and recreate it again?
I just found one option, whi...
Hey folks,
Using MS-SQL-08:
Is it possible to somehow temporarily disable dependency checking, so that I can create a view that uses a function that does not exist (has not yet been created) at the time of creating the view. [then create the required function, and finally re-enable dependency checking]
So, lets say I have view V, whi...
I am trying to find a viable strategy to a following problem.
We have several web projects which are dependent on our framework. Everything is stored in our SVN and has its own project with all the necessary directory structure (trunk, tags, branches). In an example - we have projects webprj01 and webprj02 and we have a framework frm01....
Hello,
I'm using CMake to build an application made up of four projects:
a.dll, which has no dependency
b.dll, which depends on a.dll
c.exe, which depends on a.dll and b.dll
d.exe, which depends on a.dll and b.dll
Each project (or target in CMake's terminology) lies in its own subdirectory, and has its own CMakeLists.txt file. In ad...
I have the following in my Gemfile:
clear_sources
bundle_path "vendor/bundler_gems"
source "http://gemcutter.org"
...
gem "vpim", "~> 0.658"
# a whole bunch of other gems
When I run gem bundle, I get everything installed except vpim. Running gem bundle --list | grep vpim returns nothing.
I'm using bundler08 because t...
Hi there:
I m trying to not target a specific version of a dll but I m not quite sure how.
I have set the option Specific Version on the properties of the assembly to false, however if i try to run the application and the version of the requested assembly is a previous one, I get a:
FileLoadException: Could not load file or assembly
...