jfuzzy-native-parent

The native parent pom for the libfuzzy JNI bindings.

Лицензия

Лицензия

Категории

Категории

Native Инструменты разработки
Группа

Группа

io.github.russellfrancis
Идентификатор

Идентификатор

jfuzzy-native-parent
Последняя версия

Последняя версия

1.0.0
Дата

Дата

Тип

Тип

pom
Описание

Описание

jfuzzy-native-parent
The native parent pom for the libfuzzy JNI bindings.

Скачать jfuzzy-native-parent

Имя Файла Размер
jfuzzy-native-parent-1.0.0.pom 1 KB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/io.github.russellfrancis/jfuzzy-native-parent/ -->
<dependency>
    <groupId>io.github.russellfrancis</groupId>
    <artifactId>jfuzzy-native-parent</artifactId>
    <version>1.0.0</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/io.github.russellfrancis/jfuzzy-native-parent/
implementation 'io.github.russellfrancis:jfuzzy-native-parent:1.0.0'
// https://jarcasting.com/artifacts/io.github.russellfrancis/jfuzzy-native-parent/
implementation ("io.github.russellfrancis:jfuzzy-native-parent:1.0.0")
'io.github.russellfrancis:jfuzzy-native-parent:pom:1.0.0'
<dependency org="io.github.russellfrancis" name="jfuzzy-native-parent" rev="1.0.0">
  <artifact name="jfuzzy-native-parent" type="pom" />
</dependency>
@Grapes(
@Grab(group='io.github.russellfrancis', module='jfuzzy-native-parent', version='1.0.0')
)
libraryDependencies += "io.github.russellfrancis" % "jfuzzy-native-parent" % "1.0.0"
[io.github.russellfrancis/jfuzzy-native-parent "1.0.0"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

Build Status

jfuzzy

JNI bindings for the libfuzzy shared library, allowing efficient computation and comparison of ssdeep hashes from within Java applications.

Compilation

In order to compile this library, you will need the following tools installed on your system.

Install prerequisites on Debian

sudo apt-get install libfuzzy-dev build-essential openjdk-8-jdk maven

Compile JFuzzy

mvn install site

Usage

After a successful build, there will be two artifacts which are generated and necessary to use the JFuzzy JNI bindings. The first is /jfuzzy/target/jfuzzy-.jar, this contains the Java bindings and must be on the classpath of the Java application consuming the library. The second is /jfuzzy-native/linux/target/libfuzzy.so which is the native portion of the bindings. This shared library must be installed on the LD_LIBRARY_PATH used by Java.

An easy way to ensure that it is on the path is to pass the following system property to the JVM when it starts

java -Djava.library.path=/my/path/to/shared/lib -jar app.jar

Alternatively dropping it into /usr/local/lib or /usr/lib will also work in most cases.

Версии библиотеки

Версия
1.0.0