forked from Chat_things/NeuroDock
Added Genius API wrapper
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
This commit is contained in:
24
GeniusAPI/build.gradle
Normal file
24
GeniusAPI/build.gradle
Normal file
@@ -0,0 +1,24 @@
|
||||
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()
|
||||
}
|
||||
Reference in New Issue
Block a user