The build-management tag has no wiki summary.
0
votes
1answer
50 views
Would it be a bad practice to manage deployments through Jenkins?
Jenkins would naturally be used for automatic build/deployment/testing and reporting activities. However, would it be a bad practice to manage all environment -related activities in Jenkins as well? ...
0
votes
1answer
110 views
Shadow Copying in Perforce?
I am working with a team and we are trying to restructure our approach to managing our perforce depo. Our current solution is to maintain a separate "work" folder structure. Each person is limited to ...
1
vote
1answer
1k views
How to use master pom file to checkout all modules of a web application and build all modules
I have a web application that relies on several modules. So to build it, I have a master pom.xml file. What I want this pom file to do is to checkout out all the modules.
below is my pom file.
...
0
votes
2answers
64 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 ...
5
votes
2answers
999 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 ...
2
votes
3answers
4k 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? ...
5
votes
4answers
678 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' ...
3
votes
4answers
2k 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 ...
5
votes
2answers
873 views
Need primer for a Msbuild newbie [closed]
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 ...
6
votes
2answers
4k 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 ...
58
votes
9answers
35k 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.
...
11
votes
8answers
11k 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
372 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 ...
16
votes
9answers
4k 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?