MVN

io.github.febialfarabi : sumatera

Maven & Gradle

Feb 17, 2021
0 stars

Sumatera · @Sumatera Model converter from ORM class to regular pojo class, the ORM term is a modelling class that doesn't like regular pojo, such like @Entity from JPA/Hibernate and so on. It can be used for mapping regular object, post data in request body where you cannot put ORM class directly in a parameter, or you cannot convert to json directly, or any other problem regarding it. You don't need anymore to create duplicate Dto / Pojo class which represent ORM class, just write your ORM class and annotate it with @Sumatera, then the regular pojo class would be generated for you.

<dependency>
    <groupId>io.github.febialfarabi</groupId>
    <artifactId>sumatera</artifactId>
    <version>1.0.22</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

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

  • Latest Stable: 1.0.22

All Versions

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

Version Vulnerabilities Updated
1.0.x
sumatera-1.0.22
sumatera-1.0.21
sumatera-1.0.17
sumatera-1.0.16
sumatera-1.0.14
sumatera-1.0.13
sumatera-1.0.12
sumatera-1.0.11
sumatera-1.0.10
sumatera-1.0.9
sumatera-1.0.8
sumatera-1.0.7
sumatera-1.0.6
sumatera-1.0.3

How to add a dependency to Maven

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

<dependency>
    <groupId>io.github.febialfarabi</groupId>
    <artifactId>sumatera</artifactId>
    <version>1.0.22</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'io.github.febialfarabi:sumatera:1.0.22'

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

implementation("io.github.febialfarabi:sumatera:1.0.22")

How to add a dependency to SBT Scala

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

libraryDependencies += "io.github.febialfarabi" % "sumatera" % "1.0.22"

Advertisement