From 47de69a821c6e089b01187e93f4f916aceeeea85 Mon Sep 17 00:00:00 2001 From: NebelNidas Date: Thu, 22 Sep 2022 11:59:53 +0200 Subject: Add initial Mapping-IO export support --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index 08ccffe8..e2d5edd7 100644 --- a/build.gradle +++ b/build.gradle @@ -20,6 +20,8 @@ subprojects { implementation 'com.google.guava:guava:30.1.1-jre' implementation 'com.google.code.gson:gson:2.8.7' + implementation 'net.fabricmc:mapping-io:0.3.0' + testImplementation 'junit:junit:4.13.2' testImplementation 'org.hamcrest:hamcrest:2.2' } -- cgit v1.2.3 From 59aadb3c543da883acc1d29c7180cf889f03ba24 Mon Sep 17 00:00:00 2001 From: NebelNidas Date: Sat, 17 Jun 2023 11:50:56 +0200 Subject: Update to latest Mapping IO commit --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index e2d5edd7..e9fd4a25 100644 --- a/build.gradle +++ b/build.gradle @@ -20,7 +20,7 @@ subprojects { implementation 'com.google.guava:guava:30.1.1-jre' implementation 'com.google.code.gson:gson:2.8.7' - implementation 'net.fabricmc:mapping-io:0.3.0' + implementation 'net.fabricmc:mapping-io:0.5.0-SNAPSHOT' testImplementation 'junit:junit:4.13.2' testImplementation 'org.hamcrest:hamcrest:2.2' -- cgit v1.2.3 From 9cc9988a4d035a80b5535bc6126eac5dbe9652b2 Mon Sep 17 00:00:00 2001 From: NebelNidas Date: Mon, 9 Oct 2023 11:19:30 +0200 Subject: Update to latest Mapping-IO release --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index e9fd4a25..27ea120e 100644 --- a/build.gradle +++ b/build.gradle @@ -20,7 +20,7 @@ subprojects { implementation 'com.google.guava:guava:30.1.1-jre' implementation 'com.google.code.gson:gson:2.8.7' - implementation 'net.fabricmc:mapping-io:0.5.0-SNAPSHOT' + implementation 'net.fabricmc:mapping-io:0.5.0-beta.1' testImplementation 'junit:junit:4.13.2' testImplementation 'org.hamcrest:hamcrest:2.2' -- cgit v1.2.3 From dd11b478b3fba3a25b712f2c93221c0fefb5dbda Mon Sep 17 00:00:00 2001 From: NebelNidas Date: Wed, 15 Nov 2023 20:34:45 +0100 Subject: Update Mapping-IO to full release of 0.5 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index 27ea120e..3b90781a 100644 --- a/build.gradle +++ b/build.gradle @@ -20,7 +20,7 @@ subprojects { implementation 'com.google.guava:guava:30.1.1-jre' implementation 'com.google.code.gson:gson:2.8.7' - implementation 'net.fabricmc:mapping-io:0.5.0-beta.1' + implementation 'net.fabricmc:mapping-io:0.5.0' testImplementation 'junit:junit:4.13.2' testImplementation 'org.hamcrest:hamcrest:2.2' -- cgit v1.2.3 From 423f5cf98c6d419942301cca0c7c8169db8d4b30 Mon Sep 17 00:00:00 2001 From: NebelNidas Date: Thu, 16 Nov 2023 13:51:03 +0100 Subject: Fix importing mappings without field source descriptors --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index 3b90781a..8cbe0cd6 100644 --- a/build.gradle +++ b/build.gradle @@ -19,8 +19,9 @@ subprojects { dependencies { implementation 'com.google.guava:guava:30.1.1-jre' implementation 'com.google.code.gson:gson:2.8.7' - implementation 'net.fabricmc:mapping-io:0.5.0' + + compileOnly 'org.jetbrains:annotations:24.0.1' testImplementation 'junit:junit:4.13.2' testImplementation 'org.hamcrest:hamcrest:2.2' -- cgit v1.2.3