MVN

io.github.eeroom : nalu

Maven & Gradle

Jan 05, 2022
0 stars

nalu · An ORM class library is used to create, read, update and delete single table data in the database. All these operations are completed by lambda. nalu translate lambda expressions into SQL statements, then execute queries, and then map data to entity objects, which is very different from traditional ORM such as mybatis.

<dependency>
    <groupId>io.github.eeroom</groupId>
    <artifactId>nalu</artifactId>
    <version>2.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.github.eeroom : nalu to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.4

All Versions

Choose a version of io.github.eeroom : nalu to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.4
nalu-2.4
2.3
nalu-2.3
2.2
nalu-2.2
2.1
nalu-2.1
2.0
nalu-2.0
1.0
nalu-1.0

How to add a dependency to Maven

Add the following io.github.eeroom : nalu maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.github.eeroom</groupId>
    <artifactId>nalu</artifactId>
    <version>2.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.github.eeroom : nalu gradle dependency to your build.gradle file:

implementation 'io.github.eeroom:nalu:2.4'

Gradle Kotlin DSL: Add the following io.github.eeroom : nalu gradle kotlin dependency to your build.gradle.kts file:

implementation("io.github.eeroom:nalu:2.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.github.eeroom : nalu sbt scala dependency to your build.sbt file:

libraryDependencies += "io.github.eeroom" % "nalu" % "2.4"

Advertisement