IntProgLabs/demo/build.gradle

33 lines
713 B
Groovy
Raw Normal View History

2023-03-16 16:36:43 +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()
}
2023-04-03 13:35:16 +04:00
jar{
enabled = false
}
2023-03-16 16:36:43 +04:00
dependencies {
2023-04-03 13:35:16 +04:00
2023-03-16 16:36:43 +04:00
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'com.h2database:h2:2.1.210'
2023-03-21 00:01:18 +04:00
implementation 'org.springframework.boot:spring-boot-starter-validation'
2023-04-03 13:35:16 +04:00
implementation 'org.springdoc:springdoc-openapi-ui:1.6.5'
2023-03-16 16:36:43 +04:00
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}