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.

33 lines
976 B

3 years ago
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-r2dbc'
  20. implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
  21. implementation 'org.springframework.boot:spring-boot-starter-webflux'
  22. runtimeOnly 'io.r2dbc:r2dbc-postgresql'
  23. // runtimeOnly 'org.postgresql:postgresql'
  24. developmentOnly 'org.springframework.boot:spring-boot-devtools'
  25. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  26. }
  27. test {
  28. useJUnitPlatform()
  29. }