Search Gradle plugins

Version 0.1

Created 17 July 2022.

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.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("fr.apteryx:gradle-javacpp-libextract:0.1")
  }
}

apply(plugin = "fr.apteryx.javacpp-libextract")

Using the plugins DSL:

plugins {
  id "fr.apteryx.javacpp-libextract" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "fr.apteryx:gradle-javacpp-libextract:0.1"
  }
}

apply plugin: "fr.apteryx.javacpp-libextract"

Learn how to apply plugins to subprojects