Search Gradle plugins

uk.co.iotatech.gradle

Owner: Iotatech

Iotatech internal gradle plugin to unify configuration and simplify individual project settings.

https://bitbucket.org/iotaTechLtd/iota-gradle-plugin/src/master/README.md

Sources: https://bitbucket.org/iotaTechLtd/iota-gradle-plugin.git

Version 0.5.7 (latest)

Created 09 September 2022.

Iotatech internal gradle plugin to unify configuration and simplify individual project settings. Should be used in build.gradle file.

Using the plugins DSL:

plugins {
  id("uk.co.iotatech.gradle") version "0.5.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("uk.co.iotatech:iota-gradle-plugin:0.5.7")
  }
}

apply(plugin = "uk.co.iotatech.gradle")

Using the plugins DSL:

plugins {
  id "uk.co.iotatech.gradle" version "0.5.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "uk.co.iotatech:iota-gradle-plugin:0.5.7"
  }
}

apply plugin: "uk.co.iotatech.gradle"

Learn how to apply plugins to subprojects