blob: 5ab60c1c7a7a9a7abc54b0387384ec49f96ab81c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Java NIO wrappers for Amazon Simple Storage Service (S3).
*
* @author Martin Desruisseaux (Geomatys)
* @version 1.4
* @since 1.2
*/
module org.apache.sis.cloud.aws {
requires software.amazon.awssdk.core;
requires software.amazon.awssdk.auth;
requires software.amazon.awssdk.regions;
requires software.amazon.awssdk.services.s3;
requires software.amazon.awssdk.http;
requires transitive org.apache.sis.util;
requires org.apache.sis.storage;
provides java.nio.file.spi.FileSystemProvider
with org.apache.sis.cloud.aws.s3.FileService;
exports org.apache.sis.cloud.aws.s3;
}