mirror of
https://github.com/mvvasilev/personal-finances.git
synced 2025-04-18 21:59:52 +03:00
23 lines
No EOL
479 B
Groovy
23 lines
No EOL
479 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'dev.mvvasilev'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'jakarta.persistence:jakarta.persistence-api:3.1.0'
|
|
implementation 'org.springframework:spring-web:6.1.1'
|
|
implementation 'org.springframework.data:spring-data-jpa:3.2.0'
|
|
|
|
testImplementation platform('org.junit:junit-bom:5.9.1')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |