Search Gradle plugins

Version 0.1.1

Created 24 August 2015.

Extension to gradle native plugins

This plugin extends the gradle plugins for native code, it adds the following
- Copy shared libraries depenencies as part of executable install
- Add pre/post compile tasks
- Add pre/post link tasks
- Add pre/post install tasks

Limitations
- For the pluing to work correctly the shared library and executable must have
the same variants

Versions
0.1.1 Beta release patch 1
- Minor fix to plugin description

0.1.0 Beta release

0.0.0 Development test

Using the plugins DSL:

plugins {
  id("com.xykivo.nativeextension") version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.xykivo.nativeextension:native_extension:0.1.1")
  }
}

apply(plugin = "com.xykivo.nativeextension")

Using the plugins DSL:

plugins {
  id "com.xykivo.nativeextension" version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.xykivo.nativeextension:native_extension:0.1.1"
  }
}

apply plugin: "com.xykivo.nativeextension"

Learn how to apply plugins to subprojects