From a1adff9ddd8ef9a193f074bd991bba38cf3d36e2 Mon Sep 17 00:00:00 2001 From: ScarletRedMan Date: Mon, 11 Mar 2024 20:44:39 +0700 Subject: [PATCH] Added module 'client-impl' --- client-impl/build.gradle | 23 +++++++++++++++++++++++ settings.gradle | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 client-impl/build.gradle diff --git a/client-impl/build.gradle b/client-impl/build.gradle new file mode 100644 index 0000000..921ceb4 --- /dev/null +++ b/client-impl/build.gradle @@ -0,0 +1,23 @@ +plugins { + id 'java' +} + +group = 'ru.dragonestia' +version = 'unspecified' + +repositories { + mavenCentral() +} + +dependencies { + implementation project(':client-api') + implementation 'org.jetbrains:annotations:24.1.0' + implementation 'com.squareup.okhttp:okhttp:2.7.5' + + testImplementation platform('org.junit:junit-bom:5.9.1') + testImplementation 'org.junit.jupiter:junit-jupiter' +} + +test { + useJUnitPlatform() +} \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index a98138d..79340f0 100644 --- a/settings.gradle +++ b/settings.gradle @@ -2,6 +2,6 @@ rootProject.name = 'RoomPicker' include 'app' include 'control-panel' -include 'api' include 'client-api' +include 'client-impl'