Skip to content

Commit

Permalink
[misc] Readme link correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed May 6, 2021
1 parent 60d5352 commit e004274
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
15 changes: 5 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Tracker link <a href="https://jira.mariadb.org/projects/CONJ/issues/">https://ji
For java 8 or more :
(maintenance branch for java 7 is 1.x)

The driver (jar) can be downloaded from [mariadb connector download](https://mariadb.com/products/connectors-plugins)
The driver (jar) can be downloaded from [mariadb connector download](https://mariadb.com/downloads/#connectors)
or maven :
```script
<dependency>
Expand All @@ -32,7 +32,7 @@ or maven :
</dependency>
```

New version 3.0 is a complete rewrite with code clarification, reduced size (15%), more than 90% coverage tested, with performance gain.
New version 3.0 is a complete rewrite with code simplification, reduced size (15%), more than 90% coverage tested, with performance gain.
But still in alpha for now:
```script
<dependency>
Expand All @@ -46,15 +46,10 @@ But still in alpha for now:
## Documentation

For a Getting started guide, API docs, recipes, etc. see the
* [About MariaDB connector/J](/documentation/about-mariadb-connector-j.creole)
* [Use MariaDB connector/j driver](/documentation/use-mariadb-connector-j-driver.creole)
* [About MariaDB connector/J](https://mariadb.com/kb/en/about-mariadb-connector-j/)
* [Install driver](https://mariadb.com/kb/en/installing-mariadb-connectorj/)
* [Changelog](/CHANGELOG.md)
* [Failover and high-availability](/documentation/failover-and-high-availability-with-mariadb-connector-j.creole)


## Contributing
To get started with a development installation and learn more about contributing, please follow the instructions at our
[Developers Guide.](/documentation/developers-guide.creole)
* [Failover and high-availability](https://mariadb.com/kb/en/failover-and-high-availability-with-mariadb-connector-j/)


[codecov-image]:https://codecov.io/gh/mariadb-corporation/mariadb-connector-j/branch/master/graph/badge.svg
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/driver.properties
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ keyStore=File path of the keyStore file that contain client private key store an
keyStorePassword="Password for the client certificate keyStore (similar to java System property "javax.net.ssl.keyStorePassword")
keyStoreType=indicate key store type (JKS/PKCS12). default is null, then using java default type
transactionIsolation=Default transaction isolation level. Possible values READ-UNCOMMITTED, READ-COMMITTED, REPEATABLE-READ, SERIALIZABLE. default REPEATABLE-READ
restrictedAuth=restrict authentication method to secure list. Default "mysql_native_password,client_ed25519,auth_gssapi_client". Possible values are mysql_native_password,client_ed25519,auth_gssapi_client,caching_sha2_password,dialog,mysql_clear_password.
tcpKeepIdle=permit setting socket TCP_KEEPIDLE value. Only valid for java 11+(for previous version, this option will have no use). (Integer) Default null
restrictedAuth=if set, restrict authentication plugin to secure list. Default provided plugins are mysql_native_password,client_ed25519,auth_gssapi_client,caching_sha2_password,dialog and mysql_clear_password. (String) Default null
tcpKeepIdle=permit setting socket TCP_KEEPIDLE value. Only valid for java 11+(for previous version, this option will have no use). (Integer) Default null
tcpKeepCount=permit setting socket TCP_KEEPCOUNT value. Only valid for java 11+(for previous version, this option will have no use). (Integer) Default null
tcpKeepInterval=permit setting socket TCP_KEEPINTERVAL value. Only valid for java 11+(for previous version, this option will have no use). (Integer) Default null

0 comments on commit e004274

Please sign in to comment.