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

Created 13 December 2014.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.hidetake.slash"

Learn how to apply plugins to subprojects