The management of dependencies, for example third party libraries, that are used by a software project.
0
votes
0answers
34 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
35 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
76 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
93 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
26 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
111 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
143 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
84 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
141 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
219 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
105 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
81 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
126 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
112 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
50 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 ...
1
vote
2answers
149 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
38 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
80 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
80 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
65 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 ...
0
votes
2answers
103 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
82 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
31 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
421 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
66 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
100 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
71 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
79 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 ...
0
votes
1answer
182 views
Gradle: Error listing versions of junit#junit;4.+
I am getting the below error when running gradle build on my gradle.properties file.
I know I am behind a firewall and I have a poxy I can use. I've tried adding the below to my gradle.properties ...
0
votes
1answer
157 views
Grails Plugin project - can't find groovy jar when I'm offline
I'm using GGTS 3.1, Grails 2.1.1 and Groovy 1.8.6
I created a new workspace, and created a new Grails Plugin project.
All was fine until yesterday when I was travelling and I did a ...
2
votes
2answers
80 views
Maven 2 - define dependency version from transitive dependency version
I'll explain the question with my real situation.
I use logback 1.0.1 for logging, and it includes SLF4J 1.6.4 as a dependency. I also use the SLF4J API bridges for legacy logging API's ...
2
votes
1answer
70 views
Advanced auto-dependencies in make
I have been reading make manual section 4.14 "Generating Prerequisites Automatically" and "Advanced Auto-Dependencies" from this web page.
I think I understand the section from the make manual but ...
3
votes
1answer
570 views
unresolved dependency for postgresql 9.2 jar in play framework
I am using postgresql 9.2 with play framework 2.1
I downloaded the driver here: http://jdbc.postgresql.org/download.html (JDBC4 Postgresql Driver, Version 9.2-1002)
My project/Build.scala file is ...
0
votes
1answer
383 views
How do I configure library plugins with Require.js?
I have a jQuery / Require.js / Backbone project that loads the jQuery Datatables library along with several of its plugins. The configuration below works fine, but it just seems kinda gross.
Is ...
0
votes
0answers
90 views
Synchronously load a dependency in node.js
I'm loading a node library in script and immediately after loading some customization that depends on that library:
var somelib = require('somelib');
// some customizations made to
// somelib's ...
0
votes
1answer
71 views
Custom Dart repositories?
Pub is a great tool for managing dependencies of Dart projects. I wonder if there's any tool available which allows us to create in-house repositories and setup mirrors for public dependencies ...
2
votes
1answer
52 views
Gradle get dependency definitions from another build file
In gradle is it possible to get dependencies for a build from another build file ?
Example, Imagine project-1 has project1/build.gradle, How do I get the dependencies of the same in project-2 from ...
0
votes
2answers
27 views
Repeating a dependency used transitively?
I have a project X that depends on project Y and Z
Project Y also depends on project Z
If I specify only that X depends on Y in my pom.xml, then everything still works because dependency Z is ...
3
votes
1answer
200 views
How to do dependency management in Visual Studio/MSBuild
There have been many posts on this topic, but I have yet to find the "real" solution.
How does one manage their dependency tree (both compile time and runtime) using MSBuild project files (i.e. ...
0
votes
2answers
198 views
How to resolve dependencies between modules within multi-module project?
After working with Maven for a while, I am thrilled by the many features that Maven brings into the build architecture, particularly the dependency management. However, I have run into one issue again ...
0
votes
0answers
49 views
Convert a mavenized project to a Grails project
I am actually working on a grails project using STS. While working, I had some issues with my .classpath and .project and had to reimport the project in STS in another worspace.
When importing the ...
3
votes
0answers
95 views
Awkward guiceyfruit transitive dependency on an older version of guice
I'm writing a small Camel-based JMS app using guice 3.0 to wire everything up. The CamelModule unfortunately relies on guiceyfruit, the current version of which has a transitive dependency on guice ...
2
votes
1answer
96 views
Gradle: Overriding Dependency with Different Name
I am trying to import org.scalatra:scalatra-atmosphere:2.2.0-RC3 into a Scala 2.10 project. The issue is that this package depends on the two non-Scala-versioned packages ...
1
vote
0answers
50 views
Runtime dependencies for GAE web app
After downloading the GAE SDK (1.7.1) I have a massive amount of JARs under my ${GAE_HOME}/lib/ directory:
I am in the process of setting up a build for my GAE web app on my local machine but also ...
3
votes
1answer
55 views
How to make Maven warn about an arbitrary version choice?
In a Maven project we used a third-party artifact (specifically, spring-data-jpa 1.1.0.RELEASE) which depends on another artifact (spring-core) allowing any version in a range (to be precise: ...
1
vote
2answers
100 views
Maven chooses inconsistent version of indirect dependency: why, and how to prevent?
We encountered a situation where Maven chose an inconsistent version of an indirect dependency, and I'd like to understand why, and how to prevent this in the future.
Our pom.xml file had the ...
3
votes
1answer
89 views
What are node.js and the AMD API used for? [closed]
I have some experience with JavaScript but none whatsoever with JavaScript project management and tooling. I'm looking at using node and AMD but am not exactly sure what they are used for and am ...
0
votes
1answer
87 views
How to give a JavaScript module conditional AMD support?
I'm building a module that I want to make available both for people that use AMD and for ones that don't. For example, I want to make it work with RequireJS:
require(['Module'], function (Module) {
...
3
votes
3answers
69 views
Working with codependent entities in EF C#
I have to Entities A and B.
A has fields:
id (PK) and b_fk (FK to B's id).
B has similar fields:
id (PK) and a_fk (FK to A's id).
Now I want to create object A and B:
createAAndBMethod(Entities ...
0
votes
2answers
51 views
Dynamically find which file is including the current file in Ruby
Context
I am auto-requiring all files in a directory structure via
# base.rb
dir = File.dirname(__FILE__)
path = File.join(dir, '**', '*.rb')
Dir[path].each { |file| require File.expand_path(file, ...



