-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
59 lines (51 loc) · 1.37 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
/*
* This file was generated by the Gradle 'init' task.
*
* This project uses @Incubating APIs which are subject to change.
*/
plugins {
`java-library`
`maven-publish`
id("io.freefair.lombok") version "8.11"
}
repositories {
mavenLocal()
maven {
url = uri("https://repo.maven.apache.org/maven2/")
}
}
dependencies {
api(libs.net.dv8tion.jda) {
exclude(module="opus-java")
}
api(libs.org.spongepowered.configurate.yaml)
api(libs.org.mongodb.mongodb.driver.reactivestreams)
api(libs.io.projectreactor.reactor.core)
api(libs.de.huxhorn.sulky.de.huxhorn.sulky.ulid)
api(libs.net.xyzsd.plurals.cldr.plural.rules)
api(libs.org.yaml.snakeyaml)
api(libs.org.reflections.reflections)
api(libs.org.slf4j.slf4j.api)
testImplementation(libs.org.junit.jupiter.junit.jupiter)
testImplementation(libs.ch.qos.logback.logback.classic)
compileOnly(libs.org.jetbrains.annotations)
}
group = "dev.qixils.quasicolon"
version = "1.0.0-SNAPSHOT"
description = "quasicord"
java.sourceCompatibility = JavaVersion.VERSION_21
java.targetCompatibility = JavaVersion.VERSION_21
java {
withSourcesJar()
}
publishing {
publications.create<MavenPublication>("maven") {
from(components["java"])
}
}
tasks.withType<JavaCompile>() {
options.encoding = "UTF8"
}
tasks.withType<Javadoc>() {
options.encoding = "UTF8"
}