aws-s3-presigned-post
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.dyegosutil</groupId> <artifactId>aws-s3-presigned-post</artifactId> <version>1.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.github.dyegosutil</groupId> <artifactId>aws-s3-presigned-post</artifactId> <version>1.0.1</version> <name>AWS S3 Pre Signed Post</name> <description>A Java library to generate pre-signed post data to be used to upload files to S3</description> <url>https://github.com/dyegosutil/aws-s3-presigned-post</url> <licenses> <license> <name>MIT License</name> <url>https://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <id>dyego.sutil</id> <name>Dyego Sutil Mendes</name> <email>aws.s3.presigned.post@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/dyegosutil/aws-s3-presigned-post.git</connection> <developerConnection>scm:git:ssh://github.com:dyegosutil/aws-s3-presigned-post.git</developerConnection> <url>github.com/dyegosutil/aws-s3-presigned-post/tree/main</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>bom</artifactId> <version>2.26.24</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>regions</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>auth</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.11.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.13</version> <scope>runtime</scope> </dependency> </dependencies> </project>