You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@buildr.apache.org by Mark Petrovic <ms...@gmail.com> on 2010/09/09 14:03:50 UTC

jar packaging with merge

This 

    define "TestApp" do
      compile.from _('src')
      ((package :jar, :id => 'TestApp').with :manifest=>{'Main-Class'=>'testapp.Main'}).merge _('large.jar')
    end

builds TestApp from src/ and attempts to merge with large.jar, which is 10Mb or so in size.  It takes several minutes for the merge to run.  Is this to be expected?

--
Mark Petrovic



Re: jar packaging with merge

Posted by Antoine Toulme <an...@lunar-ocean.com>.
On the behavior, I guess, since it's what you wrote :P

On the performance aspect, we didn't work on that part, if you think we need
a better deal of performance at merging, you are welcome to help with it.

On Thu, Sep 9, 2010 at 05:03, Mark Petrovic <ms...@gmail.com> wrote:

> This
>
>    define "TestApp" do
>      compile.from _('src')
>      ((package :jar, :id => 'TestApp').with
> :manifest=>{'Main-Class'=>'testapp.Main'}).merge _('large.jar')
>    end
>
> builds TestApp from src/ and attempts to merge with large.jar, which is
> 10Mb or so in size.  It takes several minutes for the merge to run.  Is this
> to be expected?
>
> --
> Mark Petrovic
>
>
>