Search Gradle plugins

org.web3j.openapi

Gradle plugin providing tasks to generate Web3j-OpenAPI project from Solidity.

https://web3j.io/

Sources: https://github.com/web3j/web3j-openapi-gradle-plugin

Version 4.7.0

Created 10 October 2020.

Gradle plugin providing tasks to generate Web3j-OpenAPI project from Solidity.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.web3j.openapi") version "4.7.0"
}

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.openapi:org.web3j.openapi.gradle.plugin:4.7.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.web3j.openapi")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.web3j.openapi:org.web3j.openapi.gradle.plugin:4.7.0")
      }
    }
    
    apply(plugin = "org.web3j.openapi")
  • Applying plugins to all subprojects .