org.moddedmc.wiki.toolkit
Owner: ModdedMC Wiki
Developer toolkit for the Modded Minecraft Wiki
https://github.com/sinytra/wikitoolkit
Sources: https://github.com/sinytra/wikitoolkit
Version 0.2.0
0.2.0
Created 19 November 2024.
Developer toolkit for the Modded Minecraft Wiki
Using the plugins DSL:
plugins {
id("org.moddedmc.wiki.toolkit") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.moddedmc.wiki:wiki-toolkit:0.2.0")
}
}
apply(plugin = "org.moddedmc.wiki.toolkit")
Using the plugins DSL:
plugins {
id "org.moddedmc.wiki.toolkit" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.moddedmc.wiki:wiki-toolkit:0.2.0"
}
}
apply plugin: "org.moddedmc.wiki.toolkit"