Skip to content

Commit ac8f23c

Browse files
committed
ktlintFormat
1 parent 3775e74 commit ac8f23c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

plugins/dataframe-gradle-plugin/src/main/kotlin/org/jetbrains/dataframe/gradle/ConvenienceSchemaGeneratorPlugin.kt

+6-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package org.jetbrains.dataframe.gradle
33
import com.google.devtools.ksp.gradle.KspExtension
44
import org.gradle.api.Plugin
55
import org.gradle.api.Project
6-
import org.gradle.api.artifacts.UnknownConfigurationException
76
import org.gradle.kotlin.dsl.getByType
87
import java.util.Properties
98

@@ -74,13 +73,17 @@ class ConvenienceSchemaGeneratorPlugin : Plugin<Project> {
7473
target.configurations.named { it == cfg }.configureEach {
7574
cfgsToAdd.remove(cfg)
7675
dependencies.add(
77-
target.dependencies.create("org.jetbrains.kotlinx.dataframe:symbol-processor-all:$preprocessorVersion")
76+
target.dependencies.create(
77+
"org.jetbrains.kotlinx.dataframe:symbol-processor-all:$preprocessorVersion",
78+
),
7879
)
7980
}
8081
}
8182
target.gradle.projectsEvaluated {
8283
cfgsToAdd.forEach { cfg ->
83-
target.logger.warn("Configuration '$cfg' was never found. Please make sure the KSP plugin is applied.")
84+
target.logger.warn(
85+
"Configuration '$cfg' was never found. Please make sure the KSP plugin is applied.",
86+
)
8487
}
8588
}
8689

0 commit comments

Comments
 (0)