mirror of
https://github.com/mvvasilev/personal-finances.git
synced 2025-04-19 14:19:52 +03:00
24 lines
541 B
Groovy
24 lines
541 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
id 'org.springframework.boot' version '3.2.0'
|
||
|
id 'io.spring.dependency-management' version '1.1.4'
|
||
|
}
|
||
|
|
||
|
group = 'dev.mvvasilev'
|
||
|
version = '0.0.1-SNAPSHOT'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||
|
|
||
|
testImplementation platform('org.junit:junit-bom:5.9.1')
|
||
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|