1
vote
1answer
41 views

How do I configure the SVN HTTP proxy from the command line?

I script the set up of my build environment. (So the build process can bootstrap itself if it finds itself running on a clean image). As part of this process, certain dependencies are retrieved from ...
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), ...
3
votes
1answer
94 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
0answers
91 views

Ivy conflict resolution not working

My module A depends on modules B and C, which both depend on different versions of module D. My Ivy dependencies look like this: <ivy-module> <info organisation="com.a" module="A"/> ...
1
vote
2answers
308 views

Java Gradle: How to include external jars using java-plugin jar task?

apply plugin: 'java' archivesBaseName = 'foo-client' sourceCompatibility = JavaVersion.VERSION_1_7 targetCompatibility = JavaVersion.VERSION_1_7 //version = '1.0' dependencies{ compile ...
2
votes
4answers
509 views

How do I manage dependencies for automated builds on my build server?

I'm trying to implement continuous integration into our day to day workings. In our team, we're moving from just building our code in Visual Studio on our workstations and deploying, to using ...
1
vote
3answers
187 views

Managing project dependencies in Eclipse

I see a number of posts on this, but I'm still struggling. I've got a workspace with two projects, one with the robotium library and one using it(we'll call this one foo). I would like to click run ...
0
votes
2answers
454 views

How to specify properties on groups of dependencies in Gradle?

Using Gradle, I'd like to be able to disable transitivity on one group of dependencies, while still allowing on others. Something like this: // transitivity enabled compile( [group: 'log4j', name: ...
5
votes
2answers
351 views

Ivy - output the results of a resolve to an ivy file

Having resolved my ivy.xml file, I'd like to create a new resolved-ivy.xml file consisting of all of the transitive dependencies found in the resolve. Is it possible to do this? This is different to ...
0
votes
0answers
78 views

Maven practice - shared source: install artifact locally, or create shared source sibling project?

I've got 3 modules (A, B, C) and a parent (P) with several inter-related dependencies. Note that none of these projects package as JARs by default. A needs to package B and C and thus has a ...
0
votes
2answers
105 views

Is there a quick way to convert Eclipse “libraries” to Maven POM entries?

I've got an eclipse project with several "libraries", each containing a significant number (35-40) of individual jar files. For instance, a JBoss "library" will generally have several hundred .jar ...
9
votes
2answers
965 views

How to use leiningen to develop using local jars?

I realize that this question is pretty much the exact question found here. However, seeing as that question is 1.5 years old (or so), I would like to revisit it. How does one add local dependencies ...
4
votes
1answer
1k views

Build and dependency tools for objective-c such as ant+ivy / maven?

I'm looking for a good build and dependency tool for objective-c such as ant for build and ivy for dependencies. I'm aware there are a few maven plugins for xcode : ...
2
votes
1answer
247 views

What should a dependency management framework do?

I started to write an open-source, free dependency management framework for .NET/C++. Asking the question here I'm trying not to create yet another one no one needs. This desperate evening hobby of ...
9
votes
3answers
3k views

Gradle Test Dependency

I have two projects, project A and Project B. Both are written in groovy and use gradle as their build system. Project A requires project B. This holds for both the compile and test code. How can ...
8
votes
1answer
555 views

Is there any Maven like tool that works for many languages?

I'm trying to find a tool like Maven (standardized build & packaging, artifact repo, etc) that supports more than Java (and C/C++), specifically Python and .NET (C#) as well. Especially good ...
6
votes
4answers
1k views

How can I best share Ant targets between projects?

Is there a well-established way to share Ant targets between projects? I have a solution currently, but it's a bit inelegant. Here's what I'm doing so far. I've got a file called ivy-tasks.xml hosted ...
11
votes
5answers
5k views

Maven-like dependency management for C++?

Say I have a C++ project that is split in several subprojects. The subproject all produce a DLL and different teams of developers work on each of the subproject. Now if I want to build the main ...