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'