for fetching song lyrics from Genius Database # Disclaimer. This commit contains parts that are for educational purposes only! FindSong: - Uses Genius API to find the song queried GetLyrics: # Educational purposes only - Scrapes Genius lyrics page for the Lyrics
24 lines
424 B
Groovy
24 lines
424 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 "org.jsoup:jsoup:1.20.1"
|
|
implementation 'io.github.classgraph:classgraph:4.8.158'
|
|
|
|
implementation project(":Core")
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |