MVN

io.github.hbaykuslar : simple-query-builder

Maven & Gradle

Sep 11, 2023
5 stars

simple-query-builder · This project aims to provide a simple Java SQL builder which makes it easier to create dynamic SQL queries without any need to use java StringBuilder.

<dependency>
    <groupId>io.github.hbaykuslar</groupId>
    <artifactId>simple-query-builder</artifactId>
    <version>0.1.17</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.github.hbaykuslar : simple-query-builder to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.1.17

All Versions

Choose a version of io.github.hbaykuslar : simple-query-builder to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.1.x
simple-query-builder-0.1.17

How to add a dependency to Maven

Add the following io.github.hbaykuslar : simple-query-builder maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.github.hbaykuslar</groupId>
    <artifactId>simple-query-builder</artifactId>
    <version>0.1.17</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.github.hbaykuslar : simple-query-builder gradle dependency to your build.gradle file:

implementation 'io.github.hbaykuslar:simple-query-builder:0.1.17'

Gradle Kotlin DSL: Add the following io.github.hbaykuslar : simple-query-builder gradle kotlin dependency to your build.gradle.kts file:

implementation("io.github.hbaykuslar:simple-query-builder:0.1.17")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.github.hbaykuslar : simple-query-builder sbt scala dependency to your build.sbt file:

libraryDependencies += "io.github.hbaykuslar" % "simple-query-builder" % "0.1.17"