Update to new infrastructure
ci/woodpecker/manual/jfmod Pipeline was successful Details

This commit is contained in:
Johannes Frohnmeyer 2022-12-02 17:47:39 +01:00
parent 6b1c0517cd
commit e831f8fe01
Signed by: Johannes
GPG Key ID: E76429612C2929F4
6 changed files with 35 additions and 17 deletions

View File

@ -1,2 +0,0 @@
include:
- remote: 'https://jfmods.gitlab.io/scripts/jfmod.yml'

1
.woodpecker.yml Normal file
View File

@ -0,0 +1 @@
#link https://pages.frohnmeyer-wds.de/scripts/jfmod.yml

View File

@ -1,10 +1,15 @@
apply from: "https://jfmods.gitlab.io/scripts/gradle/v2.gradle" import io.gitlab.jfronny.scripts.*
plugins {
id("jfmod") version "1.2-SNAPSHOT"
id("io.gitlab.jfronny.libjf.libjf-config-compiler-plugin")
}
dependencies { dependencies {
modImplementation("io.gitlab.jfronny.libjf:libjf-web-v0:${project.libjf_version}") modImplementation("io.gitlab.jfronny.libjf:libjf-web-v0:${prop("libjf_version")}")
modImplementation("io.gitlab.jfronny.libjf:libjf-config-core-v1:${project.libjf_version}") modImplementation("io.gitlab.jfronny.libjf:libjf-config-core-v1:${prop("libjf_version")}")
// Dev env // Dev env
modLocalRuntime("io.gitlab.jfronny.libjf:libjf-config-reflect-v1:${project.libjf_version}") modLocalRuntime("io.gitlab.jfronny.libjf:libjf-config-reflect-v1:${prop("libjf_version")}")
modLocalRuntime("com.terraformersmc:modmenu:4.0.6") modLocalRuntime("com.terraformersmc:modmenu:4.0.6")
} }

View File

@ -1,16 +1,17 @@
# check these on https://fabricmc.net/develop/ # check these on https://fabricmc.net/develop/
minecraft_version=1.19.2 minecraft_version=1.19.2
yarn_mappings=build.8 yarn_mappings=build.24
loader_version=0.14.9 loader_version=0.14.11
maven_group=io.gitlab.jfronny maven_group=io.gitlab.jfronny
archives_base_name=dynres archives_base_name=dynres
fabric_version=0.60.0+1.19.2
libjf_version=3.0.2
modrinth_id=dynres modrinth_id=dynres
modrinth_required_dependencies=libjf modrinth_required_dependencies=libjf
modrinth_optional_dependencies=modmenu modrinth_optional_dependencies=modmenu
curseforge_id=407012 curseforge_id=407012
curseforge_required_dependencies=libjf curseforge_required_dependencies=libjf
curseforge_optional_dependencies=modmenu curseforge_optional_dependencies=modmenu
fabric_version=0.68.0+1.19.2
libjf_version=3.2.1

13
settings.gradle.kts Normal file
View File

@ -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 = "dynres"

View File

@ -3,13 +3,13 @@
"id": "dynres", "id": "dynres",
"version": "${version}", "version": "${version}",
"name": "DynRes", "name": "DynRes",
"description": "Host resourcepacks directly in-server", "description": "Host a resource pack directly on your server",
"authors": [ "authors": ["JFronny"],
"JFronny"
],
"contact": { "contact": {
"website": "https://jfronny.gitlab.io", "email": "projects.contact@frohnmeyer-wds.de",
"repo": "https://www.gitlab.com/jfmods/DynRes" "homepage": "https://jfronny.gitlab.io",
"issues": "https://git.frohnmeyer-wds.de/JfMods/DynRes/issues",
"sources": "https://git.frohnmeyer-wds.de/JfMods/DynRes"
}, },
"license": "MIT", "license": "MIT",
"icon": "assets/dynres/icon.png", "icon": "assets/dynres/icon.png",