MVN

com.increff.commons : commons-mysql

Maven & Gradle

Aug 24, 2023
0 stars

commons-sql · commons-mysql contains a collection of classes and methods that allow interaction with a database. Basic operations on DB such as creating and dropping databases, push/pull data, truncate or delete from a table, etc. are provided through various methods

<dependency>
    <groupId>com.increff.commons</groupId>
    <artifactId>commons-mysql</artifactId>
    <version>1.7</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.increff.commons : commons-mysql to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.7

All Versions

Choose a version of com.increff.commons : commons-mysql to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.7
commons-mysql-1.7
1.6
commons-mysql-1.6
1.5
commons-mysql-1.5

How to add a dependency to Maven

Add the following com.increff.commons : commons-mysql maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.increff.commons</groupId>
    <artifactId>commons-mysql</artifactId>
    <version>1.7</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.increff.commons : commons-mysql gradle dependency to your build.gradle file:

implementation 'com.increff.commons:commons-mysql:1.7'

Gradle Kotlin DSL: Add the following com.increff.commons : commons-mysql gradle kotlin dependency to your build.gradle.kts file:

implementation("com.increff.commons:commons-mysql:1.7")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.increff.commons : commons-mysql sbt scala dependency to your build.sbt file:

libraryDependencies += "com.increff.commons" % "commons-mysql" % "1.7"