-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
74 lines (65 loc) · 2.07 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
65
66
67
68
69
70
71
72
73
74
plugins {
id "com.github.johnrengelman.shadow" version "8.1.1"
id 'java'
}
group = 'io.github.rysefoxx.parent'
subprojects {
apply(plugin: 'java')
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
}
buildDir {
delete rootProject.buildDir
"$rootProject.buildDir/submodules/${project.name}"
}
}
allprojects {
version '0.0.1'
repositories {
mavenCentral()
maven {
url 'https://repo.papermc.io/repository/maven-public/'
}
maven {
url 'https://s01.oss.sonatype.org/content/groups/public/'
}
}
dependencies {
compileOnly("io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT")
annotationProcessor 'org.projectlombok:lombok:1.18.24'
compileOnly 'org.projectlombok:lombok:1.18.22'
compileOnly 'org.jetbrains:annotations:23.1.0'
compileOnly 'net.kyori:adventure-text-minimessage:4.14.0'
compileOnly 'io.github.rysefoxx.inventory:RyseInventory-Plugin:1.6.5.4-DEV'
}
}
dependencies {
implementation project(':Core')
implementation project(':Database')
implementation project(':Language')
implementation project(':Timer')
implementation project(':NoCraftingTable')
implementation project(':NoFallDamage')
implementation project(':NoJump')
implementation project(':NoArmor')
implementation project(':NoTools')
implementation project(':SpeedTen')
implementation project(':NoBlockBreak')
implementation project(':NoBlockPlace')
implementation project(':NoSneak')
implementation project(':NoSprint')
implementation project(':NoItemDrop')
implementation project(':NoExperience')
implementation project(':SingleUse')
implementation project(':SummedDamage')
implementation project(':SkeletonFollow')
implementation project(':WaterDamage')
implementation project(':OnlyDirt')
implementation project(':NoVillagerTrade')
}
shadowJar {
mergeServiceFiles()
}