/
sergey.bayramov
/
IT_ONE_Course_Java_Core
Обзор
Документация
Войти
/
sergey.bayramov
/
IT_ONE_Course_Java_Core
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
build.gradle
28 строк
710 B
Байрамов Сергей
master: рефакторинг
12 май 2025, 22:23
12 май 2025, 22:23
aa8e75a
Код
Авторство
О чём код?
plugins { id 'java' id("io.freefair.lombok") version "8.13.1" id("io.spring.dependency-management") version "1.1.7" id("org.flywaydb.flyway") version "11.8.1" } group = 'ru.itone' version = '1.0-SNAPSHOT' repositories { mavenCentral() } dependencies { implementation 'org.postgresql:postgresql:42.7.5' implementation 'org.flywaydb:flyway-core:11.8.1' testImplementation platform('org.junit:junit-bom:5.10.0') testImplementation 'org.junit.jupiter:junit-jupiter' testImplementation 'org.assertj:assertj-core:3.6.1' testImplementation 'org.mockito:mockito-core:2.1.0' testImplementation 'org.testcontainers:postgresql:1.20.0' } test { useJUnitPlatform() }