2 * This file is part of yosql. It is subject to the license terms in the LICENSE file found in the top-level
3 * directory of this distribution and at https://creativecommons.org/publicdomain/zero/1.0/. No part of yosql,
4 * including this file, may be copied, modified, propagated, or distributed except according to the terms contained
8 rootProject.name = "yosql-examples-gradle"
10 dependencyResolutionManagement {
15 url = uri(System.getProperty("user.home") + "/.cache/maven/repository")
21 val version: String by settings
23 id("wtf.metio.yosql") version version
27 if (requested.id.namespace == "wtf.metio.yosql") {
28 useModule(":yosql-tooling-gradle")
36 url = uri(System.getProperty("user.home") + "/.cache/maven/repository")
43 id("org.gradle.toolchains.foojay-resolver-convention") version "0.4.0"
46 includeBuild("../../yosql-tooling/yosql-tooling-gradle")
47 include(":yosql-examples-gradle-jdbc-java8")
48 include(":yosql-examples-gradle-jdbc-java11")
49 include(":yosql-examples-gradle-jdbc-java15")
50 include(":yosql-examples-gradle-jdbc-java16")