搜索 Gradle 插件

software.amazon.smithy.gradle.smithy-jar

所有者: Smithy

将构建的 Smithy 文件添加到现有的 jar 任务中,例如由 Java 或 Kotlin 插件创建的任务。smithy-jar 插件还添加了构建元数据和标签到 JAR 的 MANIFEST 中。当应用时,smithy-jar 插件应用 smithy-base 插件。

https://smithy.io

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

版本 1.1.0(最新版)

1.1.0

创建于 2024 年 7 月 18 日。

将构建的 Smithy 文件添加到现有的 jar 任务中,例如由 Java 或 Kotlin 插件创建的任务。smithy-jar 插件还添加了构建元数据和标签到 JAR 的 MANIFEST 中。当应用时,smithy-jar 插件应用 smithy-base 插件。

使用 plugins DSL

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

使用 旧插件应用方式

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

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

使用 plugins DSL

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

使用 旧插件应用方式

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

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

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