jvm-brotli icon indicating copy to clipboard operation
jvm-brotli copied to clipboard

Lightweight, cross-platform Java library for the Brotli compression format

Results 11 jvm-brotli issues
Sort by recently updated
recently updated
newest added

This project has unclear licensing. You have mention the licensing of other code in your README. But you haven't properly declared a license for your project. I see you have...

It would be really nice if you could support apple silicon (ARM, aarch64) architecture. In this case it would be much more easy to work on a java project on...

Hi, Our Application generally seems to work fine with Windows 10 version, however on one particular machine having windows 10, the BrotliLoader.isBrotliAvailable method returns "true", however when trying to decode...

On Gradle it does not seem to be downloading the native library. I had to include following dependency explicitly to get it working on my machine ``` implementation group: 'com.nixxcode.jvmbrotli',...

Mojave 10.14.6 `java.lang.RuntimeException: java.io.FileNotFoundException: File /lib/darwin-x86-amd64/libbrotli.dylib was not found inside JAR. at com.nixxcode.jvmbrotli.common.BrotliLoader.loadBrotli(BrotliLoader.java:85) at com.nixxcode.jvmbrotli.common.BrotliLoader.isBrotliAvailable(BrotliLoader.java:63) at Test$Companion.main(Test.kt:15) at Test.main(Test.kt)`

Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies

I am running on JDK 11 on CentOS 7 from a docker container and maven. ``` java.lang.UnsatisfiedLinkError: 'java.nio.ByteBuffer com.nixxcode.jvmbrotli.enc.EncoderJNI.nativeCreate(long[])' at com.nixxcode.jvmbrotli.enc.EncoderJNI.nativeCreate(Native Method) at com.nixxcode.jvmbrotli.enc.EncoderJNI.access$000(EncoderJNI.java:15) at com.nixxcode.jvmbrotli.enc.EncoderJNI$Wrapper.(EncoderJNI.java:40) at com.nixxcode.jvmbrotli.enc.Encoder.(Encoder.java:78) at com.nixxcode.jvmbrotli.enc.BrotliOutputStream.(BrotliOutputStream.java:31)...

Should benchmark old IO stream methods (BrotliInputStream and BrotliOutputStream) against new IO byte channels. (BrotliEncoderChannel and BrotliDecoderChannel) It would be useful to know which of these I/O methods is faster...