15 lines
250 B
Groovy
15 lines
250 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group 'dev.ubujira'
|
||
|
version '1.0-SNAPSHOT'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'se.michaelthelin.spotify:spotify-web-api-java:7.0.1'
|
||
|
implementation 'com.google.code.gson:gson:2.9.0'
|
||
|
}
|