Tagged Questions
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 ...
5
votes
3answers
72 views
Checking that all libs and dlls are from the same build?
I am developing a program in VS C++ 2008.
Right now, I have a huge list of dll and lib dependencies and I am adding some more. I worry that when I need to update a dependency by building from source ...
4
votes
3answers
126 views
PowerShell dependency management
Scenario
My PowerShell folder contains a library of utility scripts. I have it shared and version controlled with GitHub between my work and home computers. At work I now have a number of projects ...
4
votes
2answers
78 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 ...
3
votes
2answers
414 views
Sort maven dependencies in Eclipse
Just wanted to know if it is possible in Eclipse to sort Maven dependencies by alphabetical order?
It's bothering me to have a list of 200 jars not ordered... :(
3
votes
4answers
362 views
Two objects with dependencies for each other. Is that bad?
I am learning a lot about design patterns when I am building my own system for my projects. And I want to ask you about a design question that I can't find an answer to.
Currently I am building a ...
3
votes
4answers
2k 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 ...
2
votes
2answers
167 views
ruby: how to require correctly (to avoid circular dependencies)
today i was facing a strange problem:
got a 'missing method' error on a module, but the method was there and the file where the module was defined was required. After some searching i found a circular ...
2
votes
1answer
82 views
Finding all build configurations depending on a parent configuration in TeamCity?
In the days following the (still unanswered) question what the preferred way for a big continuous integrations setup in TeamCity might be we have been setting up a lot of snapshot dependencies.
Now, ...
2
votes
2answers
225 views
python dependency + deployment tool?
Does anybody know of a tool to handle module dependencies + deployment in Python?
Details:
By handle, I mean:
list,
keep track of and
bundle up a zip/installable file for me.
Make it ...
2
votes
1answer
102 views
How do I place my open source artifacts into a maven repository?
I have recently published a first stable release for my open source library http://jooq.sourceforge.net. On popular demand, I would like to place my artifacts into a maven repository, but I don't know ...
2
votes
2answers
417 views
Maven missing transitive dependency
I have a maven project with a dependency (datanucleus-db4o). This dependency has itself a dependency on db4o (db4o:db4o:jar:7.12.126.14142-all-java5).
Now maven says:
09.09.10 19:43:09 MESZ: ...
2
votes
1answer
504 views
Ivy custom url resolver
I am trying to create custom resolver in my ivysettings.xml file:
<ivysettings>
<settings defaultResolver="default"/>
<resolvers>
<chain name="default">
...
2
votes
3answers
274 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
1answer
349 views
Maven2 sharing dependencies across parent and children (without redeclaring dependencies in children)
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 ...
2
votes
2answers
268 views
Declarative dependency handling for multi-module source projects in version-control
We have a number of products that consist of a large number of modules, some of which are shared between some of the products. They are spread out over a few version control repositories.
Products ...
1
vote
2answers
295 views
How to deal with Linux/Python dependencies?
Due to lack of support for some libraries I want to use, I moved some Python development from Windows to Linux development. I've spent most of the day messing about getting nowhere with dependencies.
...
1
vote
1answer
76 views
How do you track web service consumer dependencies in a SOA?
This question is in the context of service versionning. How do you track the services and their versions that a consumer is calling? What tools are there to help?
I believe that authorization ...
1
vote
1answer
106 views
Can I specify dependency directories when dynamically loading assemblies?
I'm wondering if a setup like this is possible:
c:\eflow\proxy.dll (main DLL loaded by application)
c:\eflow\application\dynamic.dll (DLL dynamically loaded by proxy.dll)
c:\eflow\dependency.dll ...
1
vote
2answers
527 views
Do you know the maven profile for mvnrepository.com?
I am trying to include some dependencies in my maven project. These dependencies are not available in the default Mven 2 repository http://repo1.maven.org/maven2/.
They are available at ...
1
vote
1answer
63 views
Manging project agnostic code libraries without creating dependencies
I'm curious to know how fellow developers manage project agnostic code/libraries?
For example, given these two functions:
function array_exclude_keys(Array $array, Array $keys){
foreach($keys as ...
1
vote
1answer
269 views
Maven - System Jar provoded by Websphere Library
I have two questions regarding dependencies:
Q1: I have a j2ee.jar on my unix box (provided by Websphere Library). This is how I refer it in ANT:
<path id="was.lib">
<fileset ...
1
vote
1answer
33 views
Are there any libraries w/ public API that model versioned SoftwareComponents w/ dependencies on other Versioned components
Firstly let me say yes i know about Ivy and Maven and that internally they have and do model dependencies w. names and version numbers. Internally they have APIs that allow the querying to find all ...
1
vote
3answers
218 views
Maven: How to remove dependencies if they are already transitive?
For example, if there are dependencies:
a -> b
a -> c
b -> c
I want to remove the dependency a -> c, because there is a -> b -> c.
I know there may be some strong dependencies ...
1
vote
2answers
361 views
What's the best way to define dependencies between multiple ant build files?
I have a bunch of modules which I'd like to all have their own ant build files. However, modules have dependencies on other modules. What's the best way to define dependencies between build files?
...
0
votes
1answer
47 views
Maven Dependency Convergence
The site generated for a multi-module Maven project contains a "Dependency Convergence" section, which is useful for detecting dependency conflicts.
In the site report for a simple (i.e. jar package) ...
0
votes
0answers
48 views
Generating a dependency diagram using AnalysisTool and DependencyAnalyzer
I'm trying to get a Dependency Diagram of the code for my iPhone app. The project is currently using Xcode 4.2.1. I'm running AnalysisTool and looking to display the resulting .xml file with ...
0
votes
1answer
15 views
How to document a complex set of interdependent controls for a web app?
I've got a web app reporting interface with a dozen controls with multiple interdependencies, such as:
if more than one campaign or "All" is selected for campaigns then Campaign should be in the ...
0
votes
1answer
43 views
java_import already initialized constant
I just started using JRuby and I create a small test file:
require 'java'
java_import java.io.File
f = File.new ARGV[0]
When I run the program like so: jruby test.rb file.txt
I get the following ...
0
votes
5answers
179 views
maven fails to resolve dependency
I have multi module maven project.When I try to build site, e.g. execute maven site on parent project it fails to resolve dependency to one of modules.
But if I just compile (mvn clean compile on ...
0
votes
1answer
154 views
How to create a maven assembly with transitive dependencies for different deployment scenarios?
I'm having a problem reconciling building a project for use within an application server and for use as a stand-alone application.
To give an overall simplified context, say I have three Projects A, ...
0
votes
0answers
61 views
Business object model to track links between objects - Business Impact Analysis
can anyone perhaps indicate some software that I can use that will visually display links between applications - databases etc. I have the data in a SQL repository, but business wants this nice GUI ...
0
votes
1answer
144 views
Dependency management by external tools versus IDE sugar
I'm using Intellij IDEA IDE. Instead of using it's internal build and dependency management tools I prefer external tools (ant+ivy if it matters). I want IDEA be able somehow catch on the flylibraries ...
0
votes
1answer
89 views
Different compile-time and runtime dependencies
Why it is common practice to keep compile-time dependencies and runtime dependencies different? Why not to use same dependencies all the time? Even if you don't need some libraries when you compile ...
0
votes
2answers
446 views
Creating a directed acyclic graph out of recursive nmake makefile?
As an exercise and in an effort to (better understand|help other people better understand) the build process at my company, I am hoping to create a directed acyclic graph of the build process.
The ...