37
votes
37answers
4k views
What punishment do you have when someone on the team breaks the build?
Sitting here frustrated that a team member broke the build and then goes on a long-weekend vacation, I wonder what other teams do when someone breaks the build? What would you consider a fair …
18
votes
5answers
1k views
In Maven 2, how do I know from which dependency comes a transitive dependency ?
I would like to know which dependency described in my pom.xml brings a transitive dependency in my target directory.
To be more precise, I have the library "poi-2.5.1-final-20040804.jar" in my …
17
votes
8answers
369 views
Large Java System Dependency Management
We have a large (>500,000 LOC) Java system that depends on 40-50 OSS
packages. The system is built with Ant, and dependency management is
handled manually at present. I'm investigating Ivy and/or …
17
votes
5answers
879 views
Perl build, unit testing, code coverage: A complete working example
Most Stackoverflow answers that I have found in regards to the Perl build process and unit testing and code coverage simply point me to CPAN for the documentation there. There's absolutely nothing …
15
votes
19answers
755 views
What is the point of a “Build Server”?
I haven't worked for very large organizations and I've never worked for a company that had a "Build Server".
What is their purpose? Why aren't the developers building the project on their local …
15
votes
8answers
6k views
How to run Visual Studio post-build events for debug build only
How can I limit my post-build events to running only for one type of build? I'm using the events to copy DLLs to a local IIS virtual directory but I don't want this happening on the build server in …
15
votes
13answers
1k views
best .net build tool
What is the best build tool for .net. I currently use nant but only because I have experience with ant. Do people prefer msbuild ?
14
votes
9answers
1k views
Improving Your Build Process
Or, actually establishing a build process when there isn't much of one in place to begin with.
Currently, that's pretty much the situation my group faces. We do web-app development primarily (but no …
13
votes
26answers
2k views
Why does Maven have such a bad rep?
There is a lot of talk on the internet about how Maven is bad. I have been using some features of Maven for a few years now and the most important benefit in my view is the dependency management.
…
13
votes
4answers
404 views
iPhone Game Developers - What does your toolchain look like?
For example:
source control: git + adobe drive
3d: google sketchup -> *.dae -> blender -> *.obj
2d: photoshop/illustrator -> *.png
audio: audacity -> *.caf
code: ArgoUML, Xcode, Textmate
test: …
13
votes
3answers
597 views
Is there a Maven Alternative or port for the .NET world?
Is there a Maven Alternative or port for the .NET world? I would love to use a good dependency management system that the Java world has ... but i don't find anything comparable for .NET projects ...
…
13
votes
3answers
2k views
Displaying build times in Visual Studio?
Our build server is taking too long to build one of our C++ projects. It uses Visual Studio 2008. Is there any way to get devenv.com to log the time taken to build each project in the solution, so …
13
votes
17answers
2k views
Should I switch from nant to msbuild?
I currently use nant, ccnet (cruise control), svn, mbunit. I use msbuild to do my sln build just because it was simpler to shell out.
Are there any merits to switching my whole build script to …
12
votes
7answers
469 views
Is continuous integration worth it for small projects?
I've been pushing for continuous integration at my company since I joined 5 months ago, but having seen the type of applications we work on I'm starting to think that it might not be worth the effort …
11
votes
8answers
346 views
Is reducing number of cpp translation units a good idea?
I find that if there are a lot of classes the compilation time is dramatically increased when I use one *.h and one *.cpp file per class. I already use precompiled headers and incremental linking, but …
