Search Gradle plugins

com.github.jlouns.cpe

Gradle plugin which provides an exec task that works on Unix or Windows-based systems.

https://github.com/jlouns/gradle-cross-platform-exec-plugin

Version 0.3.0

Created 19 June 2015.

Gradle plugin which provides an exec task that works on Unix or Windows-based systems

Using the plugins DSL:

plugins {
  id("com.github.jlouns.cpe") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.jlouns:gradle-cross-platform-exec-plugin:0.3.0")
  }
}

apply(plugin = "com.github.jlouns.cpe")

Using the plugins DSL:

plugins {
  id "com.github.jlouns.cpe" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.jlouns:gradle-cross-platform-exec-plugin:0.3.0"
  }
}

apply plugin: "com.github.jlouns.cpe"

Learn how to apply plugins to subprojects