A dependency exists between two elements if changes to the definition of one element may cause changes to the other.
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 ...
4
votes
9answers
1k views
Do you define an interface for every public class in your domain model? Pros and Cons? [closed]
Do you implement an interface for every public class in your domain model? Pros and Cons?
Update: If Repositories interfaces and domain model classes are defined in separate assemblies, wouldn't ...
3
votes
1answer
672 views
In setup.py or pip requirements file, how to control order of installing package dependencies?
I've got a Python package with its setup.py having dependencies declared via the usual way, in install_requires=[...]. One of the packages there, scikits.timeseries, has a setup.py expecting numpy to ...
3
votes
1answer
1k views
Qt Dependency Visualizer
I have a lot of classes which interact with other classes through signal&slot mechanism, composition, inheratance etc.
I wonder, is there any tool which visualizes(such as:UML-like diagrams) ...
3
votes
7answers
2k views
MATLAB: determine dependencies from 'command line' excluding built in dependencies
Is there a way to determine all the dependencies of an .m file and any of the dependencies of the files it calls using a command in a script (command-line)?
There was a question like this before and ...
2
votes
5answers
4k views
How to import org.apache Java dependancies
So the quick background is I am creating a java program, that uses many different imports
import org.apache.hadoop.conf.*;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.*;
...
2
votes
3answers
510 views
Graph visualization of existing .NET code
I've seen that VS 2010 Ultimate can generate model graph from existing code. But VS 2010 Ultimate version costs 11K US$, way too much for my budget. Is there any good alternative to do graph ...
2
votes
2answers
5k views
How to tell M2Eclipse to install jar file as a maven dependency
I want to add jpoller.jar as a maven dependency, so I edited my pom.xml file to include it:
<dependency>
<groupId>org.sadun</groupId>
...
2
votes
5answers
1k views
How do you document your database code to see dependencies between database objects?
I want to write documentation on my pet project.
I have 30 tables and almost 50 views and about 30 functions (stored procedures) in my PostgreSQL database.
I would like to see where tables ( which ...
1
vote
1answer
149 views
Search drive for excel dependencies [closed]
I am currently simplifying a file structure of a company. It is a total mess.
Currently I am doing the finance department, which has allot of dependencies between excel files. These files I cannot ...
1
vote
1answer
438 views
Does anyone have a Dependency graph and topological sorting code snippet for PowerShell?
We were trying to parallelize our build with dependency graph and topological sorting.
All our build logic is written in Msbuild and we are using powershell to call it.
Has any one implemented ...
1
vote
2answers
5k views
EJB 3.1 Dependency Injection Failed
i have created a stateless session bean like this :
@WebServlet(name = "ProductController", urlPatterns = {"/ProductController"})
public class ProductController extends HttpServlet {
@EJB
...
9
votes
4answers
1k views
How do I automatically perform unit tests on each build?
How do I automatically perform unit tests on each build?
I tried to add the Unit Tests target to the Project Target as a dependency, but that doesn't seem to run the actual tests.
9
votes
1answer
526 views
What is a good way to deploy a Perl application?
I posted this question looking for something similar to Buildout for Perl. I think Shipwright is what I'm looking for but I'm not really sure. I've played around with it and I created a project, ...
9
votes
3answers
4k views
How to make use of Grails Dependencies in your IDE
So I finally got my dependencies working with Grails. Now, how can my IDE, eg IntelliJ or Eclipse, take advantage of it? Or do I really have to manually manage what classes my IDE knows about at ...
8
votes
3answers
505 views
Best strategy for dealing with optional dependencies
I'm currently in the process of removing the Spring dependency from Flyway. In the future though other types of dependencies might be needed to support a subset of users (such as JBoss VFS support).
...
7
votes
2answers
564 views
How to import FromString for joda-time?
I try to use joda-time library for easier measuring the execution time of my program (not for profiling, just for the user).
But when I compile my project I get error about missing dependency -- the ...
7
votes
1answer
298 views
How to manage version dependencies in a C#/.NET Project?
Suppose you have Project A, and this has various dll dependencies, but the tree looks something like this:
Project A
=> Project B
=> Project C
=> Project D
=> ...
7
votes
3answers
3k views
How do I include a dependency's test jar into a Maven project's deployment?
I have two projects, foo and foo-web under the com.example group. foo-web depends on foo.
To be able to develop the UI part of the application without depending on external services, dummy DAOs were ...
7
votes
2answers
264 views
Can I nest subrepos in Mercurial?
I am having trouble setting up a project in Mercurial with subrepos.
Goal:
I want to set up the structure like so:
-- Build_Repo (this repo will be used to track dependencies)
-- Subrepo_A (this ...
6
votes
3answers
255 views
Finding out which functions are called within a given function [duplicate]
Possible Duplicate:
Generating a Call Graph in R
I'd like to systematically analyze a given function to find out which other functions are called within that very function. If possible, ...
5
votes
0answers
111 views
Android Library Dependencies broken after SDK/ADT-Update
Today, I updated my Android SDK and Eciple ADT to the most recent versions (ADT Rev 22). After restarting Eclipse it is quite unhappy with the Build Paths whenever I reference custom libraries.
An ...
5
votes
4answers
239 views
Dependency management in R
Does R have a dependency management tool to facilitate project-specific dependencies? I'm looking for something akin to Java's maven, Ruby's bundler, Python's virtualenv, Node's npm, etc.
I'm aware ...
5
votes
2answers
9k views
Howto list all dependencies of a Package on Linux?
Howto list all dependencies of a Package on Linux?
For example:
GNU Make Package
is there any command can list the package dependencies
I dont have any package manager therefore i cannot use ...
5
votes
2answers
178 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 ...
5
votes
1answer
676 views
How to get Visual Studios build system to understand unmanaged dependencies of managed dlls?
When building managed code Visual Studio correctly (and recursively) copies dlls of referenced managed projects to the output folder of the project being build.
However, if one the of those ...
5
votes
2answers
919 views
linux/gcc: ldd functionality from inside a C/C++ program
Is there a simple and efficient way to know that a given dynamically linked ELF is missing a required .so for it to run, all from the inside of a C/C++ program?
I need a program with somewhat similar ...
4
votes
2answers
3k views
Maven + SLF4J: Version conflict when using two different dependencies that require two different SLF4J versions
I have a project that use both dependencies independently: BoneCP and Hibernate. But thanks to SLF4J and its version conflicts it does not work because BoneCP requires SLF4J 1.5 and Hibernate requires ...
4
votes
3answers
844 views
Grails Project - Common Java Project Dependency in Eclipse
All,
We have standard java projects that contain our common data model, common util classes, etc...
What I canât seem to figure out is how, to make my Grails project (in Eclipse) have a dependency ...
4
votes
3answers
2k views
Maven multimodule project composition regarding dependencies sharing
There are a few similar questions, but nothing like this. How do you deal with this situation (typical scenario) :
A project of 8-11 child projects, having a parent artifact/project and one main ...
4
votes
2answers
244 views
How does one handle big library dependencies in source control?
My C++ application depends on Boost. I'd like someone to just be able to check out my repository and build the whole thing in one step. But the boost distribution is some 100MB and thousands of files, ...
4
votes
3answers
455 views
.Net Inheritance - Automatic dependency referencing behavior issue
I've come across a strange issue that I've just now noticed.
If you have a solution with 3 projects
** NOTE Edited after discussion **
Project LibA - Has a ClassA
namespace LibA
{
public class ...
4
votes
4answers
5k views
maven dependencies groovy
I'm running a project that has a dependency on groovy 1.7-beta-1. The gmaven plugin uses groovy version 1.6 as a dependency. In my pom, I specify in the dependency management section the grooyv-all ...
4
votes
5answers
2k views
Mixing different versions of Java libraries
My project uses Java libraries that have their own dependencies (Hadoop, Jetty for example). I end up with different versions of the same dependencies, like ant 1.4.5, 1.4.6. My project may want to ...
3
votes
2answers
678 views
Play framework and sbt: passing credentials to a nexus passowrd protected repo
I need to define as a dependency the following library:
url: http://deploy.cloud.testmx.com:8081/nexus/content/groups/public/
user: testmx
pass: testmx@testmx
groupId: testmx
artifactId: ...
3
votes
0answers
409 views
Module dependency not detected during compile in IntelliJ IDEA 11
I am developing an Android app and I'm trying to include GraphView to plot some graphs.
It is required to include it as a module dependency. After I do that, the IntelliJ IDE properly detects the ...
3
votes
2answers
1k views
Publish SNAPSHOT artifacts to Maven using IVY - what's the magic?
We have a slight convoluted situation...
For the most part we've been using IVY and ANT to manage our builds and dependencies. Now the company is moving towards using Maven. We have a set of projects ...
3
votes
5answers
122 views
Should I be concerned with large number of dependencies?
I was just about to include the HtmlUnit library in a project. I unpacked the zip-file and realised that it had no less than 12 dependencies.
I've always been concerned when it comes to introducing ...
3
votes
1answer
4k views
DLL references when using TFS 2010
I am new to using TFS 2010 and was wondering the best way to add references (.e.g. AjaxControlToolKit, etc) to projects that I have added to TFS source control.
Would having the references be pointed ...
3
votes
1answer
790 views
When does .net check for assembly dependencies?
While pursuing a spearate problem I've come to a very peculiar situation. A demo code would be:
public class Global : HttpApplication
{
protected void Application_Start(object sender, EventArgs ...
3
votes
2answers
3k views
Maven and db4o dependency
I'm intrigued to test new frameworks in the Java world, and decided to create a new project that takes advantage of Maven and db4o. I'm starting to get a hang of Maven, but I have a hard time adding ...
3
votes
1answer
1k views
Avoiding re-building prerequisites in Ant
I have an existing Ant project and would like to speed up the build process
by avoiding re-building components that are already up to date.
Ant permits you to specify that one target depends on ...
3
votes
1answer
3k views
How to create project dependencies in netbeans (c/c++ plugin)
As I work on a c++ application, I realize I am making a lot of classes and functions that could be used in other projects. So I'd like to put all this code in a separate net beans project that can be ...
2
votes
1answer
157 views
Play Framework 2.1 Remove a core dependency
since a few day now i'm trying to use Joda-time 1.6.2 on a play project. I know the play framework already come with the Joda-time 2.1 and it should be compatible with 1.6.2 according to joda-time ...
2
votes
3answers
134 views
library dependencies in maven. best practices
I'm writing testing library with my own junit runner. it extends BlockJUnit4ClassRunner which is available since 4.5 till... who knows. user of my library should be able to choose whatever junit ...
2
votes
2answers
2k views
dependencies without version
I am creating .ear using maven
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<version>2.6</version>
...
2
votes
2answers
2k views
NetBeans 7 dependency graph (unused class/method)
Is there a way to create a dependency graph for classes and/or methods of Java SE projects within NetBeans 7? I have a very large project and I'd like to clean up unused classes or methods (and a ...
2
votes
4answers
773 views
how to make one module depends on another module artifact in maven multi-modules
Hi
I have maven multiple-module project.
A: parent.
B: child1.
C: child2.
B will be packaged to get jar file and then c will use this jar file to compile the code.
in B, if i run mvn ...
2
votes
2answers
994 views
Build order and dependencies not preserved on upgrade from VS 2008 to 2010 with msbuild
I'm in the process of upgrading our VS 2008 solution to run on VS 2010
I managed to successfully build in VS 2010
My next step now is to configure a build machine running TFS 2008
Whenever I start ...
2
votes
4answers
1k views
Using native dependencies inside Maven
A POM dependency contains native libraries (DLLs inside a JAR file). How do I programmatically look up the path of the downloaded JAR file so I can pass it into "java.library.path"?
