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.

32 lines
926 B

3 years ago
3 years ago
3 years ago
  1. plugins {
  2. id 'org.springframework.boot' version '2.4.2'
  3. id 'io.spring.dependency-management' version '1.0.11.RELEASE'
  4. id 'java'
  5. id "io.freefair.lombok" version "5.3.0"
  6. }
  7. group = 'ru.digitalbanana'
  8. version = '0.0.1-SNAPSHOT'
  9. // java {
  10. // sourceCompatibility = JavaVersion.VERSION_14
  11. // targetCompatibility = JavaVersion.VERSION_14
  12. // }
  13. repositories {
  14. mavenCentral()
  15. maven { url 'https://repo.spring.io/milestone' }
  16. maven { url 'https://repo.spring.io/snapshot' }
  17. }
  18. dependencies {
  19. implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
  20. implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
  21. implementation 'org.springframework.boot:spring-boot-starter-web'
  22. runtimeOnly 'org.postgresql:postgresql'
  23. developmentOnly 'org.springframework.boot:spring-boot-devtools'
  24. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  25. }
  26. test {
  27. useJUnitPlatform()
  28. }