Search Gradle plugins

Version 0.2.3

Created 14 September 2015.

Extension to gradle native plugins

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

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

Versions
0.2.3 Beta release 2 patch 3
- Fix an issue that caused the copy library dependency tasks to not execute
when the component name had capital letters.

0.2.2 Beta release 2 patch 2
- Add support for google test executables - google test executables are treated
as normal executables

0.2.1 Beta release 2 patch 1
- Fix an issue that prevent using the native extension plugin with the
google-test plugin
- Minor documentation fix

0.2.0 Beta release 2
- Remove copy library dependency for shared linkage, since it's handled by
the native plugin

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.xykivo.nativeextension"

Learn how to apply plugins to subprojects