2023-02-20 20:18:51 +04:00
|
|
|
plugins {
|
|
|
|
id 'org.springframework.boot' version '2.6.3'
|
|
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'ru.ulstu.is'
|
|
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
sourceCompatibility = '17'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
2023-03-21 02:18:28 +04:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
|
|
implementation 'com.h2database:h2:2.1.214'
|
|
|
|
implementation 'junit:junit:4.13.2'
|
2023-03-07 00:41:40 +04:00
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
2023-02-20 20:18:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named('test') {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|