From 21ff784c6f1eb08f2002130cc24c542670490776 Mon Sep 17 00:00:00 2001 From: ndr_brt Date: Wed, 15 Apr 2026 09:42:09 +0200 Subject: [PATCH] build: fix compilation --- .../main/java/org/eclipse/edc/aws/s3/S3CoreExtension.java | 8 ++++---- .../connector/dataplane/aws/s3/DataPlaneS3Extension.java | 2 +- gradle/libs.versions.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/extensions/common/aws/aws-s3-core/src/main/java/org/eclipse/edc/aws/s3/S3CoreExtension.java b/extensions/common/aws/aws-s3-core/src/main/java/org/eclipse/edc/aws/s3/S3CoreExtension.java index d86bab3d..c6b56150 100644 --- a/extensions/common/aws/aws-s3-core/src/main/java/org/eclipse/edc/aws/s3/S3CoreExtension.java +++ b/extensions/common/aws/aws-s3-core/src/main/java/org/eclipse/edc/aws/s3/S3CoreExtension.java @@ -37,13 +37,13 @@ public class S3CoreExtension implements ServiceExtension { public static final String NAME = "S3"; - @Setting(value = "The key of the secret where the AWS Access Key Id is stored") + @Setting(description = "The key of the secret where the AWS Access Key Id is stored") private static final String AWS_ACCESS_KEY = "edc.aws.access.key"; - @Setting(value = "The key of the secret where the AWS Secret Access Key is stored") + @Setting(description = "The key of the secret where the AWS Secret Access Key is stored") private static final String AWS_SECRET_KEY = "edc.aws.secret.access.key"; - @Setting(value = "If valued, the AWS clients will point to the specified endpoint") + @Setting(description = "If valued, the AWS clients will point to the specified endpoint") private static final String AWS_ENDPOINT_OVERRIDE = "edc.aws.endpoint.override"; - @Setting(value = "The size of the thread pool used for the async clients") + @Setting(description = "The size of the thread pool used for the async clients") private static final String AWS_ASYNC_CLIENT_THREAD_POOL_SIZE = "edc.aws.client.async.thread-pool-size"; @Inject private Vault vault; diff --git a/extensions/data-plane/data-plane-aws-s3/src/main/java/org/eclipse/edc/connector/dataplane/aws/s3/DataPlaneS3Extension.java b/extensions/data-plane/data-plane-aws-s3/src/main/java/org/eclipse/edc/connector/dataplane/aws/s3/DataPlaneS3Extension.java index f3a9a57b..7947109d 100644 --- a/extensions/data-plane/data-plane-aws-s3/src/main/java/org/eclipse/edc/connector/dataplane/aws/s3/DataPlaneS3Extension.java +++ b/extensions/data-plane/data-plane-aws-s3/src/main/java/org/eclipse/edc/connector/dataplane/aws/s3/DataPlaneS3Extension.java @@ -35,7 +35,7 @@ public class DataPlaneS3Extension implements ServiceExtension { private static final int DEFAULT_CHUNK_SIZE_IN_MB = 500; // 500MB chunk size - @Setting(value = "The maximum chunk of stream to be read, in mb", defaultValue = DEFAULT_CHUNK_SIZE_IN_MB + "", type = "int") + @Setting(description = "The maximum chunk of stream to be read, in mb", defaultValue = DEFAULT_CHUNK_SIZE_IN_MB + "") private static final String EDC_DATAPLANE_S3_SINK_CHUNK_SIZE_MB = "edc.dataplane.aws.sink.chunk.size.mb"; @Inject diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 2c2139ea..9f19adcd 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -48,5 +48,5 @@ aws-s3 = { module = "software.amazon.awssdk:s3", version.ref = "aws" } aws-secretsmanager = { module = "software.amazon.awssdk:secretsmanager", version.ref = "aws" } [plugins] -edc-build = { id = "org.eclipse.edc.edc-build", version = "1.2.0" } +edc-build = { id = "org.eclipse.edc.edc-build", version = "1.4.0" } shadow = { id = "com.gradleup.shadow", version = "9.4.1" }