Skip to content

Commit

Permalink
Change Plugin ID: de.jjohannes.java-ecosystem-capabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
jjohannes committed May 13, 2022
1 parent 52a5993 commit 6f90f4a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Add this to the build file of your convention plugin's build

```
dependencies {
implementation("de.jjohannes.gradle:java-ecosystem-capabilities:0.3")
implementation("de.jjohannes.gradle:java-ecosystem-capabilities:0.4")
}
```

Expand All @@ -36,7 +36,7 @@ In your convention plugin, apply the plugin.
```
plugins {
...
id("de.jjohannes.gradle.java-ecosystem-capabilities")
id("de.jjohannes.java-ecosystem-capabilities")
}
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("de.jjohannes.gradle.java-ecosystem-capabilities")
id("de.jjohannes.java-ecosystem-capabilities")
}

buildscript {
Expand Down
4 changes: 2 additions & 2 deletions plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ plugins {
}

group = "de.jjohannes.gradle"
version = "0.3"
version = "0.4"

gradlePlugin {
plugins.create(project.name) {
id = "${project.group}.${project.name}"
id = "de.jjohannes.${project.name}"
implementationClass = "${project.group}.javaecosystem.capabilities.JavaEcosystemCapabilitiesPlugin"
displayName = "Adds Capabilities to well-known Components hosted on Maven Central."
description = "Adds Capabilities to well-known Components hosted on Maven Central."
Expand Down
2 changes: 1 addition & 1 deletion samples/sample-all/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("de.jjohannes.gradle.java-ecosystem-capabilities")
id("de.jjohannes.java-ecosystem-capabilities")
id("java-library")
}

Expand Down
2 changes: 1 addition & 1 deletion samples/sample-own-resolution-rules/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("de.jjohannes.gradle.java-ecosystem-capabilities")
id("de.jjohannes.java-ecosystem-capabilities")
id("java-library")
}

Expand Down

0 comments on commit 6f90f4a

Please sign in to comment.