MVN

com.github.huangzhouhong : mybatis

Maven & Gradle

Feb 06, 2020
9 stars

mybatis · The MyBatis SQL mapper framework makes it easier to use a relational database with object-oriented applications. MyBatis couples objects with stored procedures or SQL statements using a XML descriptor or annotations. Simplicity is the biggest advantage of the MyBatis data mapper over object relational mapping tools.

<dependency>
    <groupId>com.github.huangzhouhong</groupId>
    <artifactId>mybatis</artifactId>
    <version>0.0.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.huangzhouhong : mybatis to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.0.2

All Versions

Choose a version of com.github.huangzhouhong : mybatis to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.0.x
mybatis-0.0.2
mybatis-0.0.1

How to add a dependency to Maven

Add the following com.github.huangzhouhong : mybatis maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.huangzhouhong</groupId>
    <artifactId>mybatis</artifactId>
    <version>0.0.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.huangzhouhong : mybatis gradle dependency to your build.gradle file:

implementation 'com.github.huangzhouhong:mybatis:0.0.2'

Gradle Kotlin DSL: Add the following com.github.huangzhouhong : mybatis gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.huangzhouhong:mybatis:0.0.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.huangzhouhong : mybatis sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.huangzhouhong" % "mybatis" % "0.0.2"