This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 156914 - Support for Groovy 'merge' target
Summary: Support for Groovy 'merge' target
Status: RESOLVED FIXED
Alias: None
Product: www
Classification: Unclassified
Component: Builds & Repositories (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Martin Krauskopf
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-01-15 20:23 UTC by Martin Krauskopf
Modified: 2009-02-19 22:48 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Krauskopf 2009-01-15 20:23:50 UTC
I'm used to use:

  ant -f build.xml -Dcluster.config=basic -Dmoduleconfig=ruby merge

for building Ruby additively. The same does not work for groovy. By blindly following what is the difference I've come
to the patch below. I'm not sure whether it cannot interfere with something. Could you double check and commit or let me
know to commit. Thanks.

In-lined (short) patch:
========================================================================
diff --git a/nbbuild/build.properties b/nbbuild/build.properties
--- a/nbbuild/build.properties
+++ b/nbbuild/build.properties
@@ -316,6 +316,10 @@
         ${config.modules.stable}
 config.fixedmodules.l10nkit=${config.fixedmodules.stable}
 
+# List of modules for Groovy support:
+config.fixedmodules.groovy=${nb.cluster.groovy}
+config.modules.groovy=
+
 # List of modules for Ruby support:
 config.fixedmodules.ruby=${nb.cluster.ruby}
 config.modules.ruby=
========================================================================
Comment 1 Jesse Glick 2009-01-15 23:29:18 UTC
I think you can go ahead. Module configs are hardly used anymore anyway.
Comment 2 Martin Krauskopf 2009-01-16 18:02:01 UTC
> I think you can go ahead.

Ok, thanks. I've did: #4141b6b98ffe

> Module configs are hardly used anymore anyway.

Are there some better way to build clusters additively?
Comment 3 Jesse Glick 2009-01-16 21:30:54 UTC
There is the rebuild-cluster target, perhaps it would be helpful for you.
Comment 4 Quality Engineering 2009-01-17 06:53:59 UTC
Integrated into 'main-golden', will be available in build *200901170201* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main/rev/4141b6b98ffe
User: Martin Krauskopf <mkrauskopf@netbeans.org>
Log: #156914: Support for Groovy 'merge' target