software.amazon.smithy.gradle.smithy-base
Owner:
Smithy
This plugin sets up the basic capabilities necessary for building Smithy models.Applying this plugin will create the basic source sets and configurations needed for smithyprojects. It will also create a smithy build task that will build and validate all the smithy models in the project.
Sources: https://github.com/smithy-lang/smithy-gradle-plugin
Version 0.9.0 (latest)
Created 31 October 2023.
This plugin sets up the basic capabilities necessary for building Smithy models.Applying this plugin will create the basic source sets and configurations needed for smithyprojects. It will also create a smithy build task that will build and validate all the smithy models in the project.
Using the plugins DSL:
plugins {
id("software.amazon.smithy.gradle.smithy-base") version "0.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("software.amazon.smithy:smithy-base-plugin:0.9.0")
}
}
apply(plugin = "software.amazon.smithy.gradle.smithy-base")
Using the plugins DSL:
plugins {
id "software.amazon.smithy.gradle.smithy-base" version "0.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "software.amazon.smithy:smithy-base-plugin:0.9.0"
}
}
apply plugin: "software.amazon.smithy.gradle.smithy-base"