Yuri Stiopin
Yuri Stiopin
I managed to make it work by using https://github.com/melix/jmh-gradle-plugin But i couldn't make jmh use `perf` module, so i copied perf to jmh module and it started working.
Yes, it generates file json files in cp1251 encoding(windows cyrillic) Howewer all my code files are in utf-8.
RuntimeResourcePackImpl: ```java private static byte[] serialize(Object object) { UnsafeByteArrayOutputStream ubaos = new UnsafeByteArrayOutputStream(); OutputStreamWriter writer = new OutputStreamWriter(ubaos); GSON.toJson(object, writer); try { writer.close(); } catch(IOException e) { throw new RuntimeException(e);...
I got it I'm on 1.18.2, so i am using ARP 0.5.7, which doesn't have the fix for it https://github.com/Devan-Kerman/ARRP/commit/832b788261e658dd886b929b0117f8bab6ace1c4#diff-0525a3f0d683be2e4e572c0caa32e5cd3d90c026fbb7a2cfee77fd4c29e0db55R525 It came as a crash fix for 1.19 So 0.5.7...