/
Letta21
/
CSV_XM_JSON
Обзор
Документация
Войти
/
Letta21
/
CSV_XM_JSON
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
CSV_JSON/build.gradle.kts
26 строк
767 B
Letta21
upload files
15 янв 2026, 01:42
15 янв 2026, 01:42
040301c
Код
Авторство
О чём код?
plugins { id("java") } group = "com.googlecode.json-simple" version = "1.0-SNAPSHOT" repositories { mavenCentral() } dependencies { testImplementation(platform("org.junit:junit-bom:5.10.0")) testImplementation("org.junit.jupiter:junit-jupiter") testRuntimeOnly("org.junit.platform:junit-platform-launcher") implementation(group = "com.opencsv", name = "opencsv", version = "5.1") 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("org.junit.jupiter:junit-jupiter-api:5.8.1") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1") } tasks.test { useJUnitPlatform() }