-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
37 lines (30 loc) · 957 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
plugins {
`java-library`
id("net.minecrell.plugin-yml.bukkit") version "0.6.0"
}
group = "com.rokucraft"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://repo.papermc.io/repository/maven-public/")
}
dependencies {
compileOnly("io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT")
compileOnly("com.elmakers.mine.bukkit:EffectLib:10.2")
compileOnly("org.spongepowered:configurate-yaml:4.1.2")
library("org.incendo:cloud-paper:2.0.0-beta.5")
implementation("org.jspecify:jspecify:0.3.0")
implementation("com.google.dagger:dagger:2.51")
annotationProcessor("com.google.dagger:dagger-compiler:2.51")
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
}
bukkit {
name = rootProject.name
version = project.version.toString()
main = "com.rokucraft.rokuemotes.RokuEmotesPlugin"
apiVersion = "1.19"
author = "Aikovdp"
website = "https://rokucraft.com"
}