[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"
[output.html]
git-repository-url = "https://gitlab.com/jfmods/LibJF"
git-repository-icon = "fa-gitlab"
edit-url-template = "https://gitlab.com/jfmods/LibJF/edit/master/{path}"
site-url = "https://jfmods.gitlab.io/LibJF"
git-repository-url = "https://git.frohnmeyer-wds.de/JfMods/LibJF"
git-repository-icon = "fa-git-alt"
edit-url-template = "https://git.frohnmeyer-wds.de/JfMods/LibJF/_edit/master/{path}"
site-url = "https://pages.frohnmeyer-wds.de/JfMods/LibJF/"

View File

@ -1,7 +1,7 @@
import io.gitlab.jfronny.scripts.*
plugins {
id("jfmod") version "1.1-SNAPSHOT"
id("jfmod") version "1.2-SNAPSHOT"
}
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:
```groovy
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:

View File

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

View File

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

View File

@ -1,6 +1,8 @@
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.libjf.gson.GsonAdapter;
import io.gitlab.jfronny.libjf.gson.HiddenAnnotationExclusionStrategy;

View File

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

View File

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

View File

@ -1,4 +1,5 @@
import io.gitlab.jfronny.scripts.*
import javax.lang.model.element.Modifier.*
plugins {
id("java-gradle-plugin")
@ -11,10 +12,7 @@ version = rootProject.version
repositories {
mavenCentral()
maven {
name = "JF Commons"
url = uri("https://gitlab.com/api/v4/projects/35745143/packages/maven")
}
maven("https://maven.frohnmeyer-wds.de/artifacts")
maven("https://maven.fabricmc.net/")
}
@ -43,7 +41,7 @@ sourceSets {
main {
generate(project) {
`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"],
"contact": {
"website": "https://jfronny.gitlab.io",
"repo": "https://gitlab.com/jfmods/libjf"
"repo": "https://git.frohnmeyer-wds.de/JfMods/LibJF"
},
"license": "MIT",
"environment": "*",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,7 +1,7 @@
pluginManagement {
repositories {
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()
}
}

View File

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