-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
70 lines (62 loc) · 2.07 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
plugins {
id 'java'
id 'application'
id 'org.springframework.boot' version '3.3.5'
id 'io.spring.dependency-management' version '1.1.6'
}
group = 'org.jas'
version = '1.1.0'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
application {
mainClass = 'org.jas.Launcher'
}
ext {
audioTaggerVersion = '2.0.3'
retrofitVersion = '2.11.0'
junitVersion = '5.7.0'
slf4jVersion = '2.0.16'
aspectjVersion = '1.9.22.1'
messengineVersion = '0.1.0'
festSwingVersion = '1.2.1'
javaXmlBindVersion = '2.3.1'
javaAnnotationVersion = '1.3.2'
commonsLangVersion = '3.12.0'
mockitoVersion = '3.12.4'
mockitoAllVersion = '1.10.19'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation "org.aspectj:aspectjtools:$aspectjVersion"
implementation "org:jaudiotagger:$audioTaggerVersion"
implementation "org.asmatron:messengine:$messengineVersion"
implementation "org.apache.commons:commons-lang3:$commonsLangVersion"
implementation "com.squareup.retrofit2:retrofit:$retrofitVersion"
implementation "com.squareup.retrofit2:converter-gson:$retrofitVersion"
implementation "javax.xml.bind:jaxb-api:$javaXmlBindVersion"
implementation "javax.annotation:javax.annotation-api:$javaAnnotationVersion"
implementation "org.easytesting:fest-swing:$festSwingVersion"
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
implementation files('lib/last.fm-bindings-0.1.0.jar')
}
test {
useJUnitPlatform()
}