Added an offseted time checker, plus a unit test.
2 files changed
tree: 5a14b41fa0a9ba77e4bd443311a08a02c84a7a74
  1. gradle/
  2. src/
  3. .gitignore
  4. build.gradle
  5. gradlew
  6. gradlew.bat
  7. HEADER
  8. LICENSE
  9. README.md
  10. settings.gradle
README.md

Mifos I/O Core Test

Join the chat at https://gitter.im/mifos-initiative/mifos.io

This project is an umbrella for all Mifos I/O Core components.

Abstract

Mifos I/O is an application framework for digital financial services, a system to support nationwide and cross-national financial transactions and help to level and speed the creation of an inclusive, interconnected digital economy for every nation in the world.

Prerequisites

Runtime

Install Java 8 as described at https://docs.oracle.com/javase/8/docs/technotes/guides/install/install_overview.html.

MariaDB

Install MariaDB as described at https://mariadb.com/kb/en/mariadb/binary-packages/.

After installation you need to create the meta database:

mysql -u root -pmysql
CREATE DATABASE IF NOT EXISTS system_console;

Cassandra

Install Apache Cassandra as described at https://wiki.apache.org/cassandra/GettingStarted.

After installation you need to create the meta keyspace:

cqlsh
CREATE KEYSPACE IF NOT EXISTS system_console
  WITH REPLICATION = {
      'class' : 'SimpleStrategy',
      'replication_factor' : 3
  };

Multi-tenancy

Multi-tenancy is reached by providing separate data storage on a per tenant basis.

For every tenant a new database instance, and a new keyspace is created internally. A tenant aware component provides transparent access to these resources.

Versioning

The version numbers follow the Semantic Versioning scheme.

In addition to MAJOR.MINOR.PATCH the following postfixes are used to indicate the development state.

  • BUILD-SNAPSHOT - A release currently in development.
  • RELEASE - General availability indicates that this release is the best available version and is recommended for all usage.

The versioning layout is {MAJOR}.{MINOR}.{PATCH}-{INDICATOR}[.{PATCH}]. Only milestones and release candidates can have patch versions. Some examples:

1.2.3-BUILD-SNAPSHOT
1.3.5-RELEASE

License

See LICENSE file.