1.1.3 • Published 3 years ago

@airclear/standard-version-updater-pom v1.1.3

Weekly downloads
-
License
UNLICENSE
Repository
github
Last release
3 years ago

standard-version-updater-pom

The conventional-changelog/standard-version updater for Gradle build files.

Installation

  1. create package.json in the project root dir.
{
	"name": "you app name",
	"version": "1.0.0"
}
  1. 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"
    }
  ]
}