com.github.jlouns.cpe
Owner: Jonathan Lounsbury
Gradle plugin which provides an exec task that works on Unix or Windows-based systems.
https://github.com/jlouns/gradle-cross-platform-exec-plugin
Using the plugins DSL:
plugins {
id("com.github.jlouns.cpe") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.jlouns:gradle-cross-platform-exec-plugin:0.1.0")
}
}
apply(plugin = "com.github.jlouns.cpe")
Using the plugins DSL:
plugins {
id "com.github.jlouns.cpe" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.jlouns:gradle-cross-platform-exec-plugin:0.1.0"
}
}
apply plugin: "com.github.jlouns.cpe"