This commit is contained in:
René Pfeuffer
2020-06-18 14:50:28 +02:00
committed by GitHub
parent 22881dd381
commit fffe10fba6

View File

@@ -61,6 +61,12 @@ If you need to update the parent of the plugin to a new release of SCM-Manager,
- `pom.xml`: `parent.version`
- `package.json`: `dependencies.ui-plugins`
## Plugin dependencies
Check if all plugin dependencies are proper versions and not SNAPSHOT!
## Build, commit and push
```
rm -rf node_modules yarn.lock && mvn clean install \
&& git add yarn.lock pom.xml package.json \
@@ -68,10 +74,6 @@ rm -rf node_modules yarn.lock && mvn clean install \
&& git push origin develop
```
## Plugin dependencies
Check if all plugin dependencies are proper versions and not SNAPSHOT!
Wait for Jenkins to be green.
## Modify Changelog
@@ -83,8 +85,8 @@ Change "Unreleased" header in `CHANGELOG.md` to `<version> - <current date>`
```
export VERSION=<version> \
&& git checkout -b release/$VERSION \
&& echo git commit -am "Prepare release of $VERSION" \
&& echo git push origin release/$VERSION
&& git commit -am "Prepare release of $VERSION" \
&& git push origin release/$VERSION
```
## Wait for Jenkins build