diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-05-16 13:45:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-16 13:45:48 +0200 |
| commit | 00b5ee4bd423d8d9682a9ed9cd2af7c19a715459 (patch) | |
| tree | 8d157d2553438dd9ac59983bc0fdd6ca63bbdb4b /buildSrc/src | |
| parent | e35d7c49856d8fb5965a315976ac6fdd6c9fb718 (diff) | |
| parent | 63c88a4ce70b065a568992cde28135818e0031b9 (diff) | |
merge: Update build and runtime dependencies (#86)
This pull request updates the build and runtime dependencies used by OpenDC
to their latest version compatible with the project.
## Implementation Notes :hammer_and_pick:
* Update simulator dependency versions
* Fix hotkeys support for React 18
* Update dependencies of web UI
* Remove unused dependencies
## Breaking API Changes :warning:
* N/A
Diffstat (limited to 'buildSrc/src')
| -rw-r--r-- | buildSrc/src/main/kotlin/distribution-conventions.gradle.kts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildSrc/src/main/kotlin/distribution-conventions.gradle.kts b/buildSrc/src/main/kotlin/distribution-conventions.gradle.kts index 51dbbe63..ebbe46ee 100644 --- a/buildSrc/src/main/kotlin/distribution-conventions.gradle.kts +++ b/buildSrc/src/main/kotlin/distribution-conventions.gradle.kts @@ -44,8 +44,8 @@ distributions { // Include distributions of the subprojects getTasksByName("assembleDist", true) .filter { it.project != project } - .map { it.project.name to it.project.the<DistributionContainer>() } - .forEach { (name, dist) -> dist.findByName("main")?.let { with(it.contents) } } + .map { it.project.the<DistributionContainer>() } + .forEach { dist -> dist.findByName("main")?.let { with(it.contents) } } } } } |
