Search Gradle plugins

org.hidetake.slash

Gradle Slash is a plugin which introduces slash operator as a path separator

https://github.com/int128/gradle-slash

Version 0.2.0 (latest)

Created 21 September 2016.

Introduce slash operator as a path separator

Using the plugins DSL:

plugins {
  id("org.hidetake.slash") version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.hidetake:gradle-slash:0.2.0")
  }
}

apply(plugin = "org.hidetake.slash")

Using the plugins DSL:

plugins {
  id "org.hidetake.slash" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.hidetake:gradle-slash:0.2.0"
  }
}

apply plugin: "org.hidetake.slash"

Learn how to apply plugins to subprojects