-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
23 lines (20 loc) · 831 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
23 lines (20 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
rootProject.name = "ory-hydra-reference"
include("reference-app")
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
// Overwrites the catalog's testcontainersOryHydra version:
// ./gradlew build -PtestcontainersOryHydraVersion=<version>
// Relied on by .github/workflows/upstream-canary.yml in this repo AND by the
// reference-app-compat workflow in ardetrick/testcontainers-ory-hydra — do not
// remove without updating both.
val override = providers.gradleProperty("testcontainersOryHydraVersion")
if (override.isPresent) {
version("testcontainersOryHydra", override.get())
}
}
}
}