Skip to content

Installation

ZorT edited this page Apr 16, 2023 · 10 revisions

This guide requires you to have at least basic knowledge about what Build Tools are. Please read either Gradle or Maven guide first.

After you have the library installed, please visit Quick Start.

Gradle

Add this project to your build path using Gradle with JitPack as represented below. Download the sources from jitpack.

Code
repositories {
	maven { url = 'https://jitpack.io' }
}
dependencies {
	implementation 'com.github.ZorTik:AdvancedSQLClient:Tag'
}

Maven

You can also use Maven with JitPack as seen below. Download the sources from jitpack.

Code
<repositories>
	<repository>
		<id>jitpack.io</id>
		<url>https://jitpack.io</url>
	</repository>
</repositories>
<dependency>
	<groupId>com.github.ZorTik</groupId>
		<artifactId>AdvancedSQLClient</artifactId>
	<version>Version</version>
</dependency>

Let's learn the basics

Now, please head to Quick Start.

Clone this wiki locally