Skip to content

Latest commit

 

History

History
37 lines (35 loc) · 1.15 KB

File metadata and controls

37 lines (35 loc) · 1.15 KB

SQLWrapper

An API for handling SQL management via Java. Specifically made for Bukkit plugins.

Install with Jitpack.io

Add these lines to the <repositories> section in your pom.xml

<repository>
  <id>jitpack.io</id>
  <url>https://jitpack.io</url>
</repository>

Then add these lines in your <dependencies> section

<dependency>
  <groupId>com.github.RickySHD</groupId>
  <artifactId>SQLWrapper</artifactId>
  <version>LATEST</version>
</dependency>

Install with Github Packages Apache Maven

Add these lines to your pom.xml and follow this guide to get a PAT.

<dependency>
  <groupId>dev.rickyshd</groupId>
  <artifactId>sqlwrapper</artifactId>
  <version>LATEST</version>
</dependency>