Search Gradle plugins

org.ic4j.ic4j-gradle-plugin

The IC4J Gradle Plugin allows for the installation and uninstallation of ICP canisters from Gradle scripts.

https://docs.ic4j.com/

Sources: https://github.com/ic4j/ic4j-gradle-plugin

Version 0.6.19.7 (latest)

Created 15 March 2024.

The IC4J Gradle Plugin allows for the installation and uninstallation of ICP canisters from Gradle scripts.

Using the plugins DSL:

plugins {
  id("org.ic4j.ic4j-gradle-plugin") version "0.6.19.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.ic4j:ic4j-gradle-plugin:0.6.19.7")
  }
}

apply(plugin = "org.ic4j.ic4j-gradle-plugin")

Using the plugins DSL:

plugins {
  id "org.ic4j.ic4j-gradle-plugin" version "0.6.19.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.ic4j:ic4j-gradle-plugin:0.6.19.7"
  }
}

apply plugin: "org.ic4j.ic4j-gradle-plugin"

Learn how to apply plugins to subprojects