Skip to content

Commit

Permalink
fix docs pointing to new branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusMcCloud committed Oct 16, 2024
1 parent 9a16c7f commit 78acabc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions kmmresult-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dokka {
println(path)
localDirectory.set(file(path))
remoteUrl.set(
URI("https://github.com/a-sit-plus/kmmresult/tree/main/src/$name/kotlin")
URI("https://github.com/a-sit-plus/KmmResult/tree/main/kmmresult-test/src/$name/kotlin")
)
// Suffix which is used to append the line number to the URL. Use #L for GitHub
remoteLineSuffix.set("#L")
Expand Down Expand Up @@ -130,7 +130,7 @@ dependencies {
pom {
name.set("KmmResult Test")
description.set("Kotest helperrs for KmmResult")
url.set("https://github.com/a-sit-plus/kmmresult")
url.set("https://github.com/a-sit-plus/KmmResult")
licenses {
license {
name.set("The Apache License, Version 2.0")
Expand All @@ -150,9 +150,9 @@ dependencies {
}
}
scm {
connection.set("scm:git:[email protected]:a-sit-plus/kmmresult.git")
developerConnection.set("scm:git:[email protected]:a-sit-plus/kmmresult.git")
url.set("https://github.com/a-sit-plus/kmmresult")
connection.set("scm:git:[email protected]:a-sit-plus/KmmResult.git")
developerConnection.set("scm:git:[email protected]:a-sit-plus/KmmResult.git")
url.set("https://github.com/a-sit-plus/KmmResult")
}
}
}
Expand Down
10 changes: 5 additions & 5 deletions kmmresult/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dokka {
println(path)
localDirectory.set(file(path))
remoteUrl.set(
URI("https://github.com/a-sit-plus/kmmresult/tree/main/src/$name/kotlin")
URI("https://github.com/a-sit-plus/KmmResult/tree/main/kmmresult/src/$name/kotlin")
)
// Suffix which is used to append the line number to the URL. Use #L for GitHub
remoteLineSuffix.set("#L")
Expand Down Expand Up @@ -142,7 +142,7 @@ kotlin {
pom {
name.set("KmmResult")
description.set("Functional equivalent of kotlin.Result but with KMM goodness")
url.set("https://github.com/a-sit-plus/kmmresult")
url.set("https://github.com/a-sit-plus/KmmResult")
licenses {
license {
name.set("The Apache License, Version 2.0")
Expand All @@ -162,9 +162,9 @@ kotlin {
}
}
scm {
connection.set("scm:git:[email protected]:a-sit-plus/kmmresult.git")
developerConnection.set("scm:git:[email protected]:a-sit-plus/kmmresult.git")
url.set("https://github.com/a-sit-plus/kmmresult")
connection.set("scm:git:[email protected]:a-sit-plus/KmmResult.git")
developerConnection.set("scm:git:[email protected]:a-sit-plus/KmmResult.git")
url.set("https://github.com/a-sit-plus/KmmResult")
}
}
}
Expand Down

0 comments on commit 78acabc

Please sign in to comment.