RoomPicker/api/build.gradle
Andrey Terentev 7566f24d36
Refactor controllers and exception handling (#8)
* Refactored exceptions and responses

* Extracted exceptions to external api library

* Refactored exceptions and extracted models to external library

* Fixed test after refactor

* Extracted validator to api library

* Implemented session error handler

* Upgraded notifications

* Implemented global exception handler for control panel
2024-01-16 16:29:44 +07:00

16 lines
231 B
Groovy

plugins {
id 'java'
}
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}