aboutsummaryrefslogtreecommitdiff
path: root/symbol-processing
diff options
context:
space:
mode:
authorAlex Beggs <sunyal@gmail.com>2021-08-16 19:06:06 -0400
committerlaszio <ting-yuan@users.noreply.github.com>2021-08-16 21:25:27 -0700
commitfdbcbe5af49427729442e245fce5a16b60989ea0 (patch)
tree26e507017252285964b81f08891eacaa29d3c7ed /symbol-processing
parent3363dc62c034fd78f853784158e0e789de81ab8a (diff)
downloadksp-fdbcbe5af49427729442e245fce5a16b60989ea0.tar.gz
Fix ktlint issues and apply ktlint to workflow
Diffstat (limited to 'symbol-processing')
-rw-r--r--symbol-processing/build.gradle.kts7
1 files changed, 6 insertions, 1 deletions
diff --git a/symbol-processing/build.gradle.kts b/symbol-processing/build.gradle.kts
index dedaf0ff..225e7d37 100644
--- a/symbol-processing/build.gradle.kts
+++ b/symbol-processing/build.gradle.kts
@@ -51,7 +51,12 @@ publishing {
// or simply depends on kotlin-compiler-embeddable so that relocation
// isn't needed, at the price of giving up composite build.
withXml {
- fun groovy.util.Node.addDependency(groupId: String, artifactId: String, version: String, scope: String = "runtime") {
+ fun groovy.util.Node.addDependency(
+ groupId: String,
+ artifactId: String,
+ version: String,
+ scope: String = "runtime"
+ ) {
appendNode("dependency").apply {
appendNode("groupId", groupId)
appendNode("artifactId", artifactId)