-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
31 lines (26 loc) · 873 Bytes
/
build.gradle.kts
File metadata and controls
31 lines (26 loc) · 873 Bytes
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
plugins {
id("io.freefair.lombok") version "8.12.1"
}
group = "xyz.refinedev.api"
version = "1.0.0"
subprojects {
apply {
plugin("maven-publish")
plugin("io.freefair.lombok")
repositories {
mavenCentral()
mavenLocal()
maven("https://repo.aikar.co/content/groups/aikar/")
maven("https://repo.codemc.io/repository/maven-releases/")
maven("https://repo.codemc.io/repository/maven-snapshots/")
maven("https://papermc.io/repo/repository/maven-public/")
maven("https://maven.refinedev.xyz/public-repo")
maven("https://repo.minebench.de/")
}
tasks.withType(JavaCompile::class.java) {
options.encoding = "UTF-8"
options.release.set(8)
options.compilerArgs.add("-Xlint:-options")
}
}
}