Skip to content

Commit

Permalink
Make WorldGourd folia compatible, update to 1.20.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Joo200 committed Mar 31, 2024
1 parent 811dea6 commit a766c4e
Show file tree
Hide file tree
Showing 12 changed files with 294 additions and 239 deletions.
36 changes: 0 additions & 36 deletions build.gradle

This file was deleted.

32 changes: 32 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import org.apache.tools.ant.filters.ReplaceTokens

plugins {
java
}

group = "org.enginehub.worldgourd"
version = "1.2.0-SNAPSHOT"

repositories {
mavenCentral()
maven {
name = "papermc-repo"
url = uri("https://repo.papermc.io/repository/maven-public/")
}
maven {
name = "sonatype"
url = uri("https://oss.sonatype.org/content/groups/public/")
}
maven { url = uri("https://maven.enginehub.org/repo/") }
}

dependencies {
compileOnly("dev.folia:folia-api:1.20.4-R0.1-SNAPSHOT")
compileOnly("com.sk89q.worldedit:worldedit-bukkit:7.3.0")
}

tasks.named<Copy>("processResources") {
filesMatching("plugin.yml") {
expand("version" to version)
}
}
Empty file removed gradle.properties
Empty file.
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit a766c4e

Please sign in to comment.