This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
McGamerZone/serverdata/build.gradle.kts
2021-07-16 14:35:13 -04:00

19 lines
351 B
Plaintext

plugins {
java
}
group = "zone.themcgamer"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
api(project(":commons"))
implementation("redis.clients:jedis:3.6.1")
implementation("com.zaxxer:HikariCP:3.4.5")
implementation("mysql:mysql-connector-java:8.0.23")
testCompile("junit", "junit", "4.12")
}