Skip to content

Commit

Permalink
Update plugin id (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
technoir42 authored Jul 31, 2024
1 parent d7af783 commit 5978a06
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions marathon-gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ plugins {


gradlePlugin {
(plugins) {
create("marathon-gradle-plugin") {
id = "marathon"
plugins {
create("marathonPlugin") {
id = "com.badoo.marathon"
implementationClass = "com.malinskiy.marathon.MarathonPlugin"
}
}
Expand Down
2 changes: 1 addition & 1 deletion sample/app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
id("marathon")
id("com.badoo.marathon")
}

android {
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ plugins {
id("com.android.application") apply false
id("com.android.library") apply false
id("org.jetbrains.kotlin.android") apply false
id("marathon")
id("com.badoo.marathon")
}
2 changes: 1 addition & 1 deletion sample/library/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
id("marathon")
id("com.badoo.marathon")
}

android {
Expand Down

0 comments on commit 5978a06

Please sign in to comment.