org.ic4j.ic4j-gradle-plugin
Owner: Roman Dobrik
The IC4J Gradle Plugin allows for the installation and uninstallation of ICP canisters from Gradle scripts.
Sources: https://github.com/ic4j/ic4j-gradle-plugin
Version 0.7.1 (latest)
0.7.1
Created 25 June 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.7.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.ic4j:ic4j-gradle-plugin:0.7.1")
}
}
apply(plugin = "org.ic4j.ic4j-gradle-plugin")
Using the plugins DSL:
plugins {
id "org.ic4j.ic4j-gradle-plugin" version "0.7.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.ic4j:ic4j-gradle-plugin:0.7.1"
}
}
apply plugin: "org.ic4j.ic4j-gradle-plugin"