diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index c428712..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,2 +0,0 @@ -include: - - remote: 'https://jfmods.gitlab.io/scripts/jfmod.yml' diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..f2c1117 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1 @@ +#link https://pages.frohnmeyer-wds.de/scripts/jfmod.yml \ No newline at end of file diff --git a/build.gradle b/build.gradle deleted file mode 100644 index a6dc088..0000000 --- a/build.gradle +++ /dev/null @@ -1,11 +0,0 @@ -apply from: "https://jfmods.gitlab.io/scripts/gradle/v2.gradle" - -dependencies { - modImplementation("io.gitlab.jfronny.libjf:libjf-config-core-v1:${project.libjf_version}") - - // Dev env - modLocalRuntime("io.gitlab.jfronny.libjf:libjf-config-reflect-v1:${project.libjf_version}") - modLocalRuntime("io.gitlab.jfronny.libjf:libjf-config-ui-tiny-v1:${project.libjf_version}") - modLocalRuntime("io.gitlab.jfronny.libjf:libjf-devutil:${project.libjf_version}") - modLocalRuntime("com.terraformersmc:modmenu:4.0.6") -} \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 0000000..7f7c7bc --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,16 @@ +import io.gitlab.jfronny.scripts.* + +plugins { + id("jfmod") version "1.2-SNAPSHOT" + id("io.gitlab.jfronny.libjf.libjf-config-compiler-plugin") +} + +dependencies { + modImplementation("io.gitlab.jfronny.libjf:libjf-config-core-v1:${prop("libjf_version")}") + + // Dev env + modLocalRuntime("io.gitlab.jfronny.libjf:libjf-config-reflect-v1:${prop("libjf_version")}") + modLocalRuntime("io.gitlab.jfronny.libjf:libjf-config-ui-tiny-v1:${prop("libjf_version")}") + modLocalRuntime("io.gitlab.jfronny.libjf:libjf-devutil:${prop("libjf_version")}") + modLocalRuntime("com.terraformersmc:modmenu:4.1.1") +} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index c2f3d85..f1fe6f6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,12 +1,13 @@ # https://fabricmc.net/develop/ minecraft_version=1.19.2 -yarn_mappings=build.8 -loader_version=0.14.9 -maven_group=io.gitlab.jfronny -archives_base_name=YesCheat +yarn_mappings=build.24 +loader_version=0.14.11 -libjf_version=3.0.1 -fabric_version=0.60.0+1.19.2 +maven_group=io.gitlab.jfronny +archives_base_name=yescheat modrinth_id=yescheat -modrinth_required_dependencies=libjf \ No newline at end of file +modrinth_required_dependencies=libjf + +libjf_version=3.2.1 +fabric_version=0.68.0+1.19.2 diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 0000000..aa6aa98 --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,13 @@ +pluginManagement { + val libjf_version: String by settings + repositories { + maven("https://maven.fabricmc.net/") // FabricMC + maven("https://maven.frohnmeyer-wds.de/artifacts") // scripts + gradlePluginPortal() + } + plugins { + id("io.gitlab.jfronny.libjf.libjf-config-compiler-plugin") version libjf_version + } +} + +rootProject.name = "yescheat" diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index de6e657..feb9875 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -4,8 +4,13 @@ "version": "${version}", "name": "YesCheat", "description": "No more rubber-banding", - "authors": [], - "contact": {}, + "authors": ["JFronny"], + "contact": { + "email": "projects.contact@frohnmeyer-wds.de", + "homepage": "https://jfronny.gitlab.io", + "issues": "https://git.frohnmeyer-wds.de/JfMods/YesCheat/issues", + "sources": "https://git.frohnmeyer-wds.de/JfMods/YesCheat" + }, "license": "MIT", "icon": "assets/yescheat/icon.png", "environment": "*",