Skip to content

Commit

Permalink
Version 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbonnin committed Mar 30, 2024
1 parent 0b27677 commit dcc7e1f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Configure `nmcp` in your root project using the quick way:
```kotlin
// root/build.gradle[.kts]
plugins {
id("com.gradleup.nmcp").version("0.0.4")
id("com.gradleup.nmcp").version("0.0.5")
}

nmcp {
Expand Down Expand Up @@ -53,7 +53,7 @@ You can be 100% compatible by adding the plugin to each module you want to publi
```kotlin
//root/moduleN/build.gradle.kts
plugins {
id("com.gradleup.nmcp").version("0.0.4")
id("com.gradleup.nmcp").version("0.0.5")
}

nmcp {
Expand All @@ -66,7 +66,7 @@ And then list all modules in your root project:
```kotlin
//root/build.gradle.kts
plugins {
id("com.gradleup.nmcp").version("0.0.4")
id("com.gradleup.nmcp").version("0.0.5")
}

nmcp {
Expand All @@ -86,7 +86,7 @@ nmcp {

```kotlin
plugins {
id("com.gradleup.nmcp").version("0.0.4")
id("com.gradleup.nmcp").version("0.0.5")
}

// Create your publications
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ gradlePlugin {
}

group = "com.gradleup.nmcp"
version = "0.0.4"
version = "0.0.5"

publishing {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion tests/jvm/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("org.jetbrains.kotlin.jvm").version("1.9.22").apply(false)
id("com.gradleup.nmcp").version("0.0.4")
id("com.gradleup.nmcp").version("0.0.5")
}

val projectGroup = "net.mbonnin.tnmcp"
Expand Down
2 changes: 1 addition & 1 deletion tests/kmp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}

plugins {
id("com.gradleup.nmcp").version("0.0.4")
id("com.gradleup.nmcp").version("0.0.5")
}


Expand Down

0 comments on commit dcc7e1f

Please sign in to comment.