GetWikiPegeText: - Fetches a Wikipedia wiki page WikipediaTool: - The base for this module, Initialise a Wiki instance and add the Wikipedia API endpoints
23 lines
372 B
Groovy
23 lines
372 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'me.zacharias'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
|
|
implementation("io.github.fastily:jwiki:1.11.0")
|
|
|
|
implementation project(":Core")
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |