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 ...
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
3
votes
2answers
121 views

how to alias a task in buildr

I might be doing something wrong, cuz I'm using buildr for not so long, so all comments are welcome. My project structure is: define :proj do define :web do task :run do # ...
3
votes
1answer
205 views

buildr create a jar that include libs and other project

I have 2 Java projects (eg p1 and p2) and I want to create jar (using buildr) that contains both projects and their libs. p2 depends on p1. compile.with(projects('p1'), ...
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
2answers
406 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/ ...
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 << ...
2
votes
1answer
167 views

passing classpath to custom tasks in java/scala based project within buildr

I am using buildr to build my scala project and suppose I want to run a main program among the source code, I need to define custom task within buildr which is very easy. However, how can I pass the ...
1
vote
1answer
46 views

How to run java application built with buildr and using dependencies?

I have successfully created a buildfile which builds my application. There is a dependency, which is automatically downloaded to ~/.m2/repository/ and provided at compile time. I can now easily build ...
1
vote
2answers
96 views

Where do I put my Buildr Integration tests?

I have a Java application that uses buildr. My unit test are located in : src/test/java The buildr doco talks about support for integration tests but where do I put my integration tests? how to I ...
1
vote
1answer
120 views

How to conditionally include one of two files in a .war package with Buildr?

We're using Buildr to package an application as a .war file. To streamline the automated deployment process further, I'd like to conditionally select one of these two files (from the directory ...
1
vote
1answer
155 views

Store all dependent jar files in directory

I use buildr for my build process. My project setup: Project A -> Project B Project A requires ant.jar So, I want to create an output looking the following: target/a.jar target/lib/b.jar ...
1
vote
2answers
422 views

Apache Buildr issue with ant task / Hash.from_java_properties

I have a buildr script that first loads a java properties file, then creates an ant task. I'm getting an abort error: Buildr aborted! org/apache/tools/ant/DefaultLogger when running buildr. Here's ...
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
91 views

How to explode a war file in buildr

I'm new to buildr, so I might be missing something obvious. According to this page, it should be fairly simple: Download explode.rb At the top of your buildfile, add the following: ...
0
votes
1answer
141 views

is it possible to have eclipse compile its classes in another directory than buildr's?

I'm using buildr 1.4.4 with eclipse. I do generate my eclipse files with buildr eclipse and it works fine. But it seems to me that .class files are completely different when eclipse compiles and ...
0
votes
1answer
45 views

How to use JOGL 1.x as a dependency with buildr?

How can I declare JOGL 1.x as a dependency of my Java project when using Buildr?
0
votes
2answers
78 views

Copying files during compilation process

I use builder for my buildprocess. I have some java classes in my src directory as well as some *.qvto files. These files just need to be copied to target/classes. However, this should be done as ...
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 ...
0
votes
1answer
633 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 ...