From b6715486c15933925d23110b0f1d82d2691d23ff Mon Sep 17 00:00:00 2001 From: Jacob Date: Wed, 6 May 2026 17:10:34 +0800 Subject: [PATCH] docs: add jdk version line and link to kotlin template --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b782618..df74c41 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Weave's Mod Template -This repository shows how to setup a [Gradle](https://gradle.org) project with the [Weave Gradle plugin](https://github.com/Weave-MC/Weave-Gradle) to develop mods for Weave. +This repository shows how to set up a [Gradle](https://gradle.org) project using the [Weave Gradle plugin](https://github.com/Weave-MC/Weave-Gradle) to develop mods for Weave. +This template uses Java, if you want to use Kotlin instead, check out the [Kotlin Template](https://github.com/Weave-MC/example-mod-kotlin). ## How to start? @@ -15,10 +16,12 @@ cd MyCoolMod ## How to build +Building requires a JDK of version 17 or higher. A good JDK distribution can be downloaded from [Adoptium.net](https://adoptium.net/temurin/releases?version=17&os=any&arch=any), but any OpenJDK compatible JDK suffices. + To build a Weave mod, you can simply run: ```bash ./gradlew build ``` -You can find the built jar files in `./build/libs/*.jar`. \ No newline at end of file +You can find the built jar files in `./build/libs/*.jar`.