From adb876397d68a047c7acffe68f542ab3371b6886 Mon Sep 17 00:00:00 2001 From: Axel Date: Mon, 29 Apr 2024 16:15:42 +0200 Subject: [PATCH 1/4] Add xml highlighting to mojnag-mapped jar example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a496dd2..62933c1 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Then, add the following to your dependencies: ``` Or for mojang-mapped jar: -``` +```xml com.github.ZockerAxel CrazyAdvancementsAPI From b3ff7793e74f9e341aa203f8d020c32352a63885 Mon Sep 17 00:00:00 2001 From: Axel Date: Mon, 29 Apr 2024 16:18:10 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 62933c1..e8cf004 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ CrazyAdvancementsAPI is an API for creating and managing Advancements programmat ## Maven -Maven only works in API Version 2.1.17a and higher. +Maven with Jitpack only works in API Version 2.1.17a and higher. First, add the Jitpack Repository to your repositories ```xml @@ -37,17 +37,17 @@ Or for mojang-mapped jar: ``` -Replace VERSION with the Version you want, for example for v2.1.17a, you would use: +Replace VERSION with the Version you want, for example for v2.1.18, you would use: ```xml com.github.ZockerAxel CrazyAdvancementsAPI - v2.1.17a + v2.1.18 ``` ## Gradle -Gradle only works in API Version 2.1.17a and higher. +Gradle with Jitpack only works in API Version 2.1.17a and higher. First, add the Jitpack Repository to your repositories ```kts @@ -68,10 +68,10 @@ dependencies { } ``` -And replace VERSION with the Version you want, for exmaple for v2.1.17a, you would use: +And replace VERSION with the Version you want, for exmaple for v2.1.18, you would use: ```kts dependencies { - compileOnly("com.github.ZockerAxel:CrazyAdvancementsAPI:v2.1.17a") + compileOnly("com.github.ZockerAxel:CrazyAdvancementsAPI:v2.1.18") } ``` From d63e7cb4f2963216869cd5327750a32e44a99f91 Mon Sep 17 00:00:00 2001 From: Glicz <67753196+GliczDev@users.noreply.github.com> Date: Wed, 1 May 2024 20:03:22 +0200 Subject: [PATCH 3/4] Fix JitPack build --- jitpack.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jitpack.yml b/jitpack.yml index 6073cdb..85277bb 100644 --- a/jitpack.yml +++ b/jitpack.yml @@ -1,4 +1,4 @@ jdk: - - openjdk17 + - openjdk21 install: - - ./gradlew reobfJar publishToMavenLocal \ No newline at end of file + - ./gradlew reobfJar publishToMavenLocal From c9f7058327f0a3f60770e9e0a85676109cab341e Mon Sep 17 00:00:00 2001 From: Axel Date: Thu, 2 May 2024 01:24:20 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e8cf004..35a7e77 100644 --- a/README.md +++ b/README.md @@ -37,12 +37,12 @@ Or for mojang-mapped jar: ``` -Replace VERSION with the Version you want, for example for v2.1.18, you would use: +Replace VERSION with the Version you want, for example for v2.1.18a, you would use: ```xml com.github.ZockerAxel CrazyAdvancementsAPI - v2.1.18 + v2.1.18a ``` @@ -68,10 +68,10 @@ dependencies { } ``` -And replace VERSION with the Version you want, for exmaple for v2.1.18, you would use: +And replace VERSION with the Version you want, for exmaple for v2.1.18a, you would use: ```kts dependencies { - compileOnly("com.github.ZockerAxel:CrazyAdvancementsAPI:v2.1.18") + compileOnly("com.github.ZockerAxel:CrazyAdvancementsAPI:v2.1.18a") } ```