Skip to content

Commit

Permalink
[FEAT/#302] 불필요한 코드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeyubin committed Dec 4, 2024
1 parent 314746f commit 6ea15cd
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 31 deletions.
13 changes: 0 additions & 13 deletions build-logic/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,6 @@ dependencies {
compileOnly(libs.compose.compiler.gradle.plugin)
}

gradlePlugin {
plugins {
register("androidHilt") {
id = "terning.android.hilt"
implementationClass = "com.terning.build-logic.HiltAndroidPlugin"
}
register("kotlinHilt") {
id = "terning.kotlin.hilt"
implementationClass = "com.terning.build-logic.HiltKotlinPlugin"
}
}
}

tasks.named("compileTestKotlin") {
dependsOn("clean")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,3 @@ internal fun Project.configureHiltKotlin() {
"ksp"(libs.findLibrary("hilt.compiler").get())
}
}

internal class HiltKotlinPlugin : Plugin<Project> {

override fun apply(target: Project) {
with(target) {
configureHiltKotlin()
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,4 @@ internal fun Project.configureSerializationAndroid() {
dependencies {
add("implementation", libs.findLibrary("kotlinx.serialization.json").get())
}
}

internal class SerializationAndroidPlugin : Plugin<Project> {

override fun apply(target: Project) {
with(target) {
configureSerializationAndroid()
}
}
}

0 comments on commit 6ea15cd

Please sign in to comment.