org.web3j.deploy
Owner:
Xavier Arias
Gradle Plugin for managing deployments of Ethereum contracts and transactions.
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.web3j.deploy") version "4.8.8"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.web3j.deploy:org.web3j.deploy.gradle.plugin:4.8.8") }
It can then be applied in the precompiled script plugin:plugins { id("org.web3j.deploy") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.web3j.deploy:org.web3j.deploy.gradle.plugin:4.8.8") } } apply(plugin = "org.web3j.deploy")
- Applying plugins to all subprojects .