internet-programming/2 семестр/lab2/demo/build.gradle

34 lines
688 B
Groovy
Raw Permalink Normal View History

2024-03-09 16:06:04 +04:00
plugins {
id 'java'
2024-03-27 20:15:17 +04:00
id 'org.springframework.boot' version '3.2.4'
2024-03-09 16:06:04 +04:00
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
2024-03-27 20:15:17 +04:00
implementation 'org.springframework.boot:spring-boot-starter-validation'
2024-03-09 16:06:04 +04:00
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
implementation 'org.modelmapper:modelmapper:3.2.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}
2024-04-25 00:12:08 +04:00
bootRun {
args = ['--populate']
}