/
SofiMut
/
gradleProject
Обзор
Документация
Войти
/
SofiMut
/
gradleProject
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
api/build.gradle
24 строки
371 B
Sofia Stepanova
first_commit~
27 сен 2025, 10:32
27 сен 2025, 10:32
6d9d94e
Код
Авторство
О чём код?
plugins { id 'java' } group = 'ru.netology' version = '1.0-SNAPSHOT' repositories { mavenCentral() } dependencies { testImplementation platform('org.junit:junit-bom:5.10.0') testImplementation 'org.junit.jupiter:junit-jupiter' } dependencies { implementation project(":db") implementation project(":service") } test { useJUnitPlatform() }