Skip to content

Commit

Permalink
refactor: move custom-runtime under advanced folder
Browse files Browse the repository at this point in the history
  • Loading branch information
ndr-brt committed Dec 14, 2023
1 parent 543a5b4 commit 192e5cf
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion basic/basic-01-basic-connector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A runnable connector consists of a `Runtime` and a build file, in our case this
The first thing we need is the `Runtime` which is the main entry point to the connector application, same as with any
other Java program. In this sample we use the
[`BaseRuntime`](https://github.com/eclipse-edc/Connector/blob/releases/core/common/boot/src/main/java/org/eclipse/edc/boot/system/runtime/BaseRuntime.java),
but this can be extended (take a look at the [`custom-runtime`](../../other/custom-runtime) sample for more information)
but this can be extended (take a look at the [`custom-runtime`](../../advanced/advanced-02-custom-runtime) sample for more information)

The second thing we need is a [gradle build file](build.gradle.kts)
that contains the essential dependencies. We'll need at least the following things:
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ include(":transfer:streaming:streaming-03-kafka-broker:streaming-03-runtime")
include(":advanced:advanced-01-open-telemetry:open-telemetry-consumer")
include(":advanced:advanced-01-open-telemetry:open-telemetry-provider")

include(":other:custom-runtime")
include(":advanced:advanced-02-custom-runtime")

include(":util:http-request-logger")

Expand Down

0 comments on commit 192e5cf

Please sign in to comment.