Skip to content

Commit

Permalink
Bump io.github.pdvrieze.xmlutil:serialization-jvm from 0.86.3 to 0.90…
Browse files Browse the repository at this point in the history
….1 (#393)

* Bump io.github.pdvrieze.xmlutil:serialization-jvm from 0.86.3 to 0.90.1

Bumps [io.github.pdvrieze.xmlutil:serialization-jvm](https://github.com/pdvrieze/xmlutil) from 0.86.3 to 0.90.1.
- [Release notes](https://github.com/pdvrieze/xmlutil/releases)
- [Changelog](https://github.com/pdvrieze/xmlutil/blob/master/Changelog.md)
- [Commits](pdvrieze/xmlutil@v0.86.3...v0.90.1)

---
updated-dependencies:
- dependency-name: io.github.pdvrieze.xmlutil:serialization-jvm
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update kotlin serialization compiler to 2.0.20-RC2

* Task is not incremental

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hfhbd <22521688+hfhbd@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and hfhbd committed Aug 17, 2024
1 parent d12e5f1 commit fb32c2f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions gradle/build-logic/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
plugins {
`kotlin-dsl`
kotlin("plugin.serialization") version embeddedKotlinVersion
alias(libs.plugins.kotlin.plugin.serialization)
}

dependencies {
implementation(libs.plugins.kotlin.js.toDep())
implementation(libs.plugins.kotlin.plugin.compose.toDep())
implementation("io.github.pdvrieze.xmlutil:serialization-jvm:0.86.3") {
implementation("io.github.pdvrieze.xmlutil:serialization-jvm:0.90.1") {
exclude("io.github.pdvrieze.xmlutil", "core")
}
implementation("io.github.pdvrieze.xmlutil:core-jvm:0.86.3")
implementation("io.github.pdvrieze.xmlutil:core-jdk:0.90.1")

testImplementation(kotlin("test"))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import java.io.*

@CacheableTask
abstract class ConvertSvg : DefaultTask() {
@get:Incremental
@get:PathSensitive(PathSensitivity.NAME_ONLY)
@get:InputDirectory
abstract val icons: DirectoryProperty
Expand All @@ -30,7 +29,6 @@ abstract class ConvertSvg : DefaultTask() {

icons.asFileTree.forEachIndexed { index, file ->
val name = file.nameWithoutExtension
println("$index $name")
File(packageFile, "$name.kt")
.writeText(convertSvgToComposeSvg(file.readText(), name))
}
Expand Down
1 change: 1 addition & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ uuid = { module = "app.softwork:kotlinx-uuid-core", version = "0.1.0" }

[plugins]
kotlin-js = { id = "org.jetbrains.kotlin.js", version.ref = "kotlin" }
kotlin-plugin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
kotlin-plugin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }

0 comments on commit fb32c2f

Please sign in to comment.