MVN

org.formix : btb

Maven & Gradle

Aug 31, 2015
0 stars

Bridge to Babylon · Bridge to Babylon is a lightweight object relational mapper. The main goal of this library is simplicity. It is intended to be used with POJOs without the need of external XML mapping definition or any kind of annotation. This approache makes Bridge to Babylon the best compromize between simplicity (no xml mapping) and light library footprint: You don't use annotations so you don't have to deploy Bridge to Babylon along with your jars on remote clients.

<dependency>
    <groupId>org.formix</groupId>
    <artifactId>btb</artifactId>
    <version>1.3.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.formix : btb to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.3.2

All Versions

Choose a version of org.formix : btb to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.3.x
btb-1.3.2

How to add a dependency to Maven

Add the following org.formix : btb maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.formix</groupId>
    <artifactId>btb</artifactId>
    <version>1.3.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.formix : btb gradle dependency to your build.gradle file:

implementation 'org.formix:btb:1.3.2'

Gradle Kotlin DSL: Add the following org.formix : btb gradle kotlin dependency to your build.gradle.kts file:

implementation("org.formix:btb:1.3.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.formix : btb sbt scala dependency to your build.sbt file:

libraryDependencies += "org.formix" % "btb" % "1.3.2"

Advertisement