The management of dependencies, for example third party libraries, that are used by a software project.
2
votes
2answers
80 views
How to distribute an open-source jar with dependencies?
I'de like to distribute a Java package that I've written under some permissive license.
The resulting speedytools-0.1.jar has some common Java dependencies like Apache Commons and Guava.
What is ...
0
votes
1answer
108 views
Gradle dependency resolution
I have an issue with how gradle resolves my dependencies.
I have four repositories that I need to investigate for different jars, five counting Maven central. Thus my repo statment in gradle.build ...
1
vote
1answer
32 views
Gradle Plugin resolve artifact
Is it possible for a Gradle plugin to resolve an artifact on its own? I know that in Maven, plugins can inject the Aether RepositorySystem and use that to download artifacts (That's how the Appengine ...
2
votes
1answer
131 views
How do Bower and NPM couple together?
So to preface my question, I'm coming from a Java back-end developer perspective, where we use Maven to build. I have worked on testing on a server-side Node project we recently developed, but now ...
5
votes
2answers
216 views
Solving Maven dependency convergence issues
I use the maven-enforcer-plugin to check for dependency convergence issues. A typical output would be:
[WARNING] Rule 1: org.apache.maven.plugins.enforcer.DependencyConvergence failed
with ...
2
votes
2answers
60 views
Using Gradle Prevent 3rd Party Library from being on Compile Classpath
I have a multi-project Gradle build. I have Sub-Project-A that depends on Sub-Project-B. Sub-Project-B has a compile time dependency on SLF4J. I do not want Sub-Project-A to be able to compile against ...
1
vote
1answer
54 views
R & Makefile: how to inherit dependencies?
I use a Makefile to byte-compile my R files (mostly to detect potential problems with the code). When compiling a file, I load its library requirements and loadcmp its local dependencies:
R = R ...
1
vote
1answer
39 views
ivy: resolve only compatible release with version range
I have a common component that is under constant development. many projects depend on this component. Right now, i use rev="latest.release" for the dependency. But that might break the build, consider ...
1
vote
1answer
38 views
JavaScript dependency management for WordPress?
I am going to write a small charting library (with chart types such as bar, pie, line etc.) to be used in a WordPress context.
The library might depend on external libs such as D3.js, underscore.js ...
0
votes
1answer
29 views
Finding dependecies between modules of a legacy ANT project for migration to IVY
I am dealing with a project using using ANT to build the source code into a EAR. The project over couple of years has grown to a mammoth size, more than fifty modules, and not surprisingly it takes 2 ...
0
votes
1answer
28 views
In Maven is there a way to say, “Bring in B instead of A”?
I have a project that has N dependencies that all have a dependency on some library A (say commons-logging) and I want to use some other library B (say jcl-over-slf4j, which is billed as a replacement ...
0
votes
1answer
40 views
Java webapp code moved to library cannot resolve HttpServletRequest
I recently moved a bunch of classes from a webapp to some standalone library.
Eclipse complained that HttpServletRequest was not resolved, so I added Web App Library to my Java Build Path/Libraries ...
1
vote
0answers
78 views
Dependency Management issue in Intellij idea 12.0.4
I am facing problem with dependency management.
I am using Intellij12.04.
Under a project i have two modules a.b.c.somebusiness and a.b.c.tests. The module a.b.c.tests is dependent on ...
1
vote
1answer
63 views
Using absolute paths for build dependencies
Currently we use Source Safe and start migration to Subversion.
All external SDK(> 500 MB) hold in Source Safe now, and I look for way to move them from VSS
to some repository.
We have C++ (mostly), ...
0
votes
2answers
91 views
Open source code sharing and dependency management Java for the rest of us [closed]
I am new to Java and I come from Ruby and I have a question about how can we easily share code we develop so anyone can use them. So far I have been using Maven to resolve dependencies but all of them ...
3
votes
1answer
69 views
Clojure module dependencies
I'm trying to create a modular application in clojure.
Lets suppose that we have a blog engine, which consists of two modules, for example - database module, and article module (something that stores ...
3
votes
1answer
83 views
javascripts function dependency graph?
Is there a program/tool that can generate function dependency graph for javascripts? Basically, the input should be a folder of javascript files, then the output is a nice graph that show all the ...
0
votes
0answers
20 views
Assembly dependencies and versioning numbers
Can somebody confirm that I understood some .NET dependency issues correctly?
I have written a small library L that uses json.net. Library L is referenced (as a dll) in my project P. Since I can't ...
1
vote
2answers
23 views
Inject local formulae into brew
I've got a project with complicated dependencies, and I'd like to make it easier for other developers to grab them. I've got a Capfile, Gemfile, Guardfile, Procfile, and Rakefile, so I thought... why ...
0
votes
0answers
69 views
View dependency/composition visualization in ruby on rails
I was working on a big web project with multiple pages where we would reuse certain subviews in different situations. We created a custom tool that parsed source comments and created a freemind mind ...
0
votes
1answer
76 views
Should i still use Nexus Repository Manager even if I am the only developer in my network?
I recently wanted to integrate Nexus to my home-based Java Project, just to learn what it is good for. As i read from the posts here, and from the nexus Website, its main usage aim is:
Maven Central ...
1
vote
2answers
117 views
Python package dependency tree
I would like to analyze the dependency tree of Python packages. How can I obtain this data?
Things I already know
setup.py sometimes contains a requires field that lists package dependencies
PyPi ...
0
votes
0answers
41 views
Xuggler: add only arch‑i686‑w64‑mingw32 jar
I'm using Xuggler 5.4 in my applet, including it into the project with Maven (it has too many dependences to be included directly with .jar file). Here is a part from my pom.xml.
<repositories>
...
0
votes
1answer
39 views
How does composer deal with shared dependencies by multiple packages within one project?
As the questions states, if Project A requires x,y & z packages which they all in turn require d1, d2, d3, d4 & d5 packages. Does Composer download d1, d2, d3, d4 & d5 three times for x,y ...
6
votes
3answers
84 views
Maven Multi Module benefits over simple dependency
I have some years of experience with maven projects, even with multi modules ones (which has made me hate the multi modules feature of maven (so the disclaimer is now done)) and even if I really like ...
0
votes
2answers
108 views
Force locally installed module to use locally installed dependencies
I'm working on a project that requires all third-party (read: CPAN) perl modules to be installed in a perforce repository, so that any code that depends on them can be successfully run without anyone ...
1
vote
0answers
27 views
Proper way to handle optional package dependencies
In a package I'm developing, several different methods of estimating are provided. Typically, each of these depends on functionality provided by other packages (in some case, with version ...
3
votes
2answers
132 views
Is there a convention for project-local NuGet Repositories?
I've nearly finished migrating a large solution to use NuGet for dependencies. Prior to this, the project simply had a Lib directory with all binary dependencies in sub-directories within it. There ...
5
votes
1answer
149 views
Is it possible to show in the project view of Netbeans whether a class is public or package-private?
My team would like to be able to clearly see which classes in a package are public. Unfortunately there seems to be no visual indication of this in the Netbeans project view. Is there any way of ...
0
votes
0answers
90 views
require.js define dependency only if existant
How can I define a dependency only if it exists? I want to use the object 'myObject' only if it already exists/has been created.
define(['dependencyOne', 'dependencyTwo', 'myObject'], ...
-1
votes
1answer
150 views
why do we need complexity in dependency management
I am not sure if the title of the question is correct, but please read the question.
I have been working on C/C++ for most part of my work life (close to 11 years). we only had C/C++ source/header ...
0
votes
2answers
260 views
Eclipse (STS) MVC 3.0.5 + Tiles 2.2.2 project dependency management issue
For some reason I cannot use maven or gradle dependecy management. I am trying to use Tiles with Spring MVC, I get the following Exception on tcserver startup:
java.lang.NoClassDefFoundError: ...
3
votes
2answers
161 views
dependencyManagement and scope
I usually put a <dependencyManagement> section in parent-project/pom.xml. This <dependencyManagement> section contains declaration and version for all dependencies of my children modules ...
0
votes
1answer
101 views
Large project with Composer dependencies is constantly needing json file modification
I have an issue/workflow in a large project with quite a number of composer packages where every so often my json file needs to be updated with a new version for a package or composer will not update. ...
0
votes
1answer
139 views
Eclipse ADT 21 not including dependent project in android application
I have an Android app that depends on a non-Android-specific pure java lib defined as an eclipse project. I have added it as a dependency using the Build Path/Projects tab, and checked it on Build ...
3
votes
2answers
139 views
Gradle Single vs Double Quotes
I'm new to gradle and am currently just trying to follow the tutorials and quite a few times I've seen single and double quotes intermixed. I just wanted to know if there was a difference of when one ...
0
votes
1answer
52 views
How to get resource file from dependent artifact
I want to get the resource file from dependency and put it to my classpath or another directory. I tried maven-dependency-plugin but it seems I've not configured it properly. Does anyone know how to ...
2
votes
2answers
188 views
Scalatest and scalamock - dependency trouble involving SuiteMixin
I'm trying to setup my project to use scalatest and scalamock.
I'm using scala version 2.10.0.
However, I cant seem to get the dependencies right.
I've started with this code:
class ...
0
votes
0answers
44 views
Defining deployment dependency b/w EAR and ordering
I am using jbossAS 5.1 and I have 2 EAR's to be deployed, in which EAR2 uses ejbs exposed by EAR1 but they are not tightly coupled as EAR2 is made to work without the EAR1 by handling EJB service ...
1
vote
2answers
101 views
RAD project reference/class not found
I have three projects, let's call them A, B, and C in RAD (Eclipse). A is a simple java project with supporting code that both B and C will consume. B and C are both webapps that will run on ...
0
votes
1answer
94 views
How can I attach the jar produced by one maven module to another module with a classifier?
I have a project for which I've done some refactoring (and module names clarifications).
As a consequence, the module that was neo4j-connector-impl has now become neo4j-connector-1.6. Now, for better ...
0
votes
2answers
69 views
Maven integration with IDEs
I thought I understood Maven as I've worked on a few projects using it, but I seem to be having trouble creating my own project with it, so can someone correct me wherever I may be wrong?
Assuming I ...
1
vote
2answers
125 views
How can I exclude plugins jar required at build time?
I have Grails plugin that do some job (precompiles static files) at build time (before war is built). To do its job some jar dependencies are required. So this dependencies are required only at build ...
5
votes
2answers
83 views
Dependency Isolation and Declaration in PHP
What's the best way to achieve complete dependency declaration and isolation in a PHP web app? I already know about Composer, but that's only the declaration part and I don't think it goes far enough. ...
0
votes
0answers
32 views
View file dependency in eclipse for PHP Project
Is it possible to view PHP project file dependency on eclipse?
The dependency come from include, class inheritance, js source, etc.
0
votes
2answers
488 views
Setup Zendframework 2 and twitter bootstrap using Composer
I am currently using composer dependency manager for zendframework 2 along with twitter bootstrap , I able to successfully manage zendframework 2 but I am not able manage twitter bootstrap via ...
0
votes
1answer
78 views
AIX apache rpm dependencies
I am evaluating the Crowd SSO by Atlassian. Now to get apache to use Crowd for authentication, there is a connector available by the vendor.
Problem
Unfortunately they do not provide anything for ...
0
votes
2answers
110 views
How to specify which Ivy resolver to use
My understanding is that <ivy:resolve/> copies dependencies from the configured repo into the local Ivy cache (rooted under ${USER_HOME}/.ivy2). But after looking at the task's docs, I was ...
0
votes
2answers
93 views
Add all jars in a repository as dependencies in IntelliJ
I have a savant repository in my project and I want to add all of the jars contained within the repo to IntelliJ's depenedcies list. I can add the jars one at a time, but I want to be able to add them ...
2
votes
1answer
93 views
How to avoid resource collisions in library jars?
I'm worried about the situation when libraries Foo and Bar each expose a resource on the classpath with the same name, say properties.txt in this example.
Assuming a Maven set up and the jars are ...




