[docs] Fix references in libjf-config-compiler-plugin
ci/woodpecker/manual/docs Pipeline was successful Details
ci/woodpecker/manual/jfmod Pipeline failed Details

This commit is contained in:
Johannes Frohnmeyer 2022-11-25 14:57:40 +01:00
parent 5f86c67d14
commit e848ab9a47
Signed by: Johannes
GPG Key ID: E76429612C2929F4
22 changed files with 35 additions and 37 deletions

2
.woodpecker.yml Normal file
View File

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

View File

@ -10,7 +10,7 @@ description = "Documentation for the LibJF library"
build-dir = "public" build-dir = "public"
[output.html] [output.html]
git-repository-url = "https://gitlab.com/jfmods/LibJF" git-repository-url = "https://git.frohnmeyer-wds.de/JfMods/LibJF"
git-repository-icon = "fa-gitlab" git-repository-icon = "fa-git-alt"
edit-url-template = "https://gitlab.com/jfmods/LibJF/edit/master/{path}" edit-url-template = "https://git.frohnmeyer-wds.de/JfMods/LibJF/_edit/master/{path}"
site-url = "https://jfmods.gitlab.io/LibJF" site-url = "https://pages.frohnmeyer-wds.de/JfMods/LibJF/"

View File

@ -1,7 +1,7 @@
import io.gitlab.jfronny.scripts.* import io.gitlab.jfronny.scripts.*
plugins { plugins {
id("jfmod") version "1.1-SNAPSHOT" id("jfmod") version "1.2-SNAPSHOT"
} }
val nonModSubprojects: List<String> by extra val nonModSubprojects: List<String> by extra

View File

@ -14,7 +14,7 @@ and simplify building fabric mods. My own mods (including LibJF) use these.
Otherwise, you can add the repository as follows: Otherwise, you can add the repository as follows:
```groovy ```groovy
repositories { repositories {
maven { url 'https://gitlab.com/api/v4/projects/25805200/packages/maven' } maven { url 'https://maven.frohnmeyer-wds.de/artifacts' }
} }
``` ```
and include LibJF modules like this: and include LibJF modules like this:

View File

@ -8,13 +8,9 @@ settings.gradle:
```groovy ```groovy
pluginManagement { pluginManagement {
repositories { repositories {
maven {
name = 'JF Commons'
url = 'https://gitlab.com/api/v4/projects/35745143/packages/maven'
}
maven { maven {
name = 'LibJF' name = 'LibJF'
url = 'https://gitlab.com/api/v4/projects/25805200/packages/maven' url = 'https://maven.frohnmeyer-wds.de/artifacts'
} }
} }
} }
@ -27,7 +23,7 @@ plugins {
} }
repositories { repositories {
maven { url 'https://gitlab.com/api/v4/projects/25805200/packages/maven' } maven { url 'https://maven.frohnmeyer-wds.de/artifacts' }
} }
dependencies { dependencies {

View File

@ -1,7 +1,7 @@
# https://fabricmc.net/develop/ # https://fabricmc.net/develop/
minecraft_version=1.19.2 minecraft_version=1.19.2
yarn_mappings=build.8 yarn_mappings=build.28
loader_version=0.14.9 loader_version=0.14.10
maven_group=io.gitlab.jfronny.libjf maven_group=io.gitlab.jfronny.libjf
archive_base_name=libjf archive_base_name=libjf
@ -14,9 +14,9 @@ modrinth_optional_dependencies=fabric-api
curseforge_id=482600 curseforge_id=482600
curseforge_optional_dependencies=fabric-api curseforge_optional_dependencies=fabric-api
fabric_version=0.60.0+1.19.2 fabric_version=0.67.1+1.19.2
commons_version=2022.9.26+17-56-16 commons_version=1.0-SNAPSHOT
modmenu_version=4.0.6 modmenu_version=4.1.1
asm_version=9.4 asm_version=9.4
ant_version=1.10.12 ant_version=1.10.12

View File

@ -1,6 +1,8 @@
package io.gitlab.jfronny.libjf; package io.gitlab.jfronny.libjf;
import io.gitlab.jfronny.commons.log.*; import io.gitlab.jfronny.commons.log.Level;
import io.gitlab.jfronny.commons.log.Logger;
import io.gitlab.jfronny.commons.log.slf4j.SLF4JLogger;
import io.gitlab.jfronny.commons.serialize.gson.api.v1.GsonHolders; import io.gitlab.jfronny.commons.serialize.gson.api.v1.GsonHolders;
import io.gitlab.jfronny.libjf.gson.GsonAdapter; import io.gitlab.jfronny.libjf.gson.GsonAdapter;
import io.gitlab.jfronny.libjf.gson.HiddenAnnotationExclusionStrategy; import io.gitlab.jfronny.libjf.gson.HiddenAnnotationExclusionStrategy;

View File

@ -7,7 +7,7 @@
"license": "MIT", "license": "MIT",
"contact": { "contact": {
"website": "https://jfronny.gitlab.io", "website": "https://jfronny.gitlab.io",
"repo": "https://gitlab.com/jfmods/libjf" "repo": "https://git.frohnmeyer-wds.de/JfMods/LibJF"
}, },
"authors": [ "authors": [
"JFronny" "JFronny"

View File

@ -6,7 +6,7 @@
"authors": ["JFronny"], "authors": ["JFronny"],
"contact": { "contact": {
"website": "https://jfronny.gitlab.io", "website": "https://jfronny.gitlab.io",
"repo": "https://gitlab.com/jfmods/libjf" "repo": "https://git.frohnmeyer-wds.de/JfMods/LibJF"
}, },
"license": "MIT", "license": "MIT",
"environment": "server", "environment": "server",

View File

@ -1,4 +1,5 @@
import io.gitlab.jfronny.scripts.* import io.gitlab.jfronny.scripts.*
import javax.lang.model.element.Modifier.*
plugins { plugins {
id("java-gradle-plugin") id("java-gradle-plugin")
@ -11,10 +12,7 @@ version = rootProject.version
repositories { repositories {
mavenCentral() mavenCentral()
maven { maven("https://maven.frohnmeyer-wds.de/artifacts")
name = "JF Commons"
url = uri("https://gitlab.com/api/v4/projects/35745143/packages/maven")
}
maven("https://maven.fabricmc.net/") maven("https://maven.fabricmc.net/")
} }
@ -43,7 +41,7 @@ sourceSets {
main { main {
generate(project) { generate(project) {
`class`("io.gitlab.jfronny.libjf.config.plugin", "BuildMetadata") { `class`("io.gitlab.jfronny.libjf.config.plugin", "BuildMetadata") {
field("IS_RELEASE", project.hasProperty("release"), "public static final") field("IS_RELEASE", project.hasProperty("release"), PUBLIC, STATIC, FINAL)
} }
} }
} }

View File

@ -6,7 +6,7 @@
"authors": ["JFronny"], "authors": ["JFronny"],
"contact": { "contact": {
"website": "https://jfronny.gitlab.io", "website": "https://jfronny.gitlab.io",
"repo": "https://gitlab.com/jfmods/libjf" "repo": "https://git.frohnmeyer-wds.de/JfMods/LibJF"
}, },
"license": "MIT", "license": "MIT",
"environment": "*", "environment": "*",

View File

@ -7,7 +7,7 @@
"authors": ["JFronny"], "authors": ["JFronny"],
"contact": { "contact": {
"website": "https://jfronny.gitlab.io", "website": "https://jfronny.gitlab.io",
"repo": "https://gitlab.com/jfmods/libjf" "repo": "https://git.frohnmeyer-wds.de/JfMods/LibJF"
}, },
"license": "MIT", "license": "MIT",
"environment": "*", "environment": "*",

View File

@ -6,7 +6,7 @@
"authors": ["JFronny"], "authors": ["JFronny"],
"contact": { "contact": {
"website": "https://jfronny.gitlab.io", "website": "https://jfronny.gitlab.io",
"repo": "https://gitlab.com/jfmods/libjf" "repo": "https://git.frohnmeyer-wds.de/JfMods/LibJF"
}, },
"license": "MIT", "license": "MIT",
"environment": "*", "environment": "*",

View File

@ -6,7 +6,7 @@
"authors": ["JFronny"], "authors": ["JFronny"],
"contact": { "contact": {
"website": "https://jfronny.gitlab.io", "website": "https://jfronny.gitlab.io",
"repo": "https://gitlab.com/jfmods/libjf" "repo": "https://git.frohnmeyer-wds.de/JfMods/LibJF"
}, },
"license": "MIT", "license": "MIT",
"environment": "client", "environment": "client",

View File

@ -8,7 +8,7 @@
], ],
"contact": { "contact": {
"website": "https://jfronny.gitlab.io", "website": "https://jfronny.gitlab.io",
"repo": "https://gitlab.com/jfmods/libjf" "repo": "https://git.frohnmeyer-wds.de/JfMods/LibJF"
}, },
"license": "MIT", "license": "MIT",
"environment": "*", "environment": "*",

View File

@ -8,7 +8,7 @@
], ],
"contact": { "contact": {
"website": "https://jfronny.gitlab.io", "website": "https://jfronny.gitlab.io",
"repo": "https://gitlab.com/jfmods/libjf" "repo": "https://git.frohnmeyer-wds.de/JfMods/LibJF"
}, },
"license": "MIT", "license": "MIT",
"environment": "*", "environment": "*",

View File

@ -8,7 +8,7 @@
], ],
"contact": { "contact": {
"website": "https://jfronny.gitlab.io", "website": "https://jfronny.gitlab.io",
"repo": "https://gitlab.com/jfmods/libjf" "repo": "https://git.frohnmeyer-wds.de/JfMods/LibJF"
}, },
"license": "MIT", "license": "MIT",
"environment": "*", "environment": "*",

View File

@ -7,7 +7,7 @@
"license": "MIT", "license": "MIT",
"contact": { "contact": {
"website": "https://jfronny.gitlab.io", "website": "https://jfronny.gitlab.io",
"repo": "https://gitlab.com/jfmods/libjf" "repo": "https://git.frohnmeyer-wds.de/JfMods/LibJF"
}, },
"authors": [ "authors": [
"JFronny" "JFronny"

View File

@ -8,7 +8,7 @@
], ],
"contact": { "contact": {
"website": "https://jfronny.gitlab.io", "website": "https://jfronny.gitlab.io",
"repo": "https://gitlab.com/jfmods/libjf" "repo": "https://git.frohnmeyer-wds.de/JfMods/LibJF"
}, },
"license": "MIT", "license": "MIT",
"environment": "*", "environment": "*",

View File

@ -8,7 +8,7 @@
], ],
"contact": { "contact": {
"website": "https://jfronny.gitlab.io", "website": "https://jfronny.gitlab.io",
"repo": "https://gitlab.com/jfmods/libjf" "repo": "https://git.frohnmeyer-wds.de/JfMods/LibJF"
}, },
"license": "MIT", "license": "MIT",
"environment": "*", "environment": "*",

View File

@ -1,7 +1,7 @@
pluginManagement { pluginManagement {
repositories { repositories {
maven("https://maven.fabricmc.net/") // FabricMC maven("https://maven.fabricmc.net/") // FabricMC
maven("https://gitlab.com/api/v4/projects/31672498/packages/maven") // scripts maven("https://maven.frohnmeyer-wds.de/artifacts") // scripts
gradlePluginPortal() gradlePluginPortal()
} }
} }

View File

@ -9,7 +9,7 @@
], ],
"contact": { "contact": {
"website": "https://jfronny.gitlab.io", "website": "https://jfronny.gitlab.io",
"repo": "https://gitlab.com/jfmods/libjf" "repo": "https://git.frohnmeyer-wds.de/JfMods/LibJF"
}, },
"license": "MIT", "license": "MIT",
"icon": "assets/libjf/icon.png", "icon": "assets/libjf/icon.png",