4.0.0
org.springframework.boot
spring-boot-starter-parent
3.3.4
com.laurynthes
media-storage-services
1.1.3
media-storage-services
media-storage-services is a helper tool to facilitate upload, download, retrieval and
delete operations to and from AWS S3
The Apache License, Version 2.0
https://www.apache.org/licenses/LICENSE-2.0.txt
Laurynthés Admin
laurynthes@gmail.com
Laurynthés Org
https://www.laurynthes.com
scm:git:git://laurynthes@bitbucket.org/laurynthes-workspace/media-storage-services.git
scm:git:ssh://laurynthes@bitbucket.org/laurynthes-workspace/media-storage-services.git
https://laurynthes@bitbucket.org/laurynthes-workspace/media-storage-services/src
<java.version>21</java.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<aws.java.sdk.version>2.25.61</aws.java.sdk.version>
<apache.commons.version>3.15.0</apache.commons.version>
org.springframework.boot
spring-boot-starter-webflux
org.springframework.cloud
spring-cloud-dependencies
2023.0.3
pom
import
org.springdoc
springdoc-openapi-starter-webmvc-ui
2.6.0
org.springdoc
springdoc-openapi-starter-webflux-ui
2.6.0
software.amazon.awssdk
s3
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.5.0</version>
<extensions>true</extensions>
<configuration>
<autoPublish>true</autoPublish>
<publishingServerId>central</publishingServerId>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.8.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.3</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>