IP_PIbd-21_Ihonkina_E.S./build.gradle

24 lines
510 B
Groovy
Raw Normal View History

2023-02-07 12:10:49 +04:00
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.2'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
2023-02-16 20:41:19 +04:00
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
2023-02-07 12:10:49 +04:00
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}