This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
63 lines (54 loc) · 2.06 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* Copyright (c) 2023 Risu
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
plugins {
id("java")
id("application")
}
group = "io.github.risu729"
version = "1.1.0"
repositories {
mavenCentral()
maven {
url = uri("https://jitpack.io")
}
}
dependencies {
// https://mvnrepository.com/artifact/com.google.guava/guava
implementation("com.google.guava:guava:32.1.3-jre")
// https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine
implementation("com.github.ben-manes.caffeine:caffeine:3.1.8")
// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation("com.google.code.gson:gson:2.10.1")
// https://mvnrepository.com/artifact/org.projectlombok/lombok
compileOnly("org.projectlombok:lombok:1.18.30")
annotationProcessor("org.projectlombok:lombok:1.18.30")
// https://mvnrepository.com/artifact/org.jetbrains/annotations
compileOnly("org.jetbrains:annotations:24.0.1")
// https://mvnrepository.com/artifact/io.github.cdimascio/dotenv-java
implementation("io.github.cdimascio:dotenv-java:3.0.0")
// https://mvnrepository.com/artifact/net.dv8tion/JDA
implementation("net.dv8tion:JDA:5.0.0-beta.17") {
exclude(module = "opus-java")
}
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
implementation("ch.qos.logback:logback-classic:1.4.11")
// https://mvnrepository.com/artifact/net.lingala.zip4j/zip4j
implementation("net.lingala.zip4j:zip4j:2.11.5")
// https://mvnrepository.com/artifact/org.semver4j/semver4j
implementation("org.semver4j:semver4j:5.2.2")
// https://mvnrepository.com/artifact/com.deepl.api/deepl-java
implementation("com.deepl.api:deepl-java:1.4.0")
implementation("com.github.MeItsLars:MCPE-NBT:1.6")
}
application {
mainClass.set("io.github.risu729.erutcurts.Erutcurts")
}
tasks.withType(JavaCompile::class.java).configureEach {
options.encoding = "UTF-8"
options.compilerArgs.add("-Xlint:all")
}