diff --git a/other/custom-runtime/build.gradle.kts b/advanced/advanced-02-custom-runtime/build.gradle.kts similarity index 100% rename from other/custom-runtime/build.gradle.kts rename to advanced/advanced-02-custom-runtime/build.gradle.kts diff --git a/other/custom-runtime/src/main/java/org/eclipse/edc/sample/runtime/CustomRuntime.java b/advanced/advanced-02-custom-runtime/src/main/java/org/eclipse/edc/sample/runtime/CustomRuntime.java similarity index 100% rename from other/custom-runtime/src/main/java/org/eclipse/edc/sample/runtime/CustomRuntime.java rename to advanced/advanced-02-custom-runtime/src/main/java/org/eclipse/edc/sample/runtime/CustomRuntime.java diff --git a/basic/basic-01-basic-connector/README.md b/basic/basic-01-basic-connector/README.md index 03b9cb46..38c91eab 100644 --- a/basic/basic-01-basic-connector/README.md +++ b/basic/basic-01-basic-connector/README.md @@ -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: diff --git a/settings.gradle.kts b/settings.gradle.kts index 7bddd3b8..20ed91e6 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -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")