-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
52 lines (43 loc) · 1.25 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
buildscript {
ext {
// Spring has to stay at 2.x.x for now, as 3.x.x requires Java 17
springVersion = '2.7.18'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:$springVersion")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
jar {
archiveBaseName.set('SpotifyBigPicture')
archiveFileName = "${archiveBaseName}"
}
springBoot {
mainClass.set('spotify.SpotifyBigPicture')
}
sourceCompatibility = 1.11
repositories {
mavenCentral()
maven {
url 'https://jitpack.io'
}
maven {
url 'https://mymavenrepo.com/repo/FpgB1Mi6I9ud1Gd3tX0r/'
}
}
dependencies {
implementation 'spotify:spotify-dependencies:1.11.2'
implementation 'de.selbi:color-fetch:1.3.0'
implementation "org.springframework.boot:spring-boot-starter-web:$springVersion"
implementation 'se.michaelthelin.spotify:spotify-web-api-java:9.0.0-RC1'
implementation 'org.jsoup:jsoup:1.17.2'
testImplementation 'junit:junit:4.13.2'
testImplementation "org.springframework.boot:spring-boot-starter-test:$springVersion"
}