Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
9answers
13k views

Differences between Ant and Maven

Could someone tell me the differences between Ant and Maven? I have never used either. I understand that they are used to automate the building of Java projects, but I do not know where to start from. ...
12
votes
9answers
3k views

Is Ant still the best choice for a Java build tool?

From my small amount of experience, I've only used Ant as a build tool. Are there any other projects which are better, and why?
4
votes
5answers
484 views

How can I ignore command line variable assignment in a recursive build?

I'm trying to glue two build systems together. Both are recursive (rules in the makefile use make to call other makefiles to build components of the project). I'll call them 'A' and 'B' where 'A' ...
4
votes
3answers
587 views

Need primer for a Msbuild newbie

We maintain a medium sized windows application developed in vb/c# .net in work. Still now the build and deploy process for this app is manual. I am determined to make this process automated using ...
4
votes
1answer
1k views

How do I enable undo in eclipse ant editor?

Undo is not working for me in ant editor in eclipse. When I press Ctrl-Z nothing happens. Is it possible to enable undo somehow or is this a bug? I am using Eclipse 3.4.2 (Ganymede) on Windows XP ...
3
votes
2answers
255 views

Project management/build tools for a Django project?

Coming from Java development where build and project management tools abound, I'd like to know what's available for Django. I'd really like to use something like Maven for building things, but is ...
3
votes
4answers
1k views

GNU make with many target directories

I have to integrate the generation of many HTML files in an existing Makefile. The problem is that the HTML files need to reside in many different directories. My idea is to write an implicit rule ...
3
votes
8answers
6k views

Automating builds from subversion tags

I'm trying to automate the build process for engineering group. As part of that automation, I'm trying to get to a point where the act of applying a specific tag that adheres to a pattern will kick ...
2
votes
1answer
342 views

Managing multiple versions in cruise-control, team city, etc

In my shop (as I expect it is in most), you have multiple releases of different software components (let's call them foo-client and bar-service). In my cc.net configuration, I currently have one ...
1
vote
3answers
2k views

Legacy C++ project using Makefile ..moving to Eclipse IDE?

I have a legacy C++ project on Linux which uses the typical: ./configure make make install to build and install. I would really like to build it instead with an IDE like Eclipse. Is this doable? ...
0
votes
2answers
39 views

Is it possible to construct build environment for cross-compiling for different target environment?

In these days, I'm learning joy of open-source world. With Homebrew package build management system on Mac OS X. Building software for my purpose was so easy and simple. Anyway, those package systems ...