diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-05-05 20:50:18 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-05-06 14:04:05 +0200 |
| commit | d22a757a86107ee35a64e1eb23282770cdd901dd (patch) | |
| tree | 0f747a501ad1c01f230df8d4f8b25fc7cdeb9c5c /opendc-workflow/opendc-workflow-api | |
| parent | 25e2fd97409311c89030e51e1a78211d335709b9 (diff) | |
build: Use type-safe project accessors
This change updates the build scripts to use type-safe project accessors
when specifying build dependencies between modules.
Diffstat (limited to 'opendc-workflow/opendc-workflow-api')
| -rw-r--r-- | opendc-workflow/opendc-workflow-api/build.gradle.kts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/opendc-workflow/opendc-workflow-api/build.gradle.kts b/opendc-workflow/opendc-workflow-api/build.gradle.kts index d3e67bee..45657d27 100644 --- a/opendc-workflow/opendc-workflow-api/build.gradle.kts +++ b/opendc-workflow/opendc-workflow-api/build.gradle.kts @@ -28,8 +28,7 @@ plugins { } dependencies { - api(platform(project(":opendc-platform"))) - api(project(":opendc-compute:opendc-compute-api")) - implementation(project(":opendc-utils")) + api(platform(projects.opendcPlatform)) + api(projects.opendcCompute.opendcComputeApi) implementation("io.github.microutils:kotlin-logging") } |
