io.github.ehdrbs0318.lazy3j
Owner: Kang Donggyun
create java file from smart contract abi(json) file.
https://github.com/ehdrbs0318/lazy3j
Sources: https://github.com/ehdrbs0318/lazy3j
Version 1.0.4 (latest)
1.0.4
Created 08 March 2023.
create java file from smart contract abi(json) file.
Using the plugins DSL:
plugins {
id("io.github.ehdrbs0318.lazy3j") version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.ehdrbs0318.lazy3j:gradle-plugin:1.0.4")
}
}
apply(plugin = "io.github.ehdrbs0318.lazy3j")
Using the plugins DSL:
plugins {
id "io.github.ehdrbs0318.lazy3j" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.ehdrbs0318.lazy3j:gradle-plugin:1.0.4"
}
}
apply plugin: "io.github.ehdrbs0318.lazy3j"