/
futureability
/
BonusService
Обзор
Документация
Войти
/
futureability
/
BonusService
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
build.gradle
57 строк
2 KB
fee-lee
addREST
04 фев 2026, 07:11
04 фев 2026, 07:11
249b1bb
Код
Авторство
О чём код?
plugins { id 'java' id 'org.springframework.boot' version '3.5.6' id 'io.spring.dependency-management' version '1.1.7' id 'org.flywaydb.flyway' version '10.22.0' } group = 'ru.futureability' version = '1.0-SNAPSHOT' java { toolchain { languageVersion = JavaLanguageVersion.of(17) } } configurations { compileOnly { extendsFrom annotationProcessor } } repositories { mavenCentral() } dependencies { // Spring implementation 'org.springframework.boot:spring-boot-starter-web' annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' developmentOnly 'org.springframework.boot:spring-boot-devtools' implementation 'org.springframework.boot:spring-boot-starter-security' // JWT implementation 'io.jsonwebtoken:jjwt-api:0.11.5' runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5' runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5' // Swagger implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0' // Validation implementation 'org.springframework.boot:spring-boot-starter-validation' // Lombok annotationProcessor 'org.projectlombok:lombok' implementation 'org.projectlombok:lombok' compileOnly 'org.projectlombok:lombok' // БД implementation 'org.postgresql:postgresql' runtimeOnly 'org.postgresql:postgresql' implementation 'org.springframework.boot:spring-boot-starter-jdbc' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.flywaydb:flyway-core:10.22.0' runtimeOnly 'org.flywaydb:flyway-database-postgresql:10.22.0' }