IP__PIbd-23_Prytkina_A.V./build.gradle

26 lines
564 B
Groovy
Raw Permalink Normal View History

2023-02-14 12:06:07 +04:00
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.2'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.lab'
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'
2023-05-16 09:00:53 +04:00
testImplementation 'junit:junit:4.13.1'
testImplementation 'junit:junit:4.13.1'
testImplementation 'org.testng:testng:7.1.0'
2023-02-14 12:06:07 +04:00
}
tasks.named('test') {
useJUnitPlatform()
}