Simple configuration example
Here you can find the example of a simple configuration in the supported formats
.
This configuration uses the simple preset and sets a few other global configuration options.
JSON
{
"dryRun":false,
"initialVersion":"0.1.0",
"preset":"simple",
"releaseLenient":true,
"releasePrefix":"v",
"scheme":"SEMVER",
"verbosity":"WARNING"
}
Source code for this file is available here.
YAML
---
dryRun: false
initialVersion: "0.1.0"
preset: simple
releaseLenient: true
releasePrefix: v
scheme: "SEMVER"
verbosity: "WARNING"
Source code for this file is available here.
Groovy (Gradle)
nyx {
dryRun = false
initialVersion = "0.1.0"
preset = 'simple'
releaseLenient = true
releasePrefix = 'v'
scheme = "SEMVER"
verbosity = "WARNING"
}
Source code for this file is available here.