Release management encompasses the practices and patterns required to deploy software to customers.
Questions tagged [release-management]
911 questions
19
votes
2 answers
Maven - Reading a property from an external properties file
I have a property file with the following
junit.version=3.8.1
dbcp.version=5.5.27
oracle.jdbc.version=10.2.0.2.0
I try to read those properties from my pom file as shown below
junit
…

ziggy
- 15,677
- 67
- 194
- 287
19
votes
7 answers
Google Play console displaying Release not live
Usually the when the application gets released in the Internal Channel, the build will get reflected instantly. Within a minute.
But strangely the build is not reflected even after a day. I am using the latest new Google console which displays the…

Sathish
- 459
- 6
- 12
19
votes
5 answers
Flutter How to make release version in Android Studio?
By default Android Studio use debug mode when building Flutter application. You can build the release version with the command line, see How to optimize the Flutter App size?
flutter build apk --release
Now: how to configure Android Studio to…

Serge Breusov
- 1,316
- 4
- 11
- 24
19
votes
5 answers
Visual Studio - How to remove a reference in Release mode
I'm developing a library for use in other apps and this library has lots of debugging and logging statements thanks to NLog.
Is it possible to exclude the reference to NLog.dll when I switch to release mode?
Cheers,

Razor
- 17,271
- 25
- 91
- 138
18
votes
4 answers
using git to keep exes and dlls?
I'm new to version control so please excuse if this question is very basic.
From my understanding GIT is a code version control. we develop a lot of windows applications whose final releases are either .exe or .dll files.
my question is simple how…

asif-007
- 327
- 1
- 3
- 10
18
votes
4 answers
In git, how can I find the revision at which a branch was created?
UPDATE: example repository, https://github.com/so-gitdemo/so-gitdemorepo
In the context of the github repo. How can I easily locate rev "b0430cee"? I know I can just look, but the real example that this repository mimics has a dozen committers and…

basszero
- 29,624
- 9
- 57
- 79
18
votes
8 answers
App build/deployment workflow
What do you use to manage the workflow of deploying your application after the build completes? I'm not talking about just the act of getting files on a server, I'm talking about what happens after that. Verification, testing, approval, migration…

Ryan Rinaldi
- 4,119
- 2
- 22
- 22
18
votes
6 answers
Best practices for deploying tools & scripts to production?
I've got a number of batch processes that run behind the scenes for a Linux/PHP website. They are starting to grow in number and complexity, so I want to bring a small amount of process to bear on them.
My source tree has a bunch of cpp files and…

twk
- 16,760
- 23
- 73
- 97
18
votes
6 answers
Deployment of war file on Tomcat
Is there a way to deploy a given war file on Tomcat server? I want to do this without using the web interface.

Milhous
- 14,473
- 16
- 63
- 82
17
votes
13 answers
How do you update a live, busy web site in the politest way possible?
When you roll out changes to a live web site, how do you go about checking that the live system is working correctly? Which tools do you use? Who does it? Do you block access to the site for the testing period? What amount of downtime is…

Tim Booker
- 2,801
- 1
- 25
- 36
17
votes
13 answers
Release management in SVN
When I look in the SVN log I really wish I could see markers that tell me when releases were done. I've seen this in other version control systems such as PVCS and Perforce.
Can this be done in SVN? I've done a little bit of research and so far it…

Richard Ev
- 52,939
- 59
- 191
- 278
17
votes
13 answers
How to efficiently manage multiple installations of a web application?
From my experience, one of the bigger problems we come across during our webdevelopment process is keeping different setups updated and secure across different servers.
My company has it's own CMS which is currently installed across 100+ servers.…

Aron Rotteveel
- 81,193
- 17
- 104
- 128
17
votes
15 answers
How often should you release software updates?
Moments ago Jeff Atwood said the following on twitter:
Look, I love rapid new software releases, but the frequency of WordPress releases is just ridiculous.
Which makes me think, how often should you release software…

GateKiller
- 74,180
- 73
- 171
- 204
16
votes
13 answers
What do you do to your JavaScript code before deployment?
Do you have a step in your deployment process that minifies JS? Do you have any sort of preprocessor for your JavaScript that allows you to leave in comments and console.logs and then have them automatically stripped out? Is your JavaScript machine…

Nosredna
- 83,000
- 15
- 95
- 122
16
votes
2 answers
EF Code First Migrations to Deploy Older Version
I'm using TFS Release Management to do continuous integration and deployment.
I'm using migrate.exe to perform the database migration during deployment, and this works great when you're going from an older version to a newer version. When you want…

RMD
- 3,421
- 7
- 39
- 85