Search Gradle plugins

com.github.h0tk3y.gradle.eval

A Gradle plugin that evaluates a string passed from the command line in the project context

https://github.com/h0tk3y/gradle-eval-plugin

Sources: https://github.com/h0tk3y/gradle-eval-plugin.git

Version 0.0.1

Created 22 August 2018.

A Gradle plugin that evaluates a string passed from the command line in the project context

Using the plugins DSL:

plugins {
  id("com.github.h0tk3y.gradle.eval") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.h0tk3y.gradle.eval:gradle-eval:0.0.1")
  }
}

apply(plugin = "com.github.h0tk3y.gradle.eval")

Using the plugins DSL:

plugins {
  id "com.github.h0tk3y.gradle.eval" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.h0tk3y.gradle.eval:gradle-eval:0.0.1"
  }
}

apply plugin: "com.github.h0tk3y.gradle.eval"

Learn how to apply plugins to subprojects