Skip to content

Commit fb7178e

Browse files
committed
feat: rename root module and repository
1 parent 708690e commit fb7178e

7 files changed

Lines changed: 23 additions & 23 deletions

File tree

.junie/guidelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Development Guidelines for Compose-Tolgee
1+
# Development Guidelines for Tolgee Mobile Kotlin SDK
22

3-
This document provides essential information for developers working on the Compose-Tolgee project.
3+
This document provides essential information for developers working on the Tolgee Mobile Kotlin SDK project.
44

55
## Build/Configuration Instructions
66

compiler-plugin/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dokka {
2020
dokkaSourceSets.configureEach {
2121
sourceLink {
2222
localDirectory.set(file("src"))
23-
remoteUrl("https://github.com/tolgee/compose-tolgee/tree/master/compiler-plugin/src")
23+
remoteUrl("https://github.com/tolgee/tolgee-mobile-kotlin-sdk/tree/master/compiler-plugin/src")
2424
}
2525
}
2626
}
@@ -46,7 +46,7 @@ mavenPublishing {
4646
name.set(libName)
4747

4848
description.set("Compiler plugin for Tolgee translations.")
49-
url.set("https://github.com/tolgee/compose-tolgee")
49+
url.set("https://github.com/tolgee/tolgee-mobile-kotlin-sdk")
5050

5151
licenses {
5252
license {
@@ -56,8 +56,8 @@ mavenPublishing {
5656
}
5757

5858
scm {
59-
url.set("https://github.com/tolgee/compose-tolgee")
60-
connection.set("scm:git:git://github.com/tolgee/compose-tolgee.git")
59+
url.set("https://github.com/tolgee/tolgee-mobile-kotlin-sdk")
60+
connection.set("scm:git:git://github.com/tolgee/tolgee-mobile-kotlin-sdk.git")
6161
}
6262

6363
developers {

compose/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dokka {
2525
dokkaSourceSets.configureEach {
2626
sourceLink {
2727
localDirectory.set(file("src"))
28-
remoteUrl("https://github.com/tolgee/compose-tolgee/tree/master/compose/src")
28+
remoteUrl("https://github.com/tolgee/tolgee-mobile-kotlin-sdk/tree/master/compose/src")
2929
}
3030
}
3131
}
@@ -101,7 +101,7 @@ mavenPublishing {
101101
name.set(libName)
102102

103103
description.set("Compose Multiplatform localization wrapper for Tolgee")
104-
url.set("https://github.com/tolgee/compose-tolgee")
104+
url.set("https://github.com/tolgee/tolgee-mobile-kotlin-sdk")
105105

106106
licenses {
107107
license {
@@ -111,8 +111,8 @@ mavenPublishing {
111111
}
112112

113113
scm {
114-
url.set("https://github.com/tolgee/compose-tolgee")
115-
connection.set("scm:git:git://github.com/tolgee/compose-tolgee.git")
114+
url.set("https://github.com/tolgee/tolgee-mobile-kotlin-sdk")
115+
connection.set("scm:git:git://github.com/tolgee/tolgee-mobile-kotlin-sdk.git")
116116
}
117117

118118
developers {

core/Tolgee.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'Tolgee'
33
spec.version = '1.0.0-alpha01'
4-
spec.homepage = 'https://github.com/tolgee/compose-tolgee'
4+
spec.homepage = 'https://github.com/tolgee/tolgee-mobile-kotlin-sdk'
55
spec.source = { :http=> ''}
66
spec.authors = ''
77
spec.license = 'Apache License 2.0'

core/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dokka {
2727
dokkaSourceSets.configureEach {
2828
sourceLink {
2929
localDirectory.set(file("src"))
30-
remoteUrl("https://github.com/tolgee/compose-tolgee/tree/master/core/src")
30+
remoteUrl("https://github.com/tolgee/tolgee-mobile-kotlin-sdk/tree/master/core/src")
3131
}
3232
}
3333
}
@@ -54,7 +54,7 @@ kotlin {
5454
name = appleFramework
5555
version = libVersion
5656
license = "Apache License 2.0"
57-
homepage = "https://github.com/tolgee/compose-tolgee"
57+
homepage = "https://github.com/tolgee/tolgee-mobile-kotlin-sdk"
5858
summary = "Kotlin Multiplatform localization wrapper for Tolgee"
5959

6060
framework {
@@ -259,7 +259,7 @@ mavenPublishing {
259259
name.set(libName)
260260

261261
description.set("Kotlin Multiplatform localization wrapper for Tolgee")
262-
url.set("https://github.com/tolgee/compose-tolgee")
262+
url.set("https://github.com/tolgee/tolgee-mobile-kotlin-sdk")
263263

264264
licenses {
265265
license {
@@ -269,8 +269,8 @@ mavenPublishing {
269269
}
270270

271271
scm {
272-
url.set("https://github.com/tolgee/compose-tolgee")
273-
connection.set("scm:git:git://github.com/tolgee/compose-tolgee.git")
272+
url.set("https://github.com/tolgee/tolgee-mobile-kotlin-sdk")
273+
connection.set("scm:git:git://github.com/tolgee/tolgee-mobile-kotlin-sdk.git")
274274
}
275275

276276
developers {

gradle-plugin/build.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dokka {
3030
dokkaSourceSets.configureEach {
3131
sourceLink {
3232
localDirectory.set(file("src"))
33-
remoteUrl("https://github.com/tolgee/compose-tolgee/tree/master/gradle-plugin/src")
33+
remoteUrl("https://github.com/tolgee/tolgee-mobile-kotlin-sdk/tree/master/gradle-plugin/src")
3434
}
3535
}
3636
}
@@ -57,8 +57,8 @@ dependencies {
5757

5858
gradlePlugin {
5959
plugins {
60-
website.set("https://github.com/tolgee/compose-tolgee")
61-
vcsUrl.set("https://github.com/tolgee/compose-tolgee")
60+
website.set("https://github.com/tolgee/tolgee-mobile-kotlin-sdk")
61+
vcsUrl.set("https://github.com/tolgee/tolgee-mobile-kotlin-sdk")
6262

6363
create("tolgeePlugin") {
6464
id = libGroup
@@ -83,7 +83,7 @@ mavenPublishing {
8383
name.set(libName)
8484

8585
description.set("Compose Multiplatform localization wrapper for Tolgee")
86-
url.set("https://github.com/tolgee/compose-tolgee")
86+
url.set("https://github.com/tolgee/tolgee-mobile-kotlin-sdk")
8787

8888
licenses {
8989
license {
@@ -93,8 +93,8 @@ mavenPublishing {
9393
}
9494

9595
scm {
96-
url.set("https://github.com/tolgee/compose-tolgee")
97-
connection.set("scm:git:git://github.com/tolgee/compose-tolgee.git")
96+
url.set("https://github.com/tolgee/tolgee-mobile-kotlin-sdk")
97+
connection.set("scm:git:git://github.com/tolgee/tolgee-mobile-kotlin-sdk.git")
9898
}
9999

100100
developers {

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ include(":compiler-plugin")
3232

3333
include(":demo:multiplatform-compose", ":demo:exampleandroid", ":demo:examplejetpack")
3434

35-
rootProject.name = "compose-tolgee"
35+
rootProject.name = "tolgee-mobile-kotlin-sdk"

0 commit comments

Comments
 (0)