Skip to content

Commit

Permalink
[CHORE] #11 : 구현한 Plugin(Feature, Compose) 생성 및 참조
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongjaino committed Oct 4, 2023
1 parent 4cab946 commit 117e396
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id("com.wap.wapp.application")
id("com.wap.wapp.firebase")
id("com.wap.wapp.compose")
alias(libs.plugins.ktlint)
}

Expand Down
8 changes: 8 additions & 0 deletions build-logic/convention/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,13 @@ gradlePlugin {
id = "com.wap.wapp.firebase"
implementationClass = "com.wap.wapp.plugin.AndroidApplicationFirebasePlugin"
}
create("androidFeatureConvention") {
id = "com.wap.wapp.feature"
implementationClass = "com.wap.wapp.plugin.AndroidFeatureConventionPlugin"
}
create("androidCompose") {
id = "com.wap.wapp.compose"
implementationClass = "com.wap.wapp.plugin.AndroidComposePlugin"
}
}
}
2 changes: 1 addition & 1 deletion feature/auth/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("com.wap.wapp.library")
id("com.wap.wapp.feature")
}

android {
Expand Down

0 comments on commit 117e396

Please sign in to comment.