#37 java: jsoup api

This commit is contained in:
haerong22
2023-05-23 18:06:26 +09:00
parent 8a17a41f5c
commit a99b9caf90
6 changed files with 349 additions and 0 deletions

19
java/api/build.gradle Normal file
View File

@@ -0,0 +1,19 @@
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'
}
test {
useJUnitPlatform()
}