2 title: {{setting.name}}
10 - {{#lower}}{{group.name}}{{/lower}}
16 {{setting.description}}
19 {{setting.explanation}}
22 ## Configuration Options
25 ### Option: '{{value}}'
36 {{#hasRelatedSettings}}
40 - [{{name}}](../{{#lower}}{{name}}{{/lower}}/): {{description}}
42 {{/hasRelatedSettings}}
48 In order to use `YoSQL` together with [Ant](https://ant.apache.org/), take a look at the tooling [documentation for Ant](/tooling/ant/).
52 In order to use `YoSQL` together with [Bazel](https://bazel.build/), take a look at the tooling [documentation for Bazel](/tooling/bazel/).
56 In order to use `YoSQL` on the command line, take a look at the tooling [documentation for CLI](/tooling/cli/).
59 $ yosql --{{#lower}}{{group.name}}{{/lower}}-{{#kebab}}{{setting.name}}{{/kebab}}=configValue
62 As long as the name of the config option is unique across all configuration groups, you can use the shorter form:
65 $ yosql --{{#kebab}}{{setting.name}}{{/kebab}}=configValue
70 In order to use `YoSQL` together with [Gradle](https://gradle.org/), take a look at the tooling [documentation for Gradle](/tooling/gradle/). The `{{setting.name}}` setting can be configured using Gradle in Kotlin syntax like this:
75 id("wtf.metio.yosql") version "{{yosqlVersion}}"
79 {{#lower}}{{group.name}}{{/lower}} {
80 {{setting.name}}.set(configValue)
85 or in Groovy syntax like this:
90 id "wtf.metio.yosql" version "{{yosqlVersion}}"
94 {{#lower}}{{group.name}}{{/lower}} {
95 {{setting.name}} = configValue
102 In order to use `YoSQL` together with [Maven](https://maven.apache.org/), take a look at the tooling [documentation for Maven](/tooling/maven/). The `{{setting.name}}` setting can be configured using Maven like this:
108 <groupId>wtf.metio.yosql</groupId>
109 <artifactId>yosql-tooling-maven</artifactId>
110 <version>{{yosqlVersion}}</version>
112 <{{#lower}}{{group.name}}{{/lower}}>
113 <{{setting.name}}>configValue</{{setting.name}}>
114 </{{#lower}}{{group.name}}{{/lower}}>