Skip to content

Commit

Permalink
Fix plugin ids
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Oct 8, 2024
1 parent f12115f commit 0c197bd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ We've restructured this project! Since its early days as a simple Gradle convent
- The primary gradle entry points are now `foundry {}`, but the previous `slack {}` entry points are left with deprecation `ReplaceWith` options.
- Gradle plugin IDs have migrated to `foundry.*` names.

| Old | New |
|-------------------------------|--------------------------|
| `slack.gradle.root` | `foundry.root` |
| `slack.gradle.base` | `foundry.base` |
| `slack.gradle.apk-versioning` | `foundry.apk-versioning` |
| Old | New |
|-----------------------------------|------------------------------------|
| `com.slack.gradle.root` | `com.slack.foundry.root` |
| `com.slack.gradle.base` | `com.slack.foundry.base` |
| `com.slack.gradle.apk-versioning` | `com.slack.foundry.apk-versioning` |

- Introduce new required `foundry.android.defaultNamespacePrefix` property for android projects. This is necessary for projects that don't define an `android.namespace` explicitly.

Expand Down
6 changes: 3 additions & 3 deletions platforms/gradle/foundry-gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ plugins {

gradlePlugin {
plugins.create("foundry-root") {
id = "foundry.root"
id = "com.slack.foundry.root"
implementationClass = "foundry.gradle.FoundryRootPlugin"
}
plugins.create("foundry-base") {
id = "foundry.base"
id = "com.slack.foundry.base"
implementationClass = "foundry.gradle.FoundryBasePlugin"
}
plugins.create("apkVersioning") {
id = "foundry.apk-versioning"
id = "com.slack.foundry.apk-versioning"
implementationClass = "foundry.gradle.ApkVersioningPlugin"
}
}
Expand Down

0 comments on commit 0c197bd

Please sign in to comment.