-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
40 lines (28 loc) · 1.18 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
plugins {
id("java")
id("com.github.johnrengelman.shadow") version "7.1.2"
}
group = "pl.teksusik"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven { url = uri("https://papermc.io/repo/repository/maven-public/") }
maven { url = uri("https://storehouse.okaeri.eu/repository/maven-public/") }
}
dependencies {
compileOnly("com.destroystokyo.paper:paper-api:1.13.2-R0.1-SNAPSHOT")
implementation("com.zaxxer:HikariCP:5.0.1")
implementation("eu.okaeri:okaeri-configs-yaml-bukkit:4.0.4")
implementation("net.kyori:adventure-text-minimessage:4.11.0")
implementation("net.kyori:adventure-platform-bukkit:4.1.0")
implementation("at.favre.lib:bcrypt:0.9.0")
implementation("com.warrenstrange:googleauth:1.5.0")
}
tasks.named<ShadowJar>("shadowJar") {
relocate("com.zaxxer", "pl.teksusik.auther.libs.com.zaxxer")
relocate("eu.okaeri", "pl.teksusik.auther.libs.eu.okaeri")
relocate("net.kyori", "pl.teksusik.auther.libs.net.kyori")
relocate("at.favre", "pl.teksusik.auther.libs.at.favre")
relocate("com.warrenstrange", "pl.teksusik.auther.libs.com.warrenstrange")
}