Skip to content

Commit

Permalink
ktlintFormat
Browse files Browse the repository at this point in the history
  • Loading branch information
mgroth0 committed Sep 30, 2024
1 parent 3775e74 commit ac8f23c
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package org.jetbrains.dataframe.gradle
import com.google.devtools.ksp.gradle.KspExtension
import org.gradle.api.Plugin
import org.gradle.api.Project
import org.gradle.api.artifacts.UnknownConfigurationException
import org.gradle.kotlin.dsl.getByType
import java.util.Properties

Expand Down Expand Up @@ -74,13 +73,17 @@ class ConvenienceSchemaGeneratorPlugin : Plugin<Project> {
target.configurations.named { it == cfg }.configureEach {
cfgsToAdd.remove(cfg)
dependencies.add(
target.dependencies.create("org.jetbrains.kotlinx.dataframe:symbol-processor-all:$preprocessorVersion")
target.dependencies.create(
"org.jetbrains.kotlinx.dataframe:symbol-processor-all:$preprocessorVersion",
),
)
}
}
target.gradle.projectsEvaluated {
cfgsToAdd.forEach { cfg ->
target.logger.warn("Configuration '$cfg' was never found. Please make sure the KSP plugin is applied.")
target.logger.warn(
"Configuration '$cfg' was never found. Please make sure the KSP plugin is applied.",
)
}
}

Expand Down

0 comments on commit ac8f23c

Please sign in to comment.