io.provenance.p8e.p8e-publish
Owner:
Stephen Cirner
Publishes P8eContract classes to Provenance P8e execution environments
https://github.com/provenance-io/p8e-gradle-plugin
Sources: https://github.com/provenance-io/p8e-gradle-plugin.git
Version 0.5.2-p8e-scope-sdk
Created 01 September 2021.
Publishes P8eContract classes to Provenance P8e execution environments
Add this plugin to your build using the plugins DSL:
plugins {
id("io.provenance.p8e.p8e-publish") version "0.5.2-p8e-scope-sdk"
}
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("io.provenance.p8e.p8e-publish:io.provenance.p8e.p8e-publish.gradle.plugin:0.5.2-p8e-scope-sdk") }
It can then be applied in the precompiled script plugin:plugins { id("io.provenance.p8e.p8e-publish") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.provenance.p8e.p8e-publish:io.provenance.p8e.p8e-publish.gradle.plugin:0.5.2-p8e-scope-sdk") } } apply(plugin = "io.provenance.p8e.p8e-publish")
- Applying plugins to all subprojects .