resilient/docs/faqs/How to make a release.md
2025-06-03 19:40:08 +01:00

15 lines
391 B
Markdown

## ❓ Frequently Asked Questions
### Q: How to make a release?
**A:** To make a PROD release (not SNAPSHOT)
- Change the version in pom.xml (usually, remove the "-SNAPSHOT" suffix)
- Build JAR (see "How to build a PROD jar")
- Commit changes (the change to pom.xml)
- Make a TAG in GIT
- Change the version in pom.xml. Increment version and add "-SNAPSHOT" suffix
- Commit changes
---