Skip to content

Commit

Permalink
add version
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbonnin committed Feb 19, 2024
1 parent a04898e commit 9b82c10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ Create an `implementation` module for your plugin implementation and apply the `
```kotlin
// implementation/build.gradle.kts
plugins {
id("com.gradleup.gratatouille.implementation")
id("com.gradleup.gratatouille.implementation").version("0.0.1-SNAPSHOT")
}

dependencies {
// Add the gratatouille annotations
implementation("com.gradleup.gratatouille:gratatouille-core")
implementation("com.gradleup.gratatouille:gratatouille-core:0.0.1-SNAPSHOT")
// Add other dependencies
implementation("com.squareup:kotlinpoet:1.14.2")
implementation("org.ow2.asm:asm-commons:9.6")
Expand Down Expand Up @@ -75,7 +75,7 @@ The `gradle-plugin` module should depend on the Gradle API and apply the `com.gr
```kotlin
// implementation/build.gradle.kts
plugins {
id("com.gradleup.gratatouille.plugin")
id("com.gradleup.gratatouille.plugin").version("0.0.1-SNAPSHOT")
}

dependencies {
Expand Down

0 comments on commit 9b82c10

Please sign in to comment.