diff options
author | Roman / Linnea Gräf <roman.graef@gmail.com> | 2023-06-27 19:50:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 19:50:08 +0200 |
commit | 838913f0d6e9f0b4f4cd2d5a2d59419fb5cbce66 (patch) | |
tree | 8545d7a94ddcffd88e3845fc10ff43c394810a6e /build.gradle.kts | |
parent | c18352ccb6b71b14961adab81032c44d7cc2b3d3 (diff) | |
download | NotEnoughUpdates-838913f0d6e9f0b4f4cd2d5a2d59419fb5cbce66.tar.gz NotEnoughUpdates-838913f0d6e9f0b4f4cd2d5a2d59419fb5cbce66.tar.bz2 NotEnoughUpdates-838913f0d6e9f0b4f4cd2d5a2d59419fb5cbce66.zip |
Fix crash in npc exporter when mode = null (#736)
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 9523c739..49c7f38c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -149,6 +149,7 @@ dependencies { isTransitive = false // Dependencies of mixin are already bundled by minecraft } annotationProcessor("net.fabricmc:sponge-mixin:0.11.4+mixin.0.8.5") + compileOnly("org.jetbrains:annotations:24.0.1") @Suppress("VulnerableLibrariesLocal") shadowApi("info.bliki.wiki:bliki-core:3.1.0") |