MVN

software.amazon.smithy.gradle : smithy-base

Maven & Gradle

Feb 12, 2024
27 stars

smithy-base · 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 Smithy projects. It will also create a smithy build task that will build and validate all the Smithy models in the project.

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

Latest Version

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

  • Latest Stable: 0.10.0

All Versions

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

Version Vulnerabilities Updated
0.10.x
smithy-base-0.10.0

How to add a dependency to Maven

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

<dependency>
    <groupId>software.amazon.smithy.gradle</groupId>
    <artifactId>smithy-base</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-base gradle dependency to your build.gradle file:

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

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

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

How to add a dependency to SBT Scala

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

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