Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
- Update Gradle to 8.9
- Update Kotlin to 2.0.0
- Update kotlinx-serialization-json to 1.7.1
- Update kotlinpoet to 1.18.1
- Update kord-gradle-plugin to 1.6.2
- Update maven-publish-plugin to 0.29.0
- Add support for HairStyle
  • Loading branch information
DRSchlaubi committed Jul 18, 2024
1 parent 5d28c58 commit 911fd8f
Show file tree
Hide file tree
Showing 12 changed files with 6,607 additions and 5,705 deletions.
14 changes: 10 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
.gradle
.idea
build
out
.fleet/
.gradle/
.idea/*
!.idea/icon.png
.kotlin/

**/build/*
!**/build/generated/
# re-exclude BuildConfigGenerated.kt
common/build/generated/sources/buildConfig/main/dev/kord/common/BuildConfigGenerated.kt
10 changes: 8 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import org.jetbrains.kotlin.gradle.targets.native.tasks.KotlinNativeSimulatorTest
import org.jetbrains.kotlin.konan.target.KonanTarget
import org.jetbrains.kotlin.konan.target.Family

group = Library.group

Expand Down Expand Up @@ -40,6 +40,12 @@ kotlin {
tvosX64()
tvosArm64()
tvosSimulatorArm64()

sourceSets {
commonMain {
kotlin.srcDir(layout.buildDirectory.dir("generated/commonMain/kotlin"))
}
}
}

tasks {
Expand Down Expand Up @@ -91,7 +97,7 @@ mavenPublishing {

kord {
publicationName = "mavenCentral"
metadataHost = KonanTarget.MACOS_X64
metadataHost = Family.OSX
}

dependencies {
Expand Down
Loading

0 comments on commit 911fd8f

Please sign in to comment.