forked from okocraft/ImageOnMap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
39 lines (32 loc) · 818 Bytes
/
build.gradle
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'
id 'io.papermc.paperweight.userdev' version '1.5.7-SNAPSHOT'
id 'xyz.jpenilla.run-paper' version '2.1.0'
}
group 'fr.moribus'
version '5.1.1'
repositories {
mavenCentral()
mavenLocal()
maven { url = uri("https://papermc.io/repo/repository/maven-public/") }
maven { url = uri("https://hub.spigotmc.org/nexus/content/groups/public/") }
}
dependencies {
// paper userdev
paperweightDevelopmentBundle("io.papermc.paper:dev-bundle:1.20.1-R0.1-SNAPSHOT")
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
}
tasks {
// Configure reobfJar to run when invoking the build task
assemble {
dependsOn(reobfJar)
}
compileJava {
options.release.set(17)
}
runServer {
minecraftVersion("1.20.0")
}
}