Questions tagged [build]

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

In the field of computer software, the term software build refers either to the process of converting source code files into standalone software artifact(s) that can be run on a computer, or the result of doing so.

Useful Links

23199 questions
2870
votes
33 answers

How can I create an executable/runnable JAR with dependencies using Maven?

I want to package my project in a single executable JAR for distribution. How can I make a Maven project package all dependency JARs into my output JAR?
soemirno
  • 29,244
  • 3
  • 19
  • 14
882
votes
31 answers

How can I run multiple npm scripts in parallel?

In my package.json I have these two scripts: "scripts": { "start-watch": "nodemon run-babel index.js", "wp-server": "webpack-dev-server", } I have to run these 2 scripts in parallel everytime I start developing in Node.js. The first…
Andre Pena
  • 56,650
  • 48
  • 196
  • 243
792
votes
14 answers

Xcode process launch failed: Security

I have been developing an app for 1 or 2 weeks now and just yesterday I have updated my iPhone 5S to the iOS 8 GM. Everything worked fine and I could test on my device as well until I deleted the app from my phone and wanted to build again. The…
Tom Spee
  • 9,209
  • 5
  • 31
  • 49
652
votes
24 answers

How to build JARs from IntelliJ IDEA 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 would like to have the dependencies present beside my module. No matter how I…
ripper234
  • 222,824
  • 274
  • 634
  • 905
575
votes
8 answers

What does the Visual Studio "Any CPU" target mean?

I have some confusion related to the .NET platform build options in Visual Studio 2008. What is the "Any CPU" compilation target, and what sort of files does it generate? I examined the output executable of this "Any CPU" build and found that they…
galets
  • 17,802
  • 19
  • 72
  • 101
566
votes
5 answers

WARNING in budgets, maximum exceeded for initial

When building my Angular 7 project with --prod, I receive a warning in budgets. I have an Angular 7 project. I am trying to build it, but I keep getting the following warning: WARNING in budgets, maximum exceeded for initial. Budget 2 MB was…
Masoud Bimmar
  • 6,941
  • 4
  • 30
  • 33
503
votes
25 answers

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/BB.app/no.png [WARN]Warning: Multiple build commands for output file…
Futur
  • 8,444
  • 5
  • 28
  • 34
446
votes
20 answers

Xcode "Build and Archive" from command line

Xcode 3.2 provides an awesome new feature under the Build menu, "Build and Archive" which generates an .ipa file suitable for Ad Hoc distribution. You can also open the Organizer, go to "Archived Applications," and "Submit Application to…
Dan Fabulich
  • 37,506
  • 41
  • 139
  • 175
425
votes
69 answers

Visual Studio "Could not copy" .... during build

I keep getting this error during the build of my VS2012 C# project Error 41 Could not copy "obj\Debug\WeinGartner.WeinCad.exe" to "bin\Debug\WeinGartner.WeinCad.exe". Exceeded retry count of 10. Failed. Error 42 Unable to copy file…
bradgonesurfing
  • 30,949
  • 17
  • 114
  • 217
411
votes
7 answers

ant warning: "'includeantruntime' was not set"

I receive the following warning: [javac] build.xml:9: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds What does this mean?
user496949
  • 83,087
  • 147
  • 309
  • 426
405
votes
6 answers

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. I tried the following: docker build -t essearch/ess-elasticsearch:1.7.6 --build-arg number_of_shards=5 number_of_replicas=2…
Emilien Brigand
  • 9,943
  • 8
  • 32
  • 37
392
votes
6 answers

How do I generate sourcemaps when using babel and webpack?

I want to set up a config to generate sourcemaps. I'm running webpack serve from the command line, which compiles successfully. But I really need sourcemaps. This is my webpack.config.js. var webpack = require('webpack'); module.exports = { …
user916367
389
votes
10 answers

What is a Maven artifact?

What is an artifact and why does Maven need it?
Maxim Veksler
  • 29,272
  • 38
  • 131
  • 151
347
votes
24 answers

Still getting warning : Configuration 'compile' is obsolete and has been replaced with 'implementation'

I have replaced every occurrence of compile by implementation in my project's build.gradle, but I'm still getting this warning : I tried to look for "compile " in the whole project but no match was found. So what could be the cause?
Rob
  • 4,123
  • 3
  • 33
  • 53
323
votes
7 answers

Difference between Rebuild and Clean + Build in Visual Studio

What is the difference between just a Rebuild and doing a Clean + Build in Visual Studio 2008? Is Clean + Build different then doing Clean + Rebuild?
Jim McKeeth
  • 38,225
  • 23
  • 120
  • 194
1
2 3
99 100