io.neow3j.gradle-plugin
Owner: Guil. Sperb Machado
Gradle plugin to compile Java smart contracts to NeoVM
https://github.com/neow3j/neow3j
Sources: https://github.com/neow3j/neow3j
Version 3.2.0-SNAPSHOT
3.2.0-SNAPSHOT
Created 27 August 2020.
Gradle plugin to compile Java smart contracts to NeoVM
Using the plugins DSL:
plugins {
id("io.neow3j.gradle-plugin") version "3.2.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.neow3j:gradle-plugin:3.2.0-SNAPSHOT")
}
}
apply(plugin = "io.neow3j.gradle-plugin")
Using the plugins DSL:
plugins {
id "io.neow3j.gradle-plugin" version "3.2.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.neow3j:gradle-plugin:3.2.0-SNAPSHOT"
}
}
apply plugin: "io.neow3j.gradle-plugin"