The sequence of actions required to construct a software product or executable application, or the system which performs such actions.

learn more… | top users | synonyms

377
votes
15answers
202k views

How can I create an executable jar with dependencies using Maven?

I have written a little utility to run from the command line using Java. I want to package it in a single executable jar for distribution (.jar file). How can I make maven package all dependend jars ...
201
votes
9answers
61k views

Why use Gradle instead of Ant or Maven? [closed]

What does another build tool targeted at Java really get me? If you use Gradle over another tool, why? (See also Why use Buildr instead of Ant or Maven)
192
votes
7answers
61k 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 ...
98
votes
4answers
38k views

Maven parent pom vs modules pom

There seem to be several ways to structure parent poms in a multiproject build and I wondering if anyone had any thoughts on what the advantages / drawbacks are in each way. The simplest method of ...
82
votes
14answers
33k views

How to get the git commit count?

I'd like to get the number of commits of my git repository, a bit like SVN revision numbers. The goal is to use it as a unique, incrementing build number. I currently do like that, on ...
74
votes
10answers
34k views

Build and Version Numbering for Java Projects (ant, cvs, hudson)

What are current best-practices for systematic build numbering and version number management in Java projects? Specifically: How to manage build numbers systematically in a distributed development ...
67
votes
11answers
80k views

Best practices for copying files with Maven

I have config files and various documents that I want to copy from the dev environment to the dev-server directory using Maven2. Strangely, Maven does not seem strong at this task. Options: ...
61
votes
8answers
14k views

Why use Buildr instead of Ant or Maven? [closed]

http://buildr.apache.org/ http://ant.apache.org/ http://maven.apache.org/ What does another build tool targeted at Java really get me? Is it so hard to write a plugin using Java versus writing it ...
60
votes
5answers
31k views

Maven: add a dependency to a jar by relative path

I have a proprietary jar that I want to add to my pom as a dependency. But I don't want to add it to a repository. The reason is that I want my usual maven commands such as mvn compile, etc, to work ...
57
votes
4answers
17k views

Canonical list of Xcode Environment Variables

Alternate Titles List of Xcode build variables Clang Environment Variables Is there a Canonical list of Xcode Environment Variables that can be used in Build Rules etc?
56
votes
8answers
11k 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...
54
votes
5answers
16k 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 ...
50
votes
5answers
48k views

Ant: How to execute a command for each file in directory?

I want to execute a command from an Ant buildfile, for each file in a directory. I am looking for a platform-independent solution. How do I do this? Sure, I could write a script in some scripting ...
46
votes
9answers
5k views

Why does Go compile so quickly?

I've Googled and poked around the Go website, but I can't seem to find an explanation for Go's extraordinary build times. Are they products of the language features (or lack thereof), a highly ...
45
votes
5answers
8k 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 ...
44
votes
5answers
18k views

Maven Modules + Building a Single Specific Module

I have a multi-module Maven project with a parent project P and three sub-modules A, B, and C. Both B and C are war projects and both depend on A. I can type mvn compile in P and have all of the ...
40
votes
1answer
11k views

What is obj folder generated for? [duplicate]

Possible Duplicate: What are the obj and bin folders (created by Visual Studio) used for? The default output path for any project is Visual studio is bin/Debug, but I have noticed that obj ...
39
votes
3answers
38k views

Xcode variables

In Xcode, I know that you can get variables such as PROJECT_DIR to use in some situations, such as a run script build phase. I am wondering if it's possible to get the build type: IE 'Release' or ...
39
votes
2answers
15k views

Maven: how to do parallel builds?

When you build with maven on a multicore / multi-CPU machine it would often be possible to build different subprojects in parallel. Is there a way to do this with maven? Is there a plugin for this / ...
38
votes
12answers
6k views

Visual Studio 2010 Publish Web feature not including all DLLs

I have an ASP.NET MVC 2 application. Web project contains a reference to SomeProject SomeProject contains references to ExternalAssembly1 and ExternalAssembly2. SomeProject explicitly calls into ...
37
votes
2answers
29k views

Problem building executable jar with maven

I am trying to generate an executable jar for a small home project called "logmanager" using maven, just like this: ...
36
votes
3answers
25k views

Building a runnable jar with Maven 2

I'm relatively new to the Maven mantra, but I'm trying to build a command-line runnable jar with Maven. I've setup my dependencies, but when I run mvn install and attempt to run the jar, two things ...
36
votes
6answers
9k 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 ...
34
votes
19answers
7k 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 ...
33
votes
5answers
34k views

Using cmake to generate visual studio C++ project files

I am working on an open source C++ project, for code that compiles on Linux and Windows. I use cmake to build the code on Linux. For ease of dev-setup and political reasons, I must stick to visual ...
32
votes
8answers
7k views

What is your experience with non-recursive make?

A few years ago, I read the Recursive Make Considered Harmful paper and implemented the idea in my own build process. Recently, I read another article with ideas about how to implement non-recursive ...
32
votes
15answers
9k views

best .net build tool [duplicate]

Possible Duplicate: Nant or MSBuild, which one to choose and when? What is the best build tool for .net. I currently use nant but only because I have experience with ant. Do people prefer ...
30
votes
2answers
5k views

Running multiple TeamCity Agents on the same computer?

We have several build machines, each running a single TeamCity build agent. Each machine is very strong, and we'd like to run several build agents on the same machine. Is this possible, without using ...
28
votes
7answers
25k views

Copy all files and folders using msbuild

Just wondering if someone could help me with some msbuild scripts that I am trying to write. What I would like to do is copy all the files and sub folders from a folder to another folder using ...
28
votes
5answers
26k views

How to build jars from IntelliJ properly?

I have a project that contains a single module, and some dependencies. I'd like to create a jar, in a separate directory, that contains the compiled module. In addition, I'd like to have the ...
27
votes
19answers
5k 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 ...
27
votes
4answers
5k views

No key.store and key.alias properties found in build.properties

I am using ant-release to do a 1-step build of my Android app. My build.properties looks like this: application.package=xxxxx key.store=sonr key.alias=sonr labs key.store.password=xxxx ...
27
votes
2answers
12k views

Different dependencies for different build profiles in maven

Is it possible to have a different set of dependencies in a maven pom.xml file for different profiles? e.g. mvn -P debug mvn -P release I'd like to pick up a different dependency jar file in one ...
27
votes
5answers
20k views

How to run Eclipse launch configurations programmatically?

I'm finding it difficult to phrase this question well, as there are quite a few generic terms (run, configuration, launch, etc.). Here goes: You can save run configurations in a .launch file. (in the ...
26
votes
6answers
5k views

Measuring total solution build time in Visual Studio

Does any know if there is any native mechanism to report on the total solution build time in Visual Studio 2008? You can change the build verbosity to report build times per project as discussed here ...
25
votes
7answers
26k views

Maven: How to include jars, which are not available in reps into a J2EE project?

in my J2EE project I've a couple of dependencies, which are not available in any Maven repository, because they're proprietary libraries. These libraries need to be available at runtime, so that have ...
25
votes
7answers
4k views

Build sequencing when using distributed version control

Right now, we are using Perforce for version control. It has the handy feature of a strictly increasing change number that we can use to refer to builds, eg "you'll get the bugfix if your build is at ...
25
votes
8answers
10k views

Sharing build artifacts between jobs in Hudson

I'm trying to set up our build process in hudson. Job 1 will be a super fast (hopefully) continuous integration build job that will be built frequently. Job 2, will be responsible for running a ...
25
votes
8answers
3k 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 ...
24
votes
4answers
7k views

HintPath on a added reference in Visual Studio

I know that I can add a HintPath to an external DLLs to help Visual Studio/TFS find the dll when it builds. What I was wondering is... is it possible to add multiple HintPath? For example... ...
24
votes
4answers
30k views

In Eclipse, how can I exclude some files (maybe based on the .svn extension or filename) from being copied to the output folder?

I'm developing a Java application using Eclipse. My project has two source directories that are both built and then some files are copied into the output folder. From the output directory I then run ...
24
votes
7answers
2k views

How much of the Web build process do you/should you automate?

How much of the Web build process do you/should you automate? And what is your system of choice? Off the top of my head I would say that for a real one-step web 'build' the following steps would ...
23
votes
4answers
13k views

VisualStudio: How to save the obj folder somewhere else

Does anyone know how to tell VS(2008) where to save the obj folder when building the solution? We have it save the bin folder to another path in order to keep the source file folders small (ie. ...
23
votes
3answers
12k views

How can I configure Hudson to send an email for EVERY build, not just those that change the project's status?

I've recently migrated my CI server from an old version of CruiseControl to Hudson. The only feature I miss from CruiseControl is the ability to receive email build notices of EVERY build, not just ...
23
votes
6answers
12k views

Build numbers: major.minor.revision

How would you write a build.xml file, using neither custom code nor external dependencies (such as a shell script), that: Generates a build number of the form major.minor.revision (e.g., 01.02.34). ...
23
votes
8answers
4k 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 ...
23
votes
6answers
8k views

What's the best toolchain for Continuous Integration with C++?

Continuous Integration toolchains for .NET and Java Continous Integration are relatively well defined, but the C++ market seems to have less consensus. By CI "toolchain" I specifically mean tools for ...
23
votes
3answers
1k views

PHP Code Deployment Tips

In the past, I have been developing in a very amateurish fashion, meaning I had a local machine where I developed and tested code and a production machine to which I copied the code when I was done. ...
22
votes
5answers
3k views

How does C# compilation get around needing header files?

I've spent my professional life as a C# developer. As a student I occasionally used C but did not deeply study it's compilation model. Recently I jumped on the bandwagon and have begun studying ...
22
votes
5answers
13k views

Visual Studio 2010, how to build projects in parallel on multicore

I have a big solution with more than 40 projects. Almost half of them are test projects. In my project we use both Code Contracts, Code Analysis, Style Analysis. I want to be able to build the ...

1 2 3 4 5 33