WebProg/build.gradle

23 lines
441 B
Groovy
Raw Normal View History

2023-02-07 09:05:42 +04:00
plugins {
id 'java'
2023-02-07 11:43:09 +04:00
id 'org.springframework.boot' version '2.7.8'
2023-02-07 09:05:42 +04:00
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.webproglabs'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}