Skip to content

Commit

Permalink
Merge pull request #3588 from halcyon22/main
Browse files Browse the repository at this point in the history
fix Gradle plugin configuration syntax in documentation
  • Loading branch information
DoodleBobBuffPants committed Dec 23, 2022
2 parents 8367518 + 28f4819 commit 71ab829
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
Expand Up @@ -42,7 +42,7 @@ baselineMigrationConfigurationExtension.setBaselineMigrationPrefix("IB");
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
baselineMigrationPrefix: 'IB'
]
}
Expand Down
Expand Up @@ -39,7 +39,7 @@ daprConfigurationExtension.setDaprSecrets("secret1", "secret2");
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
daprSecrets: ['secret1', 'secret2']
]
}
Expand Down
Expand Up @@ -37,7 +37,7 @@ daprConfigurationExtension.setDaprUrl("http://localhost:3500/v1.0/secrets/my-sec
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
daprUrl: 'http://localhost:3500/v1.0/secrets/my-secrets-store'
]
}
Expand Down
Expand Up @@ -37,7 +37,7 @@ gcsmConfigurationExtension.setGcsmProject("quixotic-ferret-345678");
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
gcsmProject: 'quixotic-ferret-345678'
]
}
Expand Down
Expand Up @@ -37,7 +37,7 @@ gcsmConfigurationExtension.setGcsmSecrets("secret1", "secret2");
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
gcsmSecrets: ['secret1', 'secret2']
]
}
Expand Down
Expand Up @@ -39,8 +39,8 @@ configurationExtension.setTransactionalLock(false);
### Gradle
```groovy
flyway {
pluginConfiguration [
postgresqlTransactionalLock: false
pluginConfiguration = [
postgresqlTransactionalLock: 'false'
]
}
```
Expand Down
Expand Up @@ -35,7 +35,7 @@ sqlServerConfigurationExtension.setKerberosLoginFile("/path/to/SQLJDBCDriver.con
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
sqlserverKerberosLoginFile: '/path/to/SQLJDBCDriver.conf'
]
}
Expand Down
Expand Up @@ -40,7 +40,7 @@ vaultConfigurationExtension.setVaultSecrets("kv/data/flyway/flywayConfig1", "kv/
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
vaultSecrets: ['kv/data/flyway/flywayConfig1', 'kv/flyway/flywayConfig2']
]
}
Expand Down
Expand Up @@ -35,7 +35,7 @@ vaultConfigurationExtension.setVaultToken("s.abcdefghijklmnopqrstuvwx");
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
vaultToken: 's.abcdefghijklmnopqrstuvwx'
]
}
Expand Down
Expand Up @@ -37,7 +37,7 @@ vaultConfigurationExtension.setVaultUrl("http://localhost:8200/v1/");
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
vaultUrl: 'http://localhost:8200/v1/'
]
}
Expand Down

0 comments on commit 71ab829

Please sign in to comment.