build

Triggering upstream project builds before downstream project

I have the following project layout: WAR Project A Upstream Projects Dependency B Dependency C Dependency D I'm looking to setup A so that every time I want to trigger a build, it will first build B, C, and D. If either builds for B, C, or D fail then A's build should fail as well. It seems like a common build case, but I'm not...

Unable to Find Specific Libraries in Eclipse Project

I just downloaded a FOSS (Java) project that I am attempting to build on my machine. I imported the project into Eclipse (it did not have its own .project or .classpath file) and let it build. It built almost all the way. However, I am receiving a number of errors where the compiler is "Unable to resolve [X]" where [X] is any number o...

Is there a Ccache for Visual Studio?

I am aware that scons implements the functionality of ccache, but I am stuck with another build system. I also know there is a gocache project on sourceforge that aims to implement ccache like functionality for other compilers, but it seems not complete. ...

Can a Parameterized Hudson Build Override the svn revision?

I'd like to setup the ability to rebuild from a specific revision. The default would be HEAD and a user could rebuild an old build (that had been removed). I'd still like to leverage all of hudson's reporting regarding SVN etc. Is there a good way to do this? ...

What does the 'Rebuild All' setting do?

In visual studio, there is an option to "Rebuild All" from the build menu, what exactly does it do? ...

How to use psake from a batch file?

What I want is a one file I can double-click that will run the required build process using psake. I'm new to psake and PowerShell so be gentle :-). What I have now are 3 files: File 1: Build.bat PowerShell -ExecutionPolicy Unrestricted -File .\Build.ps1 %1 File 2: Build.ps1 Import-Module .\psake.psm1 Invoke-psake .\BuildTasks.ps1...

Grails and Local Maven Dependencies

Hi All, I'm developing a small web frontend in Grails. It is basically a "ultra light-weight" client app that is connected async through JMS. I have two dependencies in the project that I would like to pull from a Maven repository. They is activemq and acme-adapter-api, a inhouse dependency, not available at the remote repository. I ...

How do I keep Eclipse from automatically deleting my exe file

I use Eclipse for Java development. There is an *.exe file in a subdirectory of my workspace, which keeps getting deleted. Specifically, one of the projects is dedicated to C++ development using MSVC; there is no Java there. The root of this project has cpp and h files, and I use MSVC to generate the exe under the /bin directory. A...

rpm build error

Hi I tried to build a rpm package which is giving me the following error /usr/lib/rpm/find-debuginfo.sh /usr/src/redhat/BUILD/RPMS find: invalid predicate `' error: Bad exit status from /var/tmp/rpm-tmp.86590 (%install) what could be the reason .can any one help me in this...Thanks ...

VS2008 app_offline.htm not removed after build

This happens about 50% of the time I build my web application. I have it running on my localhost (start without debugging) and when I make changes and build it will always build successfully, but sometimes not remove the app_offline.htm file it adds for the build. I then have to either refresh the solution explorer to show the app_offlin...

Build a application form a web.

I have developed a Windows game application form C#. It contains 3 DLLs and one EXE. But one DLL is need to build time to time, because it contains an XML file and I need to change that time to time and embedded in to that DLL. After building that DLL I'm publishing and deploying though ClickOnce Deployment. For better convenient I decid...

How call .NET command prompt

How to call .NET command prompt from Aspx to Build/Publish another windows application. I have a windows application, that I want to build via my web application (aspx). How can I do that? ...

How can I get aspnet compiler to handle a page that contains an include file

I have a web application that lands on a shared hosting platform for my company. That platform has global header/footer code that all applications on the platform consume using include files. I can't change how the header files are structured and how they are to be cosumed--that is dictated to me by another group. I have a build serve...

How do I put the entire lib directory (including all subdirectories) on the classpath using Ant?

I'm not sure this is the problem, but it looks like it might be the case. I'm getting build errors telling me that certain packages don't exist. These packages are packages that exist in .jar files within my lib directory. Any other packages within my java source files that I'm compiling and copying to the classes directory are working j...

makefile with directory tree creation suitable for parallel (-j ) build

My project needs temporary directories which are created during the build using mkdir -p similarly to this: all: dirtree $(OBJFILES) dirtree: @mkdir -p $(BUILD)/temp_directory But this approach cannot be used with the -j switch, because first of the OBJFILES get compiled before the mkdir target is made. Is there a standard way t...

Any existing pure PHP "make" tools?

Let me elaborate on the question... I have a custom CMS (built on codeigniter FTW) that includes many different types of modules. Every time we have a new project come through the door, it is a variation and amalgamation of a few of the existing modules. Sometimes a project comes through with requirements that are not satisfied ...

Build system that allows sharing modules amongst different binaries

I'm trying to choose the most appropriate build system to work in enterprise with a common source repository, emphasizing sharing of common code. I'd like the source hierarchy to look something like this: - src - java - common - net - database - team1 - team2 - team3 - lib - tests - jav...

teamcity run several build projects with on revision

Hi, I would like to run several Team-City build projects with the same SVN-revision. Is this possible? ...

How to make distributed builds using XCode 3.2 on OS X 10.6

After I upgraded using a clean install from OS X 10.5 to 10.6.2 and upgraded the XCode to 3.2.1 I wasn't able to use distributed builds feature anymore. There are several issues that I detected: In most cases Bonjour is not detecting the other computers even they are on the same switch. I added a custom 'set' where I added manually th...

Run script during Clean / Clean All in Xcode

I have a fairly complex (iPhone SDK) Xcode project, with many targets -- 4 static libs, unit tests, multiple sample apps, a BuildAll that runs a shell script, and a Package that runs another shell script. The "BuildAll" target creates a directory in the project with some subdirectories with contents ready for distribution. When I click ...