Tagged Questions
48
votes
8answers
9k 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 ...
37
votes
8answers
16k 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 ...
7
votes
9answers
1k 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
5
votes
5answers
395 views
How to build/test Scala without IDE dependence?
I'm well into learning Scala now and enjoying it very much; I hope to start future projects in it, rather than Java. What I'm enjoying less is the (relatively) poor IDE support. I've found both IDEA ...
3
votes
2answers
828 views
How do I find out Apache Buildr/Maven 2 repo names
I'm just starting to use Apache Buildr and I'm constantly running into the problem of not knowing what repo urls and versions are available for me to use.
For example I want to use Scala 2.8 in a ...
3
votes
6answers
182 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 ...
3
votes
3answers
2k 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 << ...
1
vote
2answers
122 views
Parent build file in buildr
I am currently looking at migrating from maven2 to buildr and I am concerned about how get to keep the build scripts DRY.
Currently our maven project is defined with parent pom file containing all ...
1
vote
2answers
255 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 ...
0
votes
1answer
76 views
How to configure Apache Buildr to use the same directories as Maven?
By default, Buildr produces output in slightly different places than Maven's default. For example, it puts test classes in target/test/classes instead of target/test-classes, reports in reports/ ...
0
votes
1answer
1k views
importing maven dependencies into intellij's classpath
I am using Buildr with a java/scala project.
Dependencies are descried in the buildfile. An as you may know, Buildr downloads dependencies into ~.m2 folder (as maven2 does).
I am wondering how can I ...