org.web3j.deploy
Owner:
Xavi Arias SeguĂ
Gradle Plugin for managing deployments of Ethereum contracts and transactions.
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 "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 = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.web3j:web3j-deployer-plugin:4.8.8")
}
}
apply(plugin = "org.web3j.deploy")