|
|
- plugins {
- id 'java'
- id 'org.springframework.boot' version '2.7.5'
- id 'io.spring.dependency-management' version '1.0.15.RELEASE'
- }
-
- group = 'com.cristobalbernal'
- version = '0.0.1-SNAPSHOT'
- sourceCompatibility = '17'
-
- repositories {
- mavenCentral()
- }
-
- dependencies {
- implementation 'org.springframework.boot:spring-boot-starter'
- testImplementation 'org.springframework.boot:spring-boot-starter-test'
- implementation group: 'org.springframework', name: 'spring-context', version: '5.3.24'
- }
-
- tasks.named('test') {
- useJUnitPlatform()
- }
|