Update project directories/artifact IDs

This commit is contained in:
lexikiq
2022-01-13 14:27:11 -05:00
parent 6458303261
commit 0a615fc100
4 changed files with 11 additions and 9 deletions

View File

@@ -32,7 +32,7 @@ allprojects {
}
subprojects {
tasks.withType<JavaCompile>().configureEach {
tasks.withType<JavaCompile> {
options.encoding = Charsets.UTF_8.name()
options.release.set(17)
}
@@ -51,7 +51,7 @@ subprojects {
}
paperweight {
serverProject.set(project(":Parchment-Server"))
serverProject.set(project(":parchment-server"))
remapRepo.set("https://maven.fabricmc.net/")
decompileRepo.set("https://files.minecraftforge.net/maven/")
@@ -59,10 +59,10 @@ paperweight {
usePaperUpstream(providers.gradleProperty("paperRef")) {
withPaperPatcher {
apiPatchDir.set(layout.projectDirectory.dir("patches/api"))
apiOutputDir.set(layout.projectDirectory.dir("Parchment-API"))
apiOutputDir.set(layout.projectDirectory.dir("parchment-api"))
serverPatchDir.set(layout.projectDirectory.dir("patches/server"))
serverOutputDir.set(layout.projectDirectory.dir("Parchment-Server"))
serverOutputDir.set(layout.projectDirectory.dir("parchment-server"))
}
}
}