From 645da18ee04bde9be4b9a4e7b33b702047eef775 Mon Sep 17 00:00:00 2001 From: vladimir-shperling Date: Fri, 17 May 2024 03:17:19 +0700 Subject: [PATCH] update submodule location --- .gitmodules | 2 +- app/build.gradle.kts | 2 +- settings.gradle.kts | 2 +- test-lib => testLib | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename test-lib => testLib (100%) diff --git a/.gitmodules b/.gitmodules index 397be31..e271acd 100644 --- a/.gitmodules +++ b/.gitmodules @@ -5,5 +5,5 @@ path = buildSrc url = https://git.sicampus.ru/core/dependecies.git [submodule "test-lib"] - path = test-lib + path = testLib url = https://git.sicampus.ru/core/test-lib diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 392c880..bb05abe 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -28,5 +28,5 @@ android { dependencies { defaultLibrary() - androidTestImplementation(project(path = ":test-lib")) + androidTestImplementation(project(path = ":testLib")) } diff --git a/settings.gradle.kts b/settings.gradle.kts index cd4e634..07b551c 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -15,4 +15,4 @@ dependencyResolutionManagement { rootProject.name = "Work" include(":app") -include(":test-lib") +include(":testLib") diff --git a/test-lib b/testLib similarity index 100% rename from test-lib rename to testLib