Skip to content

Commit 2746678

Browse files
committed
Add deprecation warning for swazzler plugin ID
1 parent c54533a commit 2746678

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

embrace-gradle-plugin/src/main/java/io/embrace/android/gradle/plugin/EmbraceGradlePlugin.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ class EmbraceGradlePlugin : Plugin<Project> {
2424
}
2525

2626
override fun apply(project: Project) {
27+
logger.warn(
28+
"Deprecation warning: in the next major release (8.0.0), the Embrace Gradle plugin ID will be renamed from " +
29+
"'io.embrace.swazzler' to 'io.embrace.gradle'. When upgrading to the next major release, you will need to " +
30+
"reference the new plugin ID: io.embrace.gradle"
31+
)
32+
2733
validateMinGradleVersion()
2834

2935
val extension = project.extensions.create(

0 commit comments

Comments
 (0)