MVN

software.amazon.smithy.gradle : smithy-jar

Maven & Gradle

Feb 12, 2024
27 stars

smithy-jar · Adds built Smithy files to an existing jar task such as that created by the Java or Kotlin plugins. The smithy-jar plugin also adds build metadata and tags to the JAR's MANIFEST. The smithy-jar plugin applies the smithy-base plugin when it is applied.

<dependency>
    <groupId>software.amazon.smithy.gradle</groupId>
    <artifactId>smithy-jar</artifactId>
    <version>0.10.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of software.amazon.smithy.gradle : smithy-jar to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.10.0

All Versions

Choose a version of software.amazon.smithy.gradle : smithy-jar to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.10.x
smithy-jar-0.10.0

How to add a dependency to Maven

Add the following software.amazon.smithy.gradle : smithy-jar maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>software.amazon.smithy.gradle</groupId>
    <artifactId>smithy-jar</artifactId>
    <version>0.10.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following software.amazon.smithy.gradle : smithy-jar gradle dependency to your build.gradle file:

implementation 'software.amazon.smithy.gradle:smithy-jar:0.10.0'

Gradle Kotlin DSL: Add the following software.amazon.smithy.gradle : smithy-jar gradle kotlin dependency to your build.gradle.kts file:

implementation("software.amazon.smithy.gradle:smithy-jar:0.10.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following software.amazon.smithy.gradle : smithy-jar sbt scala dependency to your build.sbt file:

libraryDependencies += "software.amazon.smithy.gradle" % "smithy-jar" % "0.10.0"