You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+4-6
Original file line number
Diff line number
Diff line change
@@ -26,15 +26,15 @@ If you are interested in contributing to this project, but perhaps don't quite k
26
26
REQUIREMENTS
27
27
============
28
28
*`Java >= 17` (Azul Zulu JVM is tested by our CI on GitHub Actions)
29
-
* MariaDB `11.4`
29
+
* MariaDB `11.5.2`
30
30
31
31
You can run the required version of the database server in a container, instead of having to install it, like this:
32
32
33
-
docker run --name mariadb-11.4 -p 3306:3306 -e MARIADB_ROOT_PASSWORD=mysql -d mariadb:11.4
33
+
docker run --name mariadb-11.5 -p 3306:3306 -e MARIADB_ROOT_PASSWORD=mysql -d mariadb:11.5.2
34
34
35
35
and stop and destroy it like this:
36
36
37
-
docker rm -f mariadb-11.4
37
+
docker rm -f mariadb-11.5
38
38
39
39
<br>Beware that this database container database keeps its state inside the container and not on the host filesystem. It is lost when you destroy (rm) this container. This is typically fine for development. See [Caveats: Where to Store Data on the database container documentation](https://hub.docker.com/_/mariadb) re. how to make it persistent instead of ephemeral.<br>
40
40
@@ -79,11 +79,9 @@ Run the following commands:
79
79
============
80
80
1. Clone the repository or download and extract the archive file to your local directory.
81
81
2. Run `./gradlew clean bootJar` to build a modern cloud native fully self contained JAR file which will be created at `fineract-provider/build/libs` directory.
82
-
3. As we are not allowed to include a JDBC driver in the built JAR, download a JDBC driver of your choice. For example: `wget https://downloads.mariadb.com/Connectors/java/connector-java-3.3.2/mariadb-java-client-3.3.2.jar`
82
+
3. As we are not allowed to include a JDBC driver in the built JAR, download a JDBC driver of your choice. For example: `wget https://dlm.mariadb.com/4174416/Connectors/java/connector-java-3.5.2/mariadb-java-client-3.5.2.jar`
83
83
4. Start the jar and pass the directory where you have downloaded the JDBC driver as loader.path, for example: `java -Dloader.path=. -jar fineract-provider/build/libs/fineract-provider.jar` (does not require external Tomcat)
84
84
85
-
NOTE: we cannot upgrade to version 3.0.x of the MariaDB driver just yet; have to wait until 3.0.4 is out for a bug fix.
86
-
87
85
The tenants database connection details are configured [via environment variables (as with Docker container)](#instructions-to-run-using-docker-and-docker-compose), e.g. like this:
0 commit comments