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