com.hltech.judged.contracts.publisher
Owner: Mateusz Urbański
A plugin that helps you publish service expectations and capabilities to judge-dredd
https://github.com/HLTech/judge-d-contract-publisher-gradle-plugin
Sources: https://github.com/HLTech/judge-d-contract-publisher-gradle-plugin.git
Version 1.0.9 (latest)
Created 18 March 2020.
A plugin that helps you publish service expectations and capabilities to judge-dredd
Add this plugin to your build using the plugins DSL:
plugins {
id("com.hltech.judged.contracts.publisher") version "1.0.9"
}
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("com.hltech.judged.contracts.publisher:com.hltech.judged.contracts.publisher.gradle.plugin:1.0.9") }
It can then be applied in the precompiled script plugin:plugins { id("com.hltech.judged.contracts.publisher") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.hltech.judged.contracts.publisher:com.hltech.judged.contracts.publisher.gradle.plugin:1.0.9") } } apply(plugin = "com.hltech.judged.contracts.publisher")
- Applying plugins to all subprojects .