Skip to content

Commit

Permalink
fix Gradle plugin configuration syntax in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
halcyon22 committed Dec 22, 2022
1 parent 8367518 commit 28f4819
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ baselineMigrationConfigurationExtension.setBaselineMigrationPrefix("IB");
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
baselineMigrationPrefix: 'IB'
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ daprConfigurationExtension.setDaprSecrets("secret1", "secret2");
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
daprSecrets: ['secret1', 'secret2']
]
}
Expand Down
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gcsmConfigurationExtension.setGcsmProject("quixotic-ferret-345678");
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
gcsmProject: 'quixotic-ferret-345678'
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gcsmConfigurationExtension.setGcsmSecrets("secret1", "secret2");
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
gcsmSecrets: ['secret1', 'secret2']
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ configurationExtension.setTransactionalLock(false);
### Gradle
```groovy
flyway {
pluginConfiguration [
postgresqlTransactionalLock: false
pluginConfiguration = [
postgresqlTransactionalLock: 'false'
]
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ sqlServerConfigurationExtension.setKerberosLoginFile("/path/to/SQLJDBCDriver.con
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
sqlserverKerberosLoginFile: '/path/to/SQLJDBCDriver.conf'
]
}
Expand Down
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ vaultConfigurationExtension.setVaultToken("s.abcdefghijklmnopqrstuvwx");
### Gradle
```groovy
flyway {
pluginConfiguration [
pluginConfiguration = [
vaultToken: 's.abcdefghijklmnopqrstuvwx'
]
}
Expand Down
Original file line number Diff line number Diff line change
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 28f4819

Please sign in to comment.