搜索Gradle插件

software.amazon.smithy.gradle.smithy-base

所有者: Smithy

此插件配置了构建Smithy模型所需的基本功能。应用此插件将创建Smithy项目所需的基本源集和配置。它还将创建一个smithy构建任务,将对项目中所有的Smithy模型进行构建和验证。

https://smithy.io

源: https://github.com/smithy-lang/smithy-gradle-plugin

版本 1.1.0(最新版)

1.1.0

创建于2024年7月18日。

此插件配置了构建Smithy模型所需的基本功能。应用此插件将创建Smithy项目所需的基本源集和配置。它还将创建一个smithy构建任务,将对项目中所有的Smithy模型进行构建和验证。

使用plugins DSL

plugins {
  id("software.amazon.smithy.gradle.smithy-base") version "1.1.0"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("software.amazon.smithy.gradle:smithy-base:1.1.0")
  }
}

apply(plugin = "software.amazon.smithy.gradle.smithy-base")

使用plugins DSL

plugins {
  id "software.amazon.smithy.gradle.smithy-base" version "1.1.0"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "software.amazon.smithy.gradle:smithy-base:1.1.0"
  }
}

apply plugin: "software.amazon.smithy.gradle.smithy-base"

了解如何将插件应用于子项目