Search Gradle plugins

Version 0.0.1 (latest)

0.0.1

Created 02 December 2018.

Gradle plugin for THETA plug-in development.

Using the plugins DSL:

plugins {
  id("org.theta4j.gradle") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.theta4j:gradle:0.0.1")
  }
}

apply(plugin = "org.theta4j.gradle")

Using the plugins DSL:

plugins {
  id "org.theta4j.gradle" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.theta4j:gradle:0.0.1"
  }
}

apply plugin: "org.theta4j.gradle"

Learn how to apply plugins to subprojects