Skip to content

Commit

Permalink
Use gradle plugin version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gosar committed Dec 2, 2021
1 parent c740fdb commit 1ca3a3b
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Then, apply the Smithy Gradle Plugin in your `build.gradle.kts` file and run

```kotlin
plugins {
id("software.amazon.smithy").version("0.5.3")
id("software.amazon.smithy").version("0.6.0")
}
```

Expand Down
6 changes: 3 additions & 3 deletions docs/source/1.0/guides/building-models/gradle-plugin.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The following example configures a project to use the Smithy Gradle plugin:
.. code-tab:: kotlin

plugins {
id("software.amazon.smithy").version("0.5.3")
id("software.amazon.smithy").version("0.6.0")
}


Expand Down Expand Up @@ -138,7 +138,7 @@ The following example ``build.gradle.kts`` will build a Smithy model using a
.. code-tab:: kotlin

plugins {
id("software.amazon.smithy").version("0.5.3")
id("software.amazon.smithy").version("0.6.0")
}

// The SmithyExtension is used to customize the build. This example
Expand Down Expand Up @@ -184,7 +184,7 @@ build that uses the "external" projection.
.. code-tab:: kotlin

plugins {
id("software.amazon.smithy").version("0.5.3")
id("software.amazon.smithy").version("0.6.0")
}

buildscript {
Expand Down
2 changes: 1 addition & 1 deletion docs/source/1.0/guides/converting-to-openapi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ specification from a Smithy model using a buildscript dependency:
plugins {
java
id("software.amazon.smithy").version("0.5.3")
id("software.amazon.smithy").version("0.6.0")
}
buildscript {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Resource Schemas from a Smithy model :ref:`using a buildscript dependency
plugins {
java
id("software.amazon.smithy").version("0.5.3")
id("software.amazon.smithy").version("0.6.0")
}
buildscript {
Expand Down
4 changes: 2 additions & 2 deletions docs/source/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ Then create a new ``build.gradle.kts`` file:
.. code-block:: kotlin
plugins {
id("software.amazon.smithy").version("0.5.3")
id("software.amazon.smithy").version("0.6.0")
}
repositories {
Expand Down Expand Up @@ -831,7 +831,7 @@ The ``build.gradle.kts`` should have the following contents:
.. code-block:: kotlin
plugins {
id("software.amazon.smithy").version("0.5.3")
id("software.amazon.smithy").version("0.6.0")
}
repositories {
Expand Down
2 changes: 1 addition & 1 deletion smithy-aws-protocol-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/

plugins {
id "software.amazon.smithy" version "0.5.3"
id "software.amazon.smithy" version "0.6.0"
}

description = "Defines protocol tests for AWS HTTP protocols."
Expand Down
2 changes: 1 addition & 1 deletion smithy-validation-model/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/

plugins {
id "software.amazon.smithy" version "0.5.3"
id "software.amazon.smithy" version "0.6.0"
}

description = "This module provides support for validation in Smithy server SDKs"
Expand Down

0 comments on commit 1ca3a3b

Please sign in to comment.