generated from PurpurMC/Tentacles
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle.kts
167 lines (144 loc) · 4.79 KB
/
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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
import io.papermc.paperweight.tasks.CreatePaperclipJar
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
import java.nio.file.*
import java.util.*
import java.nio.file.Path
import java.nio.file.StandardCopyOption
import org.gradle.api.DefaultTask
plugins {
java
`maven-publish`
id("io.papermc.paperweight.patcher") version "1.7.4"
}
allprojects {
apply(plugin = "java")
apply(plugin = "maven-publish")
java {
toolchain {
languageVersion = JavaLanguageVersion.of(22)
}
}
tasks.compileJava {
options.compilerArgs.add("-Xlint:-deprecation")
options.isWarnings = false
}
}
val paperMavenPublicUrl = "https://repo.papermc.io/repository/maven-public/"
val mcVersion = "1.21.4"
subprojects {
tasks.withType<JavaCompile>().configureEach {
options.encoding = Charsets.UTF_8.name()
options.release = 22
}
tasks.withType<Javadoc> {
options.encoding = Charsets.UTF_8.name()
}
tasks.withType<ProcessResources> {
filteringCharset = Charsets.UTF_8.name()
}
tasks.withType<Test> {
testLogging {
showStackTraces = true
exceptionFormat = TestExceptionFormat.FULL
events(TestLogEvent.STANDARD_OUT)
}
}
repositories {
mavenCentral()
maven(paperMavenPublicUrl)
maven("https://jitpack.io")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
maven("https://maven.shedaniel.me/")
maven("https://maven.terraformersmc.com/releases/")
}
}
repositories {
mavenCentral()
jcenter()
maven(paperMavenPublicUrl) {
content {
onlyForConfigurations(configurations.paperclip.name)
}
}
}
dependencies {
remapper("net.fabricmc:tiny-remapper:0.10.3:fat")
decompiler("net.minecraftforge:forgeflower:2.0.627.2")
paperclip("io.papermc:paperclip:3.0.3")
compileOnly(files(libs.javaClass.superclass.protectionDomain.codeSource.location))
}
paperweight {
serverProject = project(":canvas-server")
remapRepo = paperMavenPublicUrl
decompileRepo = paperMavenPublicUrl
useStandardUpstream("purpur") {
url = github("PurpurMC", "Purpur")
ref = providers.gradleProperty("purpurCommit")
withStandardPatcher {
baseName("Purpur")
apiPatchDir = layout.projectDirectory.dir("patches/api")
apiOutputDir = layout.projectDirectory.dir("Canvas-API")
serverPatchDir = layout.projectDirectory.dir("patches/server")
serverOutputDir = layout.projectDirectory.dir("Canvas-Server")
}
patchTasks.register("generatedApi") {
isBareDirectory = true
upstreamDirPath = "paper-api-generator/generated"
patchDir = layout.projectDirectory.dir("patches/generated-api")
outputDir = layout.projectDirectory.dir("paper-api-generator/generated")
}
}
}
tasks.generateDevelopmentBundle {
apiCoordinates = "io.github.dueris:canvas-api"
libraryRepositories = listOf(
"https://repo.maven.apache.org/maven2/",
paperMavenPublicUrl,
"https://repo.purpurmc.org/snapshots",
)
}
tasks.register("printMinecraftVersion") {
doLast {
println(providers.gradleProperty("mcVersion").get().trim())
}
}
tasks.register<DefaultTask>("createCanvasServer") {
dependsOn(":createMojmapPaperclipJar")
doLast {
val shadowJar: CreatePaperclipJar = tasks.getByName<CreatePaperclipJar>("createMojmapPaperclipJar")
val targetJarDirectory: Path = projectDir.toPath().toAbsolutePath().resolve("target")
Files.createDirectories(targetJarDirectory)
Files.copy(
shadowJar.outputZip.get().asFile.toPath().toAbsolutePath(),
targetJarDirectory.resolve("canvas-launcher.jar"),
StandardCopyOption.REPLACE_EXISTING
)
}
}
tasks.register<Copy>("viewLauncherContents") {
from(zipTree(file("target/canvas-launcher.jar")))
into(file("target/view"))
}
publishing {
publications.create<MavenPublication>("devBundle") {
artifact(tasks.generateDevelopmentBundle) {
groupId = "io.github.dueris"
artifactId = "dev-bundle"
}
}
repositories {
maven {
name = "sonatype"
if (version.toString().endsWith("SNAPSHOT")) {
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
} else {
url = uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
}
credentials {
username=System.getenv("OSSRH_USERNAME")
password=System.getenv("OSSRH_PASSWORD")
}
}
}
}