35 lines
663 B
Kotlin
35 lines
663 B
Kotlin
plugins {
|
|
`java-library`
|
|
alias(libs.plugins.spring.boot)
|
|
}
|
|
|
|
group = "ua.com.dxrkness"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
// spring
|
|
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
|
|
implementation(libs.spring.boot.starter.web)
|
|
|
|
// http client
|
|
implementation(libs.apache.http.client)
|
|
|
|
// xml
|
|
implementation(libs.jackson.dataformat.xml)
|
|
|
|
implementation(libs.jspecify)
|
|
|
|
implementation(project(":models"))
|
|
|
|
api(libs.json.schema.validator);
|
|
|
|
implementation("org.jruby.joni:joni:2.2.6")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |