Skip to content

Commit 7eee1b7

Browse files
committed
chore: update URLs for repository
1 parent 1f4e287 commit 7eee1b7

2 files changed

Lines changed: 12 additions & 9 deletions

File tree

protocol/build.gradle.kts

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,12 @@ abstract class KaitaiTask : JavaExec() {
4444
File(outputDirPath.get()).mkdirs()
4545
args = listOf(
4646
"--read-write",
47-
"--target", "java",
48-
"--outdir", outputDirPath.get(),
49-
"--java-package", javaPackage.get()
47+
"--target",
48+
"java",
49+
"--outdir",
50+
outputDirPath.get(),
51+
"--java-package",
52+
javaPackage.get(),
5053
) + ksyFiles.files.map { it.absolutePath }
5154
super.exec()
5255
}
@@ -83,7 +86,7 @@ java {
8386
}
8487
}
8588

86-
val gitHubUrl = "https://github.com/kruton/ssh-proto"
89+
val gitHubUrl = "https://github.com/connectbot/cbssh"
8790

8891
dokka {
8992
moduleName.set("ConnectBot SSH Protocol Messages")
@@ -125,8 +128,8 @@ mavenPublishing {
125128

126129
pom {
127130
name.set("protocol")
128-
description.set("ConnectBot's SSH protocol messages in Kaitai Struct.")
129-
inceptionYear.set("2025")
131+
description.set("Protocol messages for ConnectBot SSH client library")
132+
inceptionYear.set("2019")
130133
url.set(gitHubUrl)
131134
licenses {
132135
license {

sshlib/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ kotlin {
8181
}
8282
}
8383

84-
val gitHubUrl = "https://github.com/kruton/ssh-proto"
84+
val gitHubUrl = "https://github.com/connectbot/cbssh"
8585

8686
dokka {
8787
moduleName.set("ConnectBot SSH Library")
@@ -123,8 +123,8 @@ mavenPublishing {
123123

124124
pom {
125125
name.set("sshlib")
126-
description.set("ConnectBot's SSH library written with Kotlin suspend functions.")
127-
inceptionYear.set("2025")
126+
description.set("ConnectBot SSH Client Library")
127+
inceptionYear.set("2019")
128128
url.set(gitHubUrl)
129129
licenses {
130130
license {

0 commit comments

Comments
 (0)