-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Support Hashicorp Vault settings in the Maven Plugin POM #6129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -1040,6 +1085,18 @@ | |||
return configurationProperties; | |||
} | |||
|
|||
private void handleVaultProperties(Map<String, Object> scopeValues) { | |||
if (StringUtil.isNotEmpty(this.vaultAddr)) { |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
StringUtil.isNotEmpty
if (StringUtil.isNotEmpty(this.vaultAddr)) { | ||
scopeValues.put("liquibase.vault.addr", this.vaultAddr); | ||
} | ||
if (StringUtil.isNotEmpty(this.vaultToken)) { |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
StringUtil.isNotEmpty
if (StringUtil.isNotEmpty(this.vaultToken)) { | ||
scopeValues.put("liquibase.vault.token", this.vaultToken); | ||
} | ||
if (StringUtil.isNotEmpty(this.vaultNamespace)) { |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
DAT-17324
Impact
Description
Things to be aware of
Things to worry about
Additional Context