Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Update OCI
fix issue:
#368
This pull request includes several updates to dependencies and imports in the Oracle Cloud Object Storage module. The most important changes include adding a new required module, updating import statements to use the correct package, and updating dependency versions in both the
pom.xml
and documentation.Dependency updates:
afs/oraclecloud/objectstorage/src/main/java/module-info.java
: Addedoci.java.sdk.common.httpclient
as a required module.afs/oraclecloud/pom.xml
: Updated the version ofoci-java-sdk-bom
dependency from2.73.0
to3.44.4
.docs/modules/storage/pages/storage-targets/blob-stores/oracle-cloud-object-storage.adoc
: Updated the version ofoci-java-sdk-objectstorage
from2.21.0
to3.44.4
and added a new dependency foroci-java-sdk-common-httpclient-jersey
.Import corrections:
afs/oraclecloud/objectstorage/src/main/java/org/eclipse/store/afs/oraclecloud/objectstorage/types/OracleCloudObjectStorageConnector.java
: Changed import statement fromcom.oracle.bmc.io.DuplicatableInputStream
tocom.oracle.bmc.http.client.io.DuplicatableInputStream
.