-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
64 lines (52 loc) · 1.48 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* This file was generated by the Gradle 'init' task.
*
* This is a general purpose Gradle build.
* Learn how to create Gradle builds at https://guides.gradle.org/creating-new-gradle-builds/
*/
plugins {
id "ru.endlesscode.bukkitgradle" version "0.10.1"
}
compileJava {
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_17
}
sourceSets {
main.java.srcDirs = ['src/main']
main.resources.srcDirs = ['src/resources']
}
group "com.kronosad.minecraft"
description "Custom Crafting for DomainCraft"
version "1.7.5"
repositories {
papermc()
}
bukkit {
apiVersion = "1.20.1"
meta {
name.set("DomainCrafting")
main.set("com.kronosad.minecraft.domaincrafting.DomainCrafting")
description.set("Custom Crafting for DomainCraft")
authors.set(["russjr08", "michaelthesad"])
}
server {
// Core type. It can be 'spigot' or 'paper'
core = "paper"
// Accept EULA
eula = true
// Set online-mode flag
onlineMode = true
// Debug mode (listen 5005 port, if you use running from IDEA this option will be ignored)
debug = true
// Set server encoding (flag -Dfile.encoding)
encoding = "UTF-8"
// JVM arguments
javaArgs = ["-Xmx4G"]
// Bukkit arguments
bukkitArgs = ["nogui"]
}
}
dependencies {
// compileOnly(paperApi())
compileOnly 'io.papermc.paper:paper-api:1.20.1-R0.1-SNAPSHOT'
}