Top "Build" questions

The process of converting source code files into standalone software artifact(s) that can be run on a computer

How do I get Maven to use the correct repositories?

I have just checked out some projects and need to build them, however I installed Maven quite some time ago (6 …

java maven-2 build-process build
How to change target build on Android project?

I currently have an Android project in Eclipse. I created it with a target build of 1.5 (sdk 3). Now I want …

android build target
iOS - Build fails with CocoaPods cannot find header files

I have an iOS project using CocoaPods. Everything was working smoothly until another developer started to work on the same …

objective-c ios cocoa build cocoapods
How to execute Ant build in command line

I have an Ant build file, and I try to execute it in the command line with the following command: $ …

ant build deferred-execution
docker build with --build-arg with multiple arguments

According to the documentation, it's possible to define multiple args for the flag --build-arg, but I can't find out how. …

docker build arguments
The POM for project is missing, no dependency information available

Background Trying to add a Java library to the local Maven repository using a clean install of Apache Maven 3.1.0, with …

java maven build compilation pom.xml
Error:Execution failed for task ':app:compileDebugKotlin'. > Compilation error. See log for more details

Error:Execution failed for task ':app:compileDebugKotlin'. > Compilation error. See log for more details build:gradle(Module:app) …

android kotlin gradle build gradle-kotlin-dsl
How to compile Go program consisting of multiple files?

I have a small program that consists of three files, all belonging to the same package (main), but when I …

go build compiler-errors
Xcode warning: "Multiple build commands for output file"

I am getting an error like this: [WARN]Warning: Multiple build commands for output file /Developer/B/Be/build/Release-iphonesimulator/…

xcode build warnings
How to compile multiple java source files in command line

I know running javac file1.java produces file1.class if file1.java is the only source file, then I can …

java build javac