搜索Gradle插件

org.web3j.deploy

所有者: Xavier Arias

Gradle Ethereum合约和事务部署插件。

https://web3j.io/

源代码: https://github.com/web3j/web3j-deployer

版本 4.8.8(最新版)

4.8.8

创建日期:2021年11月1日。

Gradle Ethereum合约和事务部署插件。

使用 plugins DSL

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

使用 旧的插件应用

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

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

使用 plugins DSL

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

使用 旧的插件应用

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

apply plugin: "org.web3j.deploy"

了解如何将插件应用到子项目