@airclear/standard-version-updater-pom
v1.1.3
Published
The conventional-changelog/standard-version updater for Pom.xml build files.
Downloads
4
Maintainers
Readme
standard-version-updater-pom
The conventional-changelog/standard-version updater for Gradle build files.
Installation
- create
package.json
in the project root dir.
{
"name": "you app name",
"version": "1.0.0"
}
- install this tool
$ npm install --save-dev @airclear/standard-version-updater-pom
Configuration
Just use following updaters within
.versionrc.json
config file.
{
"bumpFiles": [
{
"filename": "pom.xml",
"updater": "node_modules/@airclear/standard-version-updater-pom/dist/build-pom.js"
}
],
"packageFiles": [
{
"filename": "pom.xml",
"updater": "node_modules/@airclear/standard-version-updater-pom/dist/build-pom.js"
}
]
}