Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
Add AWS S3 Dependency (#3)
Browse files Browse the repository at this point in the history
Add Config for SpringDoc OpenAPI Plugin
  • Loading branch information
f11h authored May 12, 2022
1 parent 105d60f commit f220474
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,13 @@
<artifactId>modelmapper-spring</artifactId>
<version>3.1.0</version>
</dependency>

<!-- AWS -->
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>1.12.201</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -346,7 +353,18 @@
<plugin>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-maven-plugin</artifactId>
<version>1.1</version>
<version>1.4</version>
<configuration>
<apiDocsUrl>http://localhost:8080/v3/api-docs</apiDocsUrl>
</configuration>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
Expand Down

0 comments on commit f220474

Please sign in to comment.