搜索Gradle插件

com.github.jlouns.cpe

Gradle插件,它提供一项在基于Unix或Windows的系统上运行的exec任务。

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

版本 0.5.0(最新版本)

0.5.0

创建于2017年1月3日。

Gradle插件,它提供一项在基于Unix或Windows的系统上运行的exec任务

使用插件DSL

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

使用旧版插件应用

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

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

使用插件DSL

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

使用旧版插件应用

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

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

了解如何将插件应用到子项目中