Skip to content

Commit

Permalink
fix: add missing edc-control-plane-api-client dependency (eclipse-edc…
Browse files Browse the repository at this point in the history
…#134) (eclipse-edc#138)

add missing edc-control-plane-api-client dependency
  • Loading branch information
MichaelSteinert authored and majadlymhmd committed Nov 15, 2023
1 parent 6b2493c commit 946d9d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions transfer/transfer-07-provider-push-http/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Implement a simple "Provider Push" Http transfer flow

The purpose of this example is to show a data exchange between 2 connectors, one representing the
data provider and the other, the consumer. It's based on a provider push usecase that you can find
The purpose of this example is to show a data exchange between two connectors, one representing the
data provider and the other, the consumer. It's based on a provider push use case that you can find
more details
on [Transfer data plane documentation](https://github.com/eclipse-edc/Connector/tree/main/extensions/control-plane/transfer/transfer-data-plane)
on [Transfer data plane documentation](https://github.com/eclipse-edc/Connector/tree/main/extensions/control-plane/transfer/transfer-data-plane).
For the sake of simplicity, the provider and the consumer
will be on the same machine, but in a real world configuration, they will likely be on different
machines. The final goal of this example is to present the steps through which the 2 connectors will
machines. The final goal of this example is to present the steps through which the two connectors will
have to pass so that the consumer can have access to the data, held by the provider.

Those steps are the following:
Expand Down Expand Up @@ -297,7 +297,7 @@ looks as follows:
reference

Of course, this is the simplest possible negotiation sequence. Later on, both connectors can also
send counter offers in addition to just confirming or declining an offer.
send counteroffers in addition to just confirming or declining an offer.

```bash
curl -d '{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ repositories {

dependencies {
implementation(libs.edc.control.plane.core)
implementation(libs.edc.control.plane.api.client)
implementation(libs.edc.dsp)
implementation(libs.edc.configuration.filesystem)
implementation(libs.edc.vault.filesystem)
Expand Down

0 comments on commit 946d9d8

Please sign in to comment.