Skip to content

Commit

Permalink
build(deps): bump EDC to 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ndr-brt committed Jul 29, 2024
1 parent 85d9e52 commit 1c65a64
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions edc-controlplane/edc-controlplane-base/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

plugins {
`java-library`
id(libs.plugins.swagger.get().pluginId)
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private void createDatabase() {
try (var connection = DriverManager.getConnection(baseJdbcUrl() + "postgres", postgreSqlContainer.getUsername(), postgreSqlContainer.getPassword())) {
connection.createStatement().execute(String.format("create database %s;", postgreSqlContainer.getDatabaseName()));
} catch (SQLException ignored) {

// ignored
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,14 @@ public AssetService mockAssetService(ServiceExtensionContext context) {
@Provider
public CatalogService mockCatalogService() {
return new CatalogService() {

@Override
public CompletableFuture<StatusResult<byte[]>> requestCatalog(String counterPartyId, String counterPartyAddress, String protocol, QuerySpec querySpec) {
public CompletableFuture<StatusResult<byte[]>> requestCatalog(String s, String s1, String s2, QuerySpec querySpec, String... strings) {
return null;
}

@Override
public CompletableFuture<StatusResult<byte[]>> requestDataset(String id, String counterPartyId, String counterPartyAddress, String protocol) {
public CompletableFuture<StatusResult<byte[]>> requestDataset(String s, String s1, String s2, String s3) {
return null;
}
};
Expand Down Expand Up @@ -117,4 +118,4 @@ public TransferProcessService mockTransferProcessService() {
return new TransferProcessServiceStub(new ResponseQueue(recordedRequests, monitor));
}

}
}

0 comments on commit 1c65a64

Please sign in to comment.