fr.apteryx.javacpp-libextract
Owner:
Hervé Guillemet
Extract from the jar dependencies the JavaCPP native libraries used by an application
https://github.com/HGuillemet/gradle-javacpp-libextract
Version 0.3 (latest)
Created 10 January 2023.
Extract from the jar dependencies the JavaCPP native libraries used by an application
Using the plugins DSL:
plugins {
id("fr.apteryx.javacpp-libextract") version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("fr.apteryx:gradle-javacpp-libextract:0.3")
}
}
apply(plugin = "fr.apteryx.javacpp-libextract")
Using the plugins DSL:
plugins {
id "fr.apteryx.javacpp-libextract" version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "fr.apteryx:gradle-javacpp-libextract:0.3"
}
}
apply plugin: "fr.apteryx.javacpp-libextract"