2 title: {{setting.name}}
10 - {{#lower}}{{group.name}}{{/lower}}
17 {{setting.description}}
20 {{setting.explanation}}
23 ## Configuration Options
26 ### Option: '{{value}}'
37 {{#hasRelatedSettings}}
41 - [{{name}}](../{{#lower}}{{name}}{{/lower}}/): {{description}}
43 {{/hasRelatedSettings}}
49 In order to use `YoSQL` together with [Ant](https://ant.apache.org/), take a look at the tooling [documentation for Ant](/tooling/ant/).
53 In order to use `YoSQL` together with [Bazel](https://bazel.build/), take a look at the tooling [documentation for Bazel](/tooling/bazel/).
57 In order to use `YoSQL` on the command line, take a look at the tooling [documentation for CLI](/tooling/cli/).
60 $ yosql --{{#lower}}{{group.name}}{{/lower}}-{{#kebab}}{{setting.name}}{{/kebab}}=configValue
63 As long as the name of the config option is unique across all configuration groups, you can use the shorter form:
66 $ yosql --{{#kebab}}{{setting.name}}{{/kebab}}=configValue
71 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:
76 id("wtf.metio.yosql") version "{{yosqlVersion}}"
80 {{#lower}}{{group.name}}{{/lower}} {
81 {{setting.name}}.set(configValue)
86 or in Groovy syntax like this:
91 id "wtf.metio.yosql" version "{{yosqlVersion}}"
95 {{#lower}}{{group.name}}{{/lower}} {
96 {{setting.name}} = configValue
103 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:
109 <groupId>wtf.metio.yosql</groupId>
110 <artifactId>yosql-tooling-maven</artifactId>
111 <version>{{yosqlVersion}}</version>
113 <{{#lower}}{{group.name}}{{/lower}}>
114 <{{setting.name}}>configValue</{{setting.name}}>
115 </{{#lower}}{{group.name}}{{/lower}}>