Initial commit for resilient-core

This commit is contained in:
Orlando M Guerreiro 2025-06-17 10:37:54 +01:00
commit 49fc4b2983
2169 changed files with 175785 additions and 0 deletions

View file

@ -0,0 +1,15 @@
## ❓ 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
---