You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
562 B

1 year ago
  1. plugins {
  2. id 'java'
  3. id 'org.springframework.boot' version '2.7.5'
  4. id 'io.spring.dependency-management' version '1.0.15.RELEASE'
  5. }
  6. group = 'com.cristobalbernal'
  7. version = '0.0.1-SNAPSHOT'
  8. sourceCompatibility = '17'
  9. repositories {
  10. mavenCentral()
  11. }
  12. dependencies {
  13. implementation 'org.springframework.boot:spring-boot-starter'
  14. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  15. implementation group: 'org.springframework', name: 'spring-context', version: '5.3.24'
  16. }
  17. tasks.named('test') {
  18. useJUnitPlatform()
  19. }