Tagged Questions

2
votes
5answers
62 views

Build system that allows sharing modules amongst different binaries

I'm trying to choose the most appropriate build system to work in enterprise with a common source repository, emphasizing sharing of common code. I'd like the source hierarchy to look something like …
2
votes
1answer
62 views

How to add local dependencies in buildr

For a java/scala project I have some dependencies that are not in a remote repository, but somewhere else in my filesystem. I have then two options, which lead to questions: I can add a lib/ …
1
vote
9answers
378 views

What’s with all the Java Build tools?

what's the point of using ant, maven, and buildr? won't the using build in eclipse or netbeans work fine? i'm just curious as to what makes the build tools so special
6
votes
3answers
1k views

Buildr, Gradle or wait for Maven 3?

I am really tired of struggling with Maven 2 all the time. Build tools should not be in the way. Recently I have been looking at Buildr and Gradle. Maven 3 seems to fix some of the struggles. So, what …
0
votes
1answer
139 views

package java applet with minimal dependencies, autojar plugin for buildr?

I'd like to build a java applet with all its dependencies included, but still keeping the jar as small as possible. I'm using buildr. It looks like autojar is the tool I'm looking for. Now I need …
1
vote
2answers
489 views

buildr: package dependencies into a single jar

I have a java project that is built with buildr and that has some external dependencies: repositories.remote << "http://www.ibiblio.org/maven2" repositories.remote << …
0
votes
0answers
54 views

Buildr fails to download Ant in new project?

I'm interested in trying out Buildr for a new project. Unfortunately I ran into a weird error right away. I installed Buildr 1.3.4 on my Mac (OS X 10.5) using the build script provided on their …
1
vote
2answers
100 views

Why do my tests fail to run when migrating from maven2 to buildr?

I have a straightforward maven2 java project (JMS relaying system). After we released the first version, we found that we spent more time configuring maven than actually coding. For the next release …
10
votes
8answers
1k views

Why use Buildr instead of Ant or Maven?

http://buildr.apache.org/ http://ant.apache.org/ http://maven.apache.org/ What does another build tool targeted at Java really get me? Is it so hard to write a plugin using Java versus writing it …