Files
IMDB-SCRAPER/Last-Year/Fourth-Assignment-Steam-Scraper-main/build.gradle
T
2026-05-07 20:34:29 +03:30

20 lines
335 B
Groovy

plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation 'org.jsoup:jsoup:1.14.3'
}
test {
useJUnitPlatform()
}