https://github.com/ivanceras/parent
parent for ORM, fluentsql and commons
https://github.com/ivanceras/parent
Last synced: 6 days ago
JSON representation
parent for ORM, fluentsql and commons
- Host: GitHub
- URL: https://github.com/ivanceras/parent
- Owner: ivanceras
- Created: 2014-09-11T08:31:40.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-14T07:42:25.000Z (almost 11 years ago)
- Last Synced: 2024-05-23T01:31:10.268Z (over 1 year ago)
- Size: 316 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
parent
======
[](https://travis-ci.org/ivanceras/parent)
parent for ORM, fluentsql and commons
This is only for unifying the version of the 3 maven projects associated with ivanceras orm
# releasing
Releasing is done using maven
From develop branch that you have been working on.
Checkout to master code then merge the development branch to master
Push the result of the merge to origin repository master branch
```sh
git status
origin develop
git checkout master
git merge develop
git push -u origin master
mvn -P ossrh clean deploy release:prepare release:perform
```
After deployment
Go back to development branch, then merge the master to development
```sh
git status
origin origin master
git checkout develop
git merge master
```
From there, you can now continue development.