Skip to content

Commit

Permalink
TECH: renamed adb-server modules
Browse files Browse the repository at this point in the history
  • Loading branch information
AzamatCherchesov committed Aug 23, 2023
1 parent 0a242d6 commit 1ef5fc9
Show file tree
Hide file tree
Showing 56 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ publish {

dependencies {
implementation(libs.kotlinStdlib)
implementation(projects.adbServer.adbserverCommon)
implementation(projects.adbServer.adbServerCommon)
}
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ publish {

dependencies {
implementation(libs.kotlinStdlib)
implementation(projects.adbServer.adbserverCommon)
implementation(projects.adbServer.adbServerCommon)
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ publish {

dependencies {
implementation(libs.kotlinStdlib)
implementation(projects.adbServer.adbserverCommon)
implementation(projects.adbServer.adbserverCommandTypes)
implementation(projects.adbServer.adbServerCommon)
implementation(projects.adbServer.adbServerCommandTypes)
}
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ publish {

dependencies {
implementation(libs.kotlinStdlib)
api(projects.adbServer.adbserverCommon)
api(projects.adbServer.adbserverCommandTypes)
api(projects.adbServer.adbserverConnection)
api(projects.adbServer.adbserverDesktopDeviceConnection)
api(projects.adbServer.adbServerCommon)
api(projects.adbServer.adbServerCommandTypes)
api(projects.adbServer.adbServerConnection)
api(projects.adbServer.adbServerDesktopDeviceConnection)
}
8 changes: 4 additions & 4 deletions adb-server/adbserver-desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ plugins {
dependencies {
implementation(libs.kotlinStdlib)
implementation(libs.kotlinCli)
implementation(projects.adbServer.adbserverCommon)
implementation(projects.adbServer.adbserverCommandTypes)
implementation(projects.adbServer.adbserverConnection)
implementation(projects.adbServer.adbserverDesktopDeviceConnection)
implementation(projects.adbServer.adbServerCommon)
implementation(projects.adbServer.adbServerCommandTypes)
implementation(projects.adbServer.adbServerConnection)
implementation(projects.adbServer.adbServerDesktopDeviceConnection)
}

setProperty("mainClassName", "com.kaspersky.adbserver.desktop.MainKt")
Expand Down
2 changes: 1 addition & 1 deletion kaspresso/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies {

implementation(libs.kotlinStdlib)
implementation(libs.gson)
implementation(projects.adbServer.adbserverDevice)
implementation(projects.adbServer.adbServerDevice)
implementation(libs.appcompat)
implementation(libs.material)

Expand Down
2 changes: 1 addition & 1 deletion samples/adbserver-sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ android {
dependencies {
implementation(libs.kotlinStdlib)
implementation(libs.appcompat)
implementation(projects.adbServer.adbserverDevice)
implementation(projects.adbServer.adbServerDevice)
implementation(libs.multidex)
}
10 changes: 5 additions & 5 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ dependencyResolutionManagement {
includeBuild("build-logic")

include(
":adb-server:adbserver-command-types",
":adb-server:adbserver-common",
":adb-server:adbserver-connection",
":adb-server:adb-server-command-types",
":adb-server:adb-server-common",
":adb-server:adb-server-connection",
":adb-server:adbserver-desktop",
":adb-server:adbserver-desktop-device-connection",
":adb-server:adbserver-device",
":adb-server:adb-server-desktop-device-connection",
":adb-server:adb-server-device",

":kaspresso",
":kautomator",
Expand Down

0 comments on commit 1ef5fc9

Please sign in to comment.