forked from Era4FunMC/MyYsmNonFull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
67 lines (55 loc) · 1.42 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.8.21'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
group = 'gg.earthme.mysm'
version = '1.6-Beta'
archivesBaseName = 'MyYsm'
repositories {
mavenCentral()
maven {
name = 'papermc'
url = 'https://repo.papermc.io/repository/maven-public/'
}
maven {
url "https://repo.dmulloy2.net/repository/public/"
}
maven{
url "https://repo.viaversion.com"
}
maven {
url "https://repo.codemc.io/repository/maven-releases/"
}
}
dependencies {
compileOnly 'com.github.retrooper.packetevents:spigot:2.1.0'
compileOnly 'dev.folia:folia-api:1.20.1-R0.1-SNAPSHOT'
compileOnly 'io.netty:netty-all:4.1.86.Final'
implementation 'com.alibaba:fastjson:1.2.83'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1'
testImplementation 'org.jetbrains.kotlin:kotlin-test'
}
test {
useJUnitPlatform()
}
sourceSets {
main {
resources {
srcDirs(
layout.buildDirectory.dir("src/main/resources/ysm_data"),
layout.buildDirectory.dir("src/main/resources/lang")
)
}
}
}
shadowJar {
archiveBaseName.set(archivesBaseName + "-shadowed")
archiveVersion.set(version)
mergeServiceFiles()
}
compileKotlin {
kotlinOptions.jvmTarget = '17'
}
compileTestKotlin {
kotlinOptions.jvmTarget = '17'
}