mirror of
https://github.com/mvvasilev/personal-finances.git
synced 2025-04-19 14:19:52 +03:00
42 lines
No EOL
1.3 KiB
Groovy
42 lines
No EOL
1.3 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '3.2.0'
|
|
id 'io.spring.dependency-management' version '1.1.3'
|
|
}
|
|
|
|
group = 'dev.mvvasilev.statements'
|
|
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'
|
|
|
|
implementation 'org.springframework.kafka:spring-kafka'
|
|
|
|
implementation 'org.flywaydb:flyway-core'
|
|
implementation 'org.springdoc:springdoc-openapi-starter-common:2.3.0'
|
|
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
|
|
implementation 'org.apache.poi:poi:5.2.5'
|
|
implementation 'org.apache.poi:poi-ooxml:5.2.5'
|
|
|
|
implementation project(":pefi-common")
|
|
|
|
testImplementation 'org.springframework.kafka:spring-kafka-test'
|
|
|
|
runtimeOnly 'org.postgresql:postgresql'
|
|
|
|
testImplementation platform('org.junit:junit-bom:5.9.1')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
testImplementation 'org.mockito:mockito-core:5.7.0'
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |