/
itokar98
/
HomeWorkCoreSpecialFilesTask2
Обзор
Документация
Войти
/
itokar98
/
HomeWorkCoreSpecialFilesTask2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
build.gradle
22 строки
456 B
Ilya Tokar
First commit
20 окт 2025, 23:29
20 окт 2025, 23:29
1ccf8e8
Код
Авторство
О чём код?
plugins { id 'java' } group = 'org.example' version = '1.0-SNAPSHOT' repositories { mavenCentral() } dependencies { implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1' implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.2' testImplementation platform('org.junit:junit-bom:5.10.0') testImplementation 'org.junit.jupiter:junit-jupiter' } test { useJUnitPlatform() }