software.amazon.smithy
Owner:
Smithy
This project integrates Smithy with Gradle. This plugin can build artifacts from Smithy models, generate JARs that contain Smithy models found in Java projects, and generate JARs that contain filtered *projections* of Smithy models.
https://github.com/awslabs/smithy
Sources: https://github.com/awslabs/smithy
Version 0.7.0 (latest)
Created 17 April 2023.
This project integrates Smithy with Gradle. This plugin can build artifacts from Smithy models, generate JARs that contain Smithy models found in Java projects, and generate JARs that contain filtered *projections* of Smithy models.
Add this plugin to your build using the plugins DSL:
plugins {
id("software.amazon.smithy") version "0.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("software.amazon.smithy:software.amazon.smithy.gradle.plugin:0.7.0") }
It can then be applied in the precompiled script plugin:plugins { id("software.amazon.smithy") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("software.amazon.smithy:software.amazon.smithy.gradle.plugin:0.7.0") } } apply(plugin = "software.amazon.smithy")
- Applying plugins to all subprojects .