Skip to content

Commit bdbbde5

Browse files
committed
Updated README.md for 1.0.4
Also use testImplementation instead of testCompile for gradle dependency declaration
1 parent 79aecaa commit bdbbde5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ to explicitly depend on [Jaybird](https://github.com/FirebirdSQL/jaybird).
2929
### Gradle
3030

3131
```groovy
32-
testCompile "org.firebirdsql:firebird-testcontainers-java:1.0.3"
32+
testImplementation "org.firebirdsql:firebird-testcontainers-java:1.0.4"
3333
```
3434

3535
### Maven
@@ -38,7 +38,7 @@ testCompile "org.firebirdsql:firebird-testcontainers-java:1.0.3"
3838
<dependency>
3939
<groupId>org.firebirdsql</groupId>
4040
<artifactId>firebird-testcontainers-java</artifactId>
41-
<version>1.0.3</version>
41+
<version>1.0.4</version>
4242
<scope>test</scope>
4343
</dependency>
4444
```
@@ -70,7 +70,9 @@ Firebird specific options are:
7070

7171
- `withEnableLegacyClientAuth()` - (_Firebird 3+_) Enables `LegacyAuth` and uses
7272
it as the default for creating users, also relaxes `WireCrypt` to `Enabled`;
73-
sets docker environment variable `EnableLegacyClientAuth` to `true`
73+
sets docker environment variable `EnableLegacyClientAuth` to `true`;
74+
passes connection property `authPlugins` with value `Srp256,Srp,Legacy_Auth` if
75+
this property is not explicitly set through `withUrlParam`
7476
- `withEnableWireCrypt` - (_Firebird 3+_) Relaxes `WireCrypt` from `Required` to
7577
`Enabled`; sets docker environment variable `EnableWireCrypt` to `true
7678
- `withTimeZone(String)` - Sets the time zone (defaults to JVM default time

0 commit comments

Comments
 (0)