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.4.0

0.4.0

Created 04 November 2015.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.jlouns:gradle-cross-platform-exec-plugin:0.4.0")
      }
    }
    
    apply(plugin = "com.github.jlouns.cpe")
  • Applying plugins to all subprojects .