2024-02-04 21:59:09 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'org.springframework.boot' version '3.2.0'
|
|
|
|
id 'io.spring.dependency-management' version '1.1.3'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'dev.mvvasilev.widgets'
|
|
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
|
|
|
2024-02-07 14:10:53 +02:00
|
|
|
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
|
|
|
|
|
2024-02-04 21:59:09 +02:00
|
|
|
implementation 'org.flywaydb:flyway-core'
|
|
|
|
implementation 'org.apache.commons:commons-lang3:3.14.0'
|
|
|
|
|
|
|
|
implementation project(":pefi-common")
|
|
|
|
|
|
|
|
runtimeOnly 'org.postgresql:postgresql'
|
|
|
|
|
|
|
|
testImplementation platform('org.junit:junit-bom:5.9.1')
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|