-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
39 lines (32 loc) · 914 Bytes
/
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
plugins {
id("java")
}
group = "com.mefrreex.whitelister"
description = "whitelister"
version = "1.4.3"
java.sourceCompatibility = JavaVersion.VERSION_17
repositories {
mavenCentral()
maven("https://jitpack.io")
maven("https://repo.opencollab.dev/maven-releases/")
maven("https://repo.opencollab.dev/maven-snapshots/")
}
dependencies {
compileOnly("cn.nukkit:nukkit:1.0-SNAPSHOT")
compileOnly("com.github.MEFRREEX:FormConstructor:2.0.3")
compileOnly("com.github.MEFRREEX:JOOQConnector:1.0.1")
compileOnly("org.jooq:jooq:3.19.7")
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
tasks.withType<Javadoc> {
options.encoding = "UTF-8"
}
tasks.withType<ProcessResources> {
filesMatching("*.yml") {
expand(project.properties)
}
}