MVN

io.magidc : balea-core

Maven & Gradle

Jul 24, 2019
0 stars

balea · Balea creates a proxy of javax.sql.DataSource, providing dynamic routing to multiple container based databases following a On Demand Data Source Access architecture. Docker is used as manager to create, start or stop database containers on demand and link correspondent data volumes. Thanks to this approach is possible to distribute data across multiple databases keeping active only the necessary ones in each moment maximizing the use of system resources. The distribution and management of data is hidden under the hood, any process that uses this data source interface (i.e. Hibernate) will perceive it as a single source of data. It makes possible for standard SQL database like Postgresql or MySQL to be maintained, backed up or versioned with simple file system operations as the data volumes are attached dynamically to the managed Docker containers. Docker integration allows also to manage database containers in remote hosts.

<dependency>
    <groupId>io.magidc</groupId>
    <artifactId>balea-core</artifactId>
    <version>1.0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.magidc : balea-core to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.1

All Versions

Choose a version of io.magidc : balea-core to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
balea-core-1.0.1
1.0
balea-core-1.0

How to add a dependency to Maven

Add the following io.magidc : balea-core maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.magidc</groupId>
    <artifactId>balea-core</artifactId>
    <version>1.0.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.magidc : balea-core gradle dependency to your build.gradle file:

implementation 'io.magidc:balea-core:1.0.1'

Gradle Kotlin DSL: Add the following io.magidc : balea-core gradle kotlin dependency to your build.gradle.kts file:

implementation("io.magidc:balea-core:1.0.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.magidc : balea-core sbt scala dependency to your build.sbt file:

libraryDependencies += "io.magidc" % "balea-core" % "1.0.1"