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
Sources: https://github.com/HGuillemet/gradle-javacpp-libextract
Version 0.6 (latest)
Created 22 January 2024.
                Extract from the jar dependencies the JavaCPP native libraries used by an application
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("fr.apteryx.javacpp-libextract") version "0.6"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("fr.apteryx.javacpp-libextract:fr.apteryx.javacpp-libextract.gradle.plugin:0.6") }It can then be applied in the precompiled script plugin:plugins { id("fr.apteryx.javacpp-libextract") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("fr.apteryx.javacpp-libextract:fr.apteryx.javacpp-libextract.gradle.plugin:0.6") } } apply(plugin = "fr.apteryx.javacpp-libextract")
- Applying plugins to all subprojects .