finish 3rd practical
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
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()
|
||||
}
|
||||
Reference in New Issue
Block a user