Skip to content

Commit

Permalink
dependency updates (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
morisil authored Jan 10, 2025
1 parent 1d3e812 commit 981f81b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
13 changes: 7 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -285,11 +285,12 @@ val dokkaJavadocJar by tasks.registering(Jar::class) {
archiveClassifier.set("javadoc")
}

val dokkaHtmlJar by tasks.registering(Jar::class) {
description = "A HTML Documentation JAR containing Dokka HTML"
from(tasks.dokkaGeneratePublicationHtml.flatMap { it.outputDirectory })
archiveClassifier.set("html-doc")
}
// HTML jar commented out, as it might be preventing release from landing in Maven Central
//val dokkaHtmlJar by tasks.registering(Jar::class) {
// description = "A HTML Documentation JAR containing Dokka HTML"
// from(tasks.dokkaGeneratePublicationHtml.flatMap { it.outputDirectory })
// archiveClassifier.set("html-doc")
//}

publishing {
repositories {
Expand All @@ -307,7 +308,7 @@ publishing {
publications {
withType<MavenPublication> {
artifact(dokkaJavadocJar)
artifact(dokkaHtmlJar)
//artifact(dokkaHtmlJar)
pom {
name = "anthropic-sdk-kotlin"
description = "Kotlin multiplatform client for accessing Ahtropic APIs"
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ javaTarget = "17"
kotlin = "2.1.0"
kotlinxCoroutines = "1.10.1"
kotlinxDatetime = "0.6.1"
kotlinxAtomicFu = "0.26.1"
kotlinxAtomicFu = "0.27.0"
ktor = "3.0.3"
kotest = "6.0.0.M1"

xemanticKotlinTest = "1.2"
xemanticKotlinTest = "1.3"
xemanticAiToolSchema = "0.1.4"
xemanticAiMoney = "0.2"
xemanticAiFileMagic = "0.2"
xemanticAiFileMagic = "0.3"

# logging is not used at the moment, might be enabled later
log4j = "2.24.3"
Expand Down

0 comments on commit 981f81b

Please sign in to comment.