Skip to content

Commit

Permalink
Merge pull request #10 from FIAP-3SOAT-G15/fix-aws-dependencies
Browse files Browse the repository at this point in the history
Fix AWS dependencies
  • Loading branch information
wellyfrs authored May 18, 2024
2 parents e221c6d + 050b01b commit acda1a3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
<sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/target/site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
<sonar.language>kotlin</sonar.language>
<sonar.verbose>true</sonar.verbose>
<aws.java.sdk.version>1.12.724</aws.java.sdk.version>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -95,7 +96,10 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-dynamodb</artifactId>
<version>1.12.719</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-sts</artifactId>
</dependency>
<dependency>
<groupId>io.github.boostchicken</groupId>
Expand Down Expand Up @@ -129,6 +133,13 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-bom</artifactId>
<version>${aws.java.sdk.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
Expand Down

0 comments on commit acda1a3

Please sign in to comment.