org.theta4j.gradle
Owner: shiro
Gradle plugin for THETA plug-in development.
https://github.com/theta4j/theta-gradle-plugin
Sources: https://github.com/theta4j/theta-gradle-plugin.git
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"