33 lines
783 B
Groovy
33 lines
783 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'org.example'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.jsoup:jsoup:1.16.1'
|
|
|
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
|
|
implementation 'org.apache.poi:poi:5.2.3'
|
|
implementation 'org.apache.poi:poi-ooxml:5.2.3'
|
|
implementation 'org.apache.logging.log4j:log4j-core:2.20.0'
|
|
testImplementation 'org.slf4j:slf4j-simple:2.0.7'
|
|
|
|
implementation 'com.itextpdf:itext7-core:8.0.0'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
|
|
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |