Search Gradle plugins

org.web3j.deploy

Gradle Plugin for managing deployments of Ethereum contracts and transactions.

https://web3j.io/

Sources: https://github.com/web3j/web3j-deployer

Version 4.8.8 (latest)

Created 01 November 2021.

Gradle Plugin for managing deployments of Ethereum contracts and transactions.

Using the plugins DSL:

plugins {
  id("org.web3j.deploy") version "4.8.8"
}

Using legacy plugin application:

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

apply(plugin = "org.web3j.deploy")

Using the plugins DSL:

plugins {
  id "org.web3j.deploy" version "4.8.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.web3j:web3j-deployer-plugin:4.8.8"
  }
}

apply plugin: "org.web3j.deploy"

Learn how to apply plugins to subprojects