Skip to content

Commit

Permalink
Add explicit sdk-core dependency to autoconfigure module to fix sta…
Browse files Browse the repository at this point in the history
…rtup when only base starter is included in classpath. (#955)

Fixes #934
  • Loading branch information
maciejwalkowiak committed Dec 10, 2023
1 parent f0f9a0b commit d5e7160
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions spring-cloud-aws-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,22 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-core</artifactId>
</dependency>

<!-- optional dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-actuator-autoconfigure</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>io.awspring.cloud</groupId>
<artifactId>spring-cloud-aws-core</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure-processor</artifactId>
Expand Down Expand Up @@ -130,7 +134,6 @@
<artifactId>micrometer-registry-cloudwatch2</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-commons</artifactId>
Expand All @@ -151,6 +154,5 @@
<artifactId>sts</artifactId>
<optional>true</optional>
</dependency>

</dependencies>
</project>

0 comments on commit d5e7160

Please sign in to comment.