Update paperweight and Gradle wrapper

This commit is contained in:
Jason Penilla 2024-12-03 20:28:39 -07:00
parent 5a362b8759
commit ef0670c2b7
No known key found for this signature in database
GPG key ID: 0E75A301420E48F8
3 changed files with 3 additions and 2 deletions

View file

@ -11,7 +11,7 @@ import kotlin.io.path.*
plugins { plugins {
java java
`maven-publish` `maven-publish`
id("io.papermc.paperweight.core") version "1.7.5" id("io.papermc.paperweight.core") version "1.7.6"
} }
allprojects { allprojects {

View file

@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
networkTimeout=10000 networkTimeout=10000
validateDistributionUrl=true validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME

View file

@ -36,6 +36,7 @@ rootProject.name = "paper"
for (name in listOf("Paper-API", "Paper-Server")) { for (name in listOf("Paper-API", "Paper-Server")) {
val projName = name.lowercase(Locale.ENGLISH) val projName = name.lowercase(Locale.ENGLISH)
include(projName) include(projName)
file(name).mkdirs()
findProject(":$projName")!!.projectDir = file(name) findProject(":$projName")!!.projectDir = file(name)
} }