IP_PIbd-21_Balberova_D.N./build.gradle

36 lines
899 B
Groovy
Raw Normal View History

2023-02-13 14:50:10 +04:00
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.2'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.labwork1'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
2023-03-27 03:45:44 +04:00
jar {
enabled = false
}
2023-02-13 14:50:10 +04:00
dependencies {
2023-04-09 15:22:02 +04:00
implementation(project(':front'))
2023-02-13 14:50:10 +04:00
implementation 'org.springframework.boot:spring-boot-starter-web'
2023-03-13 18:15:50 +04:00
implementation 'com.h2database:h2:2.1.210'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation group: 'org.springdoc', name: 'springdoc-openapi-ui', version: '1.6.5'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
2023-02-13 14:50:10 +04:00
testImplementation 'org.springframework.boot:spring-boot-starter-test'
2023-03-27 03:45:44 +04:00
implementation 'org.hibernate.validator:hibernate-validator'
implementation 'org.springdoc:springdoc-openapi-ui:1.6.5'
2023-02-13 14:50:10 +04:00
}
tasks.named('test') {
useJUnitPlatform()
}