lz4 / lz4-java

LZ4 compression for Java
Apache License 2.0
1.1k stars 253 forks source link

Release jar-no-jni artifact #148

Closed EvelynEZ closed 4 years ago

EvelynEZ commented 4 years ago

Is it possible to release a jar-no-jni build to maven artifactory? I am trying to avoid using any of the native (jni) instance and want a java-only library.

odaira commented 4 years ago

OK, let me try.... I'm thinking of lz4-pure-java as an artifact ID. Out of curiosity, in what use case do you need a java-only version?

EvelynEZ commented 4 years ago

That would be awesome! Thanks. My project is pure java and I try to avoid native library as I find it really hard to debug. Compared to making sure I do not accidentally use any of the native instance, it would be much better if there is a pure java build for this library.

odaira commented 4 years ago

Committed necessary changes. Will publish a java-only version from the next release.

EvelynEZ commented 4 years ago

Thank you very much!