From ba4f5f0a3f55f2867dfb3a4dfc3a404868c36e42 Mon Sep 17 00:00:00 2001 From: Matt Date: Sun, 7 Jul 2024 21:29:46 +0100 Subject: [PATCH] fix format --- triumph-gui/3_x_x/1-started/setup.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/triumph-gui/3_x_x/1-started/setup.md b/triumph-gui/3_x_x/1-started/setup.md index 9d7219a..d18f38d 100644 --- a/triumph-gui/3_x_x/1-started/setup.md +++ b/triumph-gui/3_x_x/1-started/setup.md @@ -17,12 +17,12 @@ dependencies { } ``` - In order to include the lib in your project, you need to add `shadowJar` plugin `build.gradle.kts`. + To include the lib in your project, you need to add `shadowJar` plugin `build.gradle.kts`. Replace `[YOUR PACKAGE]` with your plugin's package, for example `me.myplugin.plugin`. ```kotlin -plugins { - id("com.github.johnrengelman.shadow") version "7.1.1" +plugins { + id("io.github.goooler.shadow") version "8.1.8" } shadowJar { @@ -30,7 +30,6 @@ shadowJar { } ``` +++ - +Gradle (Groovy)+ You need to add the dependency to your `build.gradle`. @@ -44,12 +43,12 @@ dependencies { } ``` - In order to include the lib in your project, you need to add `shadowJar` plugin `build.gradle`. + To include the lib in your project, you need to add `shadowJar` plugin `build.gradle`. Replace `[YOUR PACKAGE]`with your plugin's package, for example `me.myplugin.plugin`. ```groovy plugins { - id "com.github.johnrengelman.shadow" version "7.1.1" + id "io.github.goooler.shadow" version "8.1.8" } shadowJar { @@ -69,14 +68,14 @@ You need to add the dependency to your pom.xml. ``` - In order to include the framework in your project, you need to add the following to your `pom.xml`, in the plugins section. + To include the framework in your project, you need to add the following to your `pom.xml`, in the plugins section. Replace `[YOUR PACKAGE]`with your plugin's package, for example `me.myplugin.plugin`. ```xml org.apache.maven.plugins maven-shade-plugin - 3.2.4 + 3.6.0