Skip to content

Commit

Permalink
make secret manager dependency non-optional in autoconfigure module
Browse files Browse the repository at this point in the history
  • Loading branch information
diegomarquezp committed Jan 7, 2025
1 parent c29d726 commit 0e2b5d6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion spring-cloud-gcp-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,10 @@
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>spring-cloud-gcp-secretmanager</artifactId>
<optional>true</optional>
<!-- A few starters need this dependency to validate secrets -->
<!-- using SecretManagerSyntaxUtils. Making it optional produces runtime failures -->
<!-- of the kind ClassNotFoundError. -->
<optional>false</optional>
</dependency>

<!-- KMS -->
Expand Down

0 comments on commit 0e2b5d6

Please sign in to comment.