Added module 'client-impl'

This commit is contained in:
Andrey Terentev 2024-03-11 20:44:39 +07:00 committed by Andrey Terentev
parent 0381fac93c
commit a1adff9ddd
2 changed files with 24 additions and 1 deletions

23
client-impl/build.gradle Normal file
View File

@ -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()
}

View File

@ -2,6 +2,6 @@ rootProject.name = 'RoomPicker'
include 'app'
include 'control-panel'
include 'api'
include 'client-api'
include 'client-impl'