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
9
votes
1 answer

Using GitFlow in Azure DevOps (Does it mean multiple pipelines?)

Our dev team want to branch out (bad joke) into using a GitFlow like branching system where there would be a dev, uat and release branches(which would all need building from), I cant see a clever way of using the same pipeline to deploy different…
Staggerlee011
  • 847
  • 2
  • 13
  • 23
9
votes
5 answers

Gradle Replace text in jsp using filter

I have a jsp that contains a css link that looks like In order to keep browsers from caching the css file we replace login-min.css with the name of the css and a timestamp or…
Josh
  • 2,842
  • 8
  • 45
  • 51
9
votes
0 answers

app:transformClassesWithDexBuilderForDebug takes very long time in Android

Whenever I checkout a different branch and build the app, this particular task takes around 10 minutes. It's awfully long. app:transformClassesWithDexBuilderForDebug Android Studio : 3.2.1 Gradle plugin: 3.1.3 I tried many things such as…
Orhan Obut
  • 8,756
  • 5
  • 32
  • 42
9
votes
8 answers

how to fix build errors for Maven Mulesoft code

I'm trying to build mulesoft code with maven in Bamboo.Build was successfull but now giving errors as below. I'm using Bamboo 6.5.0 and jdk 1.8. with Maven 3. The error details are as below and my pom.xml, settings.xml as well ! Any inputs…
DevOps Junky
  • 287
  • 1
  • 5
  • 22
9
votes
1 answer

Visual Studio App Center Private Cocoapod

My iOS project includes some private pods. I have gone through the steps on my local machine (as well as team members) to use private pods outlined here. How do I add the same process for VS App Center to update and retrieve the repo? Currently, I…
Justin Ngo
  • 172
  • 5
9
votes
2 answers

TeamCity Twitter Notifier?

Has anyone built something to send out your TeamCity build status with Twitter? Can this be done with TeamCity's Jabber support?
Lance Fisher
  • 25,684
  • 22
  • 96
  • 122
9
votes
2 answers

Save collection of updated records all at once

As I understand it, the build method can be used to build up a collection of associated records before saving. Then, when calling save, all the child records will be validated and saved, and if there are validation errors the parent record will have…
jrdioko
  • 32,230
  • 28
  • 81
  • 120
9
votes
2 answers

Jenkins Build Failure, Cobertura Error

I tried to build a job and it returns following error: > Failed to execute goal > org.codehaus.mojo:cobertura-maven-plugin:2.7:instrument (default-cli) > on project addressbook: Execution default-cli of goal >…
Aarit Soni
  • 101
  • 1
  • 4
9
votes
1 answer

Prioritize build order with yarn workspaces and lerna

I have this big typescript project in a mono-repository using yarn workspaces and lerna with the following architecture: repo ├── API │ └── (GraphQL API) ├── Apps │ └── (Front-end React Apps) ├── Libs │ └── (Shared libraries) └── Services …
Marco Daniel
  • 5,467
  • 5
  • 28
  • 36
9
votes
2 answers

Strange build failure when deploying GAE using gradle

Everything used to work fine until today. Didn't change anything as far as I know and now I get this: C:\mypath>gradle appengineDeploy > Configure project : WARNING: You are a using release candidate 2.0.0-rc1. Behavior of this plugin has changed…
djokerndthief
  • 455
  • 2
  • 4
  • 16
9
votes
1 answer

Common size of basic app production bundle

I'm trying to build my first Angular 6 app for production, and the build size is around 1 MB. Because of lack of the experience, it is hard for me to estimate what size it should be, but 1 MB seems to big for relatively small app. How such an issue…
Unknwn Artist
  • 430
  • 5
  • 17
9
votes
3 answers

iOS App xcode build errors

I am new to iOS development and struggling with few build errors. I looked up the web on how to fix these errors but could not get a hint. Using Xcode 9.4 with built in Swift. 'LaunchOptionsKey' is not a member type of 'UIApplication' Instance…
9
votes
1 answer

When to use the XCode Distributed Build Feature

I work in a small iPhone development team, in our office, we have at least 4 copies of XCode running on the network at any one time. Contemplating getting everyone to have it running. We're networked together using a standard WIFI Switch, so network…
David van Dugteren
  • 3,879
  • 9
  • 33
  • 48
9
votes
0 answers

Scala and Java mix in visual studio code

I have been using IntelliJ IDEA for a predominantly maven based Java project that has some Scala code as well. The pom.xml uses scala-maven-plugin with scala-compile-first working well. I tried porting this project to Visual Studio code and found…
JWS
  • 158
  • 1
  • 8
9
votes
2 answers

No autodetection of JPA Entities in maven-verify

If I put the persistence.xml in the src/test/META-INF folder, autodetection the Entities does not work with maven-verify. When the persistence.xml is located in the src/main/META-INF folder it works. Running the tests in eclipse works in both…
Dominik
  • 1,241
  • 1
  • 14
  • 31