Tagged Questions

A build tool for Java, Scala, Groovy, and other JVM-based projects.

learn more… | top users | synonyms

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 ...
9
votes
3answers
544 views

Buildr vs Gradle, pros and cons?

Have somebody use both Buildr and Gradle and can make comparison of this build tools. From first look they are very similar. But what to choose. And also it is good to hear about Scala support and ...
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
6
votes
3answers
735 views

Compile Scala 2.8.x code with Apache Buildr

I have been struggling to get Buildr to compile my Scala 2.8 project and I was hoping someone might have figured this out already. Currently I have the standard HelloWorld application with a ...
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 ...
4
votes
2answers
160 views

Using ruby code in a buildr project

I've used Ruby, JRuby, Java, and Clojure in quite a few separate projects. I'm currently working on a simulation app in my standard Ruby that I wanted to try to do with a Clojure backend (I do enjoy ...
4
votes
3answers
1k views

Uninstall old ruby gem's versions

I have several versions of a ruby gem called rjb, the ruby-java bridge used by buildr : $ gem list rjb (1.3.4, 1.3.3, 1.2.5, 1.1.9) How to remove some of this versions ?
4
votes
4answers
265 views

Package method having no effect in Buildr

I'm trying to package a scala project into a jar and write properties to the Manifest using Buildrs package() method. The package seems to have no affect on the Manifest. Here's the build file: ...
3
votes
2answers
284 views

Help Evaluating Build Tools

I'm already familiar with and use Ant & Maven, at this point I'd like to branch out to another tool and I'm deciding between 'Buildr' and 'Gradle'. I'd appreciate insight/feedback from those that ...
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
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
2answers
270 views

Choosing a scripting/build tool

We are currently working on a project with both actionscript and Java. Up to now, we were using Ant as our main build tool, but the dumb amount of duplication it implies and the lack of flexibility ...
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
180 views

why Buildr fails?

I've got this in my pom.xml: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
2
votes
1answer
70 views

Enhancing the Buildr release process

I'd like to tie a custom task into the default buildr release cycle. I'd like to run this code after the project has been compiled, packaged, tagged and deployed but before it increments the version ...
2
votes
1answer
49 views

How to Jar and Zip Project?

How can I package a jar file (packaged via buildr) and script files into a zip file? The jar file is created as per the buildfile: define "myapp" do ... package(:jar) ... end I tried Zip Task, but ...
2
votes
1answer
242 views

Buildr doesn't find JAVA_HOME from Intellij

I have Buildr installed on Ubuntu and it works fine running from command line. I've also installed the Buildr plugin for Intellij IDEA. But I can't run commands such as compile from the IDE. It gives ...
2
votes
2answers
171 views

Buildr ruby error, can't convert Rake::FileTask into String

I have the following buildr buildfile segment: require "buildr/protobuf" .... define "protobuf-stuff" do pbs = protoc( Dir[_("pbsrc/some/pkg/*.proto")], { :include => ...
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
67 views

buildr antwrap OutOfMemoryError PermGen space

# I am using Buildr as my build tool. Part of my build process generates Java source from a WSDL using JAX-WS. I have an ANT build script that does this with the wsimport ant task. Using the AntWrap ...
1
vote
1answer
47 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
107 views

Using generated sources in a buildr project

I'm trying to use a code generator inside a buildr-based java project. I would like to... call the generator compile the generated classes, package them eclipse to see the generated stuff (i.e. have ...
1
vote
1answer
85 views

Buildr - Filter web.xml in packaging war

Is it possible to filter the web.xml file when packaging a war using Buildr? Buildr documentation: Without much prompting, package :war picks the contents of the src/main/webapp directory and ...
1
vote
2answers
190 views

Unable to run buildr on windows

I have Windows XP installed and I am trying to run buildr on it, I have never used Ruby before. I followed instructions on the buildr website, i.e.: Installed Ruby 1.8.6 for windows using Ruby ...
1
vote
3answers
78 views

How to Locate Target Directory

Does buildr have pre-defined variables, like capistrano, for directories like 'target', 'reports', etc? If not, rather than hard-coding the location of these directories, how else can we ...
1
vote
1answer
53 views

Why is grep Failing to Find Matches on my Groovy Dependencies?

Does anyone know why the following code returns an empty array? Thanks. groovyc_deps = Buildr::Groovy::Groovyc.dependencies groovy_jar = groovyc_deps.grep /.*groovy.*\.jar/ p groovy_jar # => []
1
vote
2answers
137 views

Purpose of Underscore method in Buildr

Can anyone explain the purpose of the "_" (underscore) in the following code? Thanks. package(:zip).include _('target/docs/*')
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
2answers
439 views

Ruby on Windows7 - could not find gem

I'm setting up a ruby Apache Buildr on a fresh Windows 7 machine. I've installed Ruby, the DevKit and installed buildr via gem install buildr wich all ran perfect. Until I tried to execute ...
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
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
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
1answer
135 views

Help — trying to build Apache ODE source code with Buildr

i am trying to build APACHE ODE source code with Buildr using Ruby. I installed ruby and installed Buildr with it, but when i run the command rake package on the root of APACHE ODE source code it ...
1
vote
2answers
168 views

How to develop a gem in staging environment?

I am trying to hack through a forked gem (buildr). As such I cloned it from github and began to butcher the code. The official gem is installed on my system (under /usr/lib/ruby.../gems/buildr...). ...
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
0answers
11 views

Error when trying to install Buildr-as3 on Windows 7

I'm currently looking into automating a flex build so that we can get it running on a CI server. After a bit of poking around on the Internet and asking around, Buildr as3 looks like a promising ...
0
votes
0answers
31 views

Buildr workspace dependency

I have two projects, project A and project B. Project A is a library project, so it has its own buildfile. I can build jar and everything works fine. In project B i want to use project A as a ...
0
votes
0answers
31 views

Buildr Manifest generate class-path from EAR package

I am using (and learning) Buildr to build and package my projects. I would like to auto generate the class-path attribute in an EJB projects MANIFEST file. Currently I am doing: manifest_cp = ...
0
votes
1answer
48 views

Accessing files packaged into a Ruby Gem

I have a Buildr extension that I'm packaging as a gem. I have a collection of scripts that I want to add to a package. Currently, I have these scripts stored as a big text block that I'm writing to ...
0
votes
1answer
38 views

Buildr: adding a path to the generated eclipse/idea files

I have a legacy java project that we have been moving to buildr/artifactory from ant/jars in svn. The primary code is in the default (src/main/java) folder, but we have a few external source paths, ...
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
89 views

Managing and Building Erlang Apps

Is it possible to use Buildr or Gradle to manage Erlang project deps and build/package the app itself?
0
votes
2answers
67 views

Sending files made by `jar xf` to another directory

I have a JAR with a bunch of configs. I'd like to send them to the correct directory without cd'ing there. Something like jar xf config.jar --MAGIC-PARAM PATH/TO/DIRECTORY Is there such a thing? If ...
0
votes
1answer
104 views

How do I tell ivy4r to stay offline?

We recently switched from Ant to Buildr for building our projects. We use Ivy for dependency management, using the ivy4r Buildr extension. We have a local repository at the office which is used as a ...
0
votes
1answer
58 views

Buildr - exclude directory from resources

In Buildr you can exclude all files in a directory by doing the following: resources.exclude 'scratch/*' Is it possible to exclude the directory as well? The Buildr documentation mentions: The ...

1 2