Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Runtime-Core Repository

## Decision

The `Runtime-Metamodel` repository will be expanded and renamed to `Runtime-Core`, consolidating the following:

- The existing content of `Runtime-Metamodel` (annotations and classes used by the autodoc-processor)
- The `autodoc-processor` module, moved from the `GradlePlugins` repository
- The runtime bootstrap modules from the `Connector` repository (e.g. `boot`, dependency injection framework, and
other domain-agnostic infrastructure modules)

The `GradlePlugins` repository will retain only `edc-build`, and will be **excluded from the platform release**, since
`edc-build` follows its own release cycle and is published on the Gradle Plugins Portal.

## Rationale

`Runtime-Metamodel` is an _anemic_ repository: it contains only annotations and a few classes, the latter of which
are exclusively used by the `autodoc-processor`. Since `autodoc-processor` is strictly dependent on `runtime-metamodel`,
co-locating them in the same repository removes an artificial boundary with no structural benefit.

Similarly, the runtime bootstrap modules currently scattered across the `Connector` repository are foundational
infrastructure that is not domain-specific. Grouping them with the metamodel and the autodoc-processor creates a
cohesive set of cross-cutting concerns under a single repository:

- **Faster platform releases**: one fewer repository in the platform release cycle.
- **Reduced coupling**: `IdentityHub` currently depends on the `Connector` repository partly because of these
foundational runtime modules. Moving them to `Runtime-Core` allows `IdentityHub` (and other repositories) to depend
only on `Runtime-Core` for runtime setup, removing the indirect dependency on `Connector`.
- **Clearer boundaries**: `Connector`, `IdentityHub`, and the `Technology` repositories become purely domain-focused;
Comment thread
ndr-brt marked this conversation as resolved.
`Runtime-Core` owns everything needed to stand up an EDC runtime.

## Approach

The migration will be carried out in the following steps:

1. **Move `autodoc-processor`** from `GradlePlugins` into `Runtime-Metamodel`.
2. **Adapt release workflows**: remove `GradlePlugins` from the platform release; `edc-build` will continue to be
released independently via the Gradle Plugins Portal.
3. **Move runtime bootstrap modules** (`boot`, dependency injection framework, and related domain-agnostic
infrastructure) from the `Connector` repository into `Runtime-Metamodel`.
4. **Rename `Runtime-Metamodel`** to `Runtime-Core`.
5. Eventually, `Connector` could be renamed to `Control-Plane`

### Versioning and Release Cycle

`Runtime-Core` will follow the same release cadence as the rest of the EDC platform. `GradlePlugins` (`edc-build`)
will continue to follow its own independent release cycle.

1 change: 1 addition & 0 deletions developer/decision-records/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
- [2026-02-25 On the usage of Artificial Intelligence](./2026-02-25-using-ai/)
- [2026-03-22 Catalog Crawler as Control-Plane feature](./2026-03-02-catalog-crawler/)
- [2026-02-25 Introducing Dataspace Hub](./2026-03-25-dataspace-hub/)
- [2026-06-19 RuntimeCore repository](./2026-06-10-runtime-core-repository/)

## Repository-specific

Expand Down
Loading